Using custom compiled kernel from Ubuntu

I know I could always use my config file and recompile just for Arch, but I'm wondering what the downsides might be to using my bzImage file and doing a mkinitcpio to make the initrd file? They're both 64bit, all set up to use ext4 and ntfs. I am using kernel 3.2 sources with ubuntu's patches which add their debian/debian.master stuff, but I strip out everything I don't need for my system, set to core2 for cpu, turn off unneeded debugging options, and most importantly put in a DSDT.hex file I have from when I had to patch the DSDTAll of the drivers that my system uses are compiled in. I use Ubuntu 75% of the time, Arch 20% and Windows 7 5%. (I do use a seperate Arch in VirtualBox daily when in Ubuntu so please don't be mad at me for not being a full time Arch user yet!) . Figured I'd ask and see how friendly these forums are. I might just try later to see but I don't want to be in the middle of something important a week from now and then it's like oh f*ck.

Actually that part I did know, because I rarely use bluetooth so those drivers are modules and not compiled in. I may just wind up recompiling whenever. I'm currently chrooted into arch still working on something else.
EDIT: It works, but it makes my arch boot time worse and it freaked out at first 'cuz I sometimes use virtualbox to boot the install on the HD install itself with a raw vmdk pointing that partition which uses a virtualbox video driver instead of nvidia's binary . I'll just have to compile my own kernel on the arch side.
Last edited by xyzzyman (2011-12-12 05:01:02)

Similar Messages

  • Update modules with compiling kernel from soure issue.

    Compiling kernel from abs or aur take me much time, so i decide compile kernel from source, compilation and installation successfully but make initial RAM disk doesn't update full modules (crypto,lvm...). I specified -c option to /etc/mkinitcpio.conf but the result is the sam, non-autodectec doesn't help too. When i look into /lib/modules directory, 3.6.6-1-ARCH folder contain "kernel" folder which has a lot of things (arch, crypto, net..) and i think this is my extra modules were declared in HOOK array's mkinitcpio.conf. The another one only contain net folder so i can't boot into this kernel without having loaded others.
    any suggestion for this problem? tks for reply.

    am sorry, i re-tried with HOOK array without autodectect and it can load modules but there are two error:
    ==> ERROR: module not found: `dm-crypt`
    ==> ERROR: modules not found: `dm-snapshot`
    ok i will try to load these modules by manually.
    EDIT: i tried to load dm-mod, dm-crypt, dm-snapshot but it isn't helpful. Errors still remain. any suggestion?
    Last edited by angelfalls (2012-11-12 23:33:53)

  • A PKGBUILD that helps you compile kernel from local source tree

    I don't know if someone did this beofore. Hours ago I wrote a PKGBUILD file for compiling kernel,
    it is different than the one from abs. It allows you
    compile a kernel from a exiting kernel source tree and leave it clean.
    honor the Archway, this means you have a clean filesystem
    It is acutally because I'm currently playing with The Eudyptula Challenge.
    and I'm tied our compress/decompress a kernel tree all the time. If you are kernel developer, you
    may also find it useful.
    The PKGBUILD file worked on my machine, I will add headers and docs later.
    Oh, almost forgot: here is my PKGBUILD:
    #So we will have a clean src tree
    pkgbase=linux-test
    _kernel_bin=kernel_build
    #the variable you have to provide
    _builddir=kernel_build
    kernel_src_dir='/home/developer/Courses/kernel-base'
    _srcname=kernel_tree
    #end the variable you have to provide
    pkgver=3.8.1
    pkgrel=1
    pkgdesc="The Linux kernel and modules"
    depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7')
    makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc')
    optdepends=('crda: to set the correct wireless channels of your country')
    provides=("kernel26${_kernelname}=${pkgver}")
    conflicts=("kernel26${_kernelname}")
    replaces=("kernel26${_kernelname}")
    arch=('i686' 'x86_64')
    url="http://www.kernel.org/"
    license=('GPL2')
    source=(#if we provide this, means kernel compile progress is already done
    "${_kernel_bin}.tar.xz"
    'linux.preset'
    sha256sums=('65847bc847344434657db729d2dde4a408e303ea29ae1409520cecee8da6fc3d'
    '2c2e8428e2281babcaf542e246c2b63dea599abb7ae086fa482081580f108a98')
    #this one strip the linux off
    _kernelname=${pkgbase#linux}
    prepare() {
    #XXX:checked
    #build dir has to be the same as kernel_bin files, then builddir is created
    #automatically by tar
    if [ "${kernel_src_dir}" == "" ];then
    return 1
    fi
    #provide kernel source tree for compile and move modules
    ln -s ${kernel_src_dir} ${srcdir}/${_srcname}
    mkdir -p "${srcdir}/${_srcname}"
    #we need to check here if there exist kernel bin files
    if [ "${_kernel_bin}" == "" ]; then
    make O="${srcdir}/${_builddir}" menuconfig
    fi
    build() {
    #XXX:checked
    cd "${srcdir}/${_srcname}"
    #we need to check here if there exist kernel bin files
    if [ "${_kernel_bin}" == "" ]; then
    #return 1
    make O="${srcdir}/${_builddir}" bzImage modules
    fi
    #otherwise this step is done already done
    _package() {
    #we dont need to worry about mkinitcpio, depmod thing, They are done by
    #install script, we need to provide a preset and install file instead.
    #we build kernel objs on _builddir, and install them in pkgdir
    #install binary files, this means we have a compiled binary tree
    cd "${srcdir}/${_srcname}"
    #echo "$(pwd)"
    KARCH=x86
    install=linux.install
    # get kernel version
    _kernver="$(make O="${srcdir}/${_builddir}" kernelrelease)"
    _kernver=$(echo "${_kernver}" | sed -n 2p -)
    #strip the -dirty away
    _kernver=${_kernver%-*}
    _basekernel=${_kernver%%-*}
    _basekernel=${_basekernel%.*}
    mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot}
    make O="${srcdir}/${_builddir}" INSTALL_MOD_PATH="${pkgdir}" modules_install
    cp "${srcdir}/${_builddir}"/arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgbase}"
    # set correct depmod command for install
    cp -f "${startdir}/${install}" "${startdir}/${install}.pkg"
    true && install=${install}.pkg
    sed -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/" -i "${startdir}/${install}"
    sed "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/" -i "${startdir}/${install}"
    # install mkinitcpio preset file for kernel
    install -D -m644 "${srcdir}/linux.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
    sed \
    -e "1s|'linux.*'|'${pkgbase}'|" \
    -e "s|ALL_kver=.*|ALL_kver=\"/boot/vmlinuz-${pkgbase}\"|" \
    -e "s|default_image=.*|default_image=\"/boot/initramfs-${pkgbase}.img\"|" \
    -i "${pkgdir}/etc/mkinitcpio.d/${pkgbase}.preset"
    # remove build and source links
    rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build}
    # remove the firmware
    rm -rf "${pkgdir}/lib/firmware"
    # gzip -9 all modules to save 100MB of space
    find "${pkgdir}" -name '*.ko' -exec gzip -9 {} \;
    # make room for external modules
    ln -s "../extramodules-${_basekernel}${_kernelname:--ARCH}" "${pkgdir}/lib/modules/${_kernver}/extramodules"
    # add real version for building modules and running depmod from post_install/upgrade
    mkdir -p "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}"
    echo "${_kernver}" > "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--ARCH}/version"
    # Now we call depmod...
    #echo "Call Depmod"
    cp "${srcdir}/${_builddir}/System.map" System.map
    depmod -b "${pkgdir}" -F System.map "${_kernver}"
    #echo "Called Depmod"
    # move module tree /lib -> /usr/lib
    mkdir -p "${pkgdir}/usr"
    mv "${pkgdir}/lib" "${pkgdir}/usr/"
    # add vmlinux
    install -D -m644 "${srcdir}/${_builddir}/"vmlinux "${pkgdir}/usr/lib/modules/${_kernver}/build/vmlinux"
    pkgname=("${pkgbase}")
    for _p in ${pkgname[@]}; do
    eval "package_${_p}() {
    _package${_p#${pkgbase}}
    done
    and here is the address of it on github
    Last edited by xedchou (2014-12-23 12:41:55)

    Based on the title alone I almost reflexively binned this thread.  Please rename this thread to *something* relating to what you're actually posting.

  • [Solved]Error compiling kernel from abs

    Hello Everyone,
    I've hit a wall trying to compile the kernel from the abs. I get this error message:
    patching file fs/fat/inode.c
    Hunk #1 succeeded at 800 (offset 74 lines).
    HOSTCC scripts/basic/fixdep
    /bin/sh: scripts/basic/fixdep: cannot execute binary file
    make[2]: *** [scripts/basic/fixdep] Error 126
    make[1]: *** [scripts_basic] Error 2
    SYSHDR arch/x86/syscalls/../include/generated/asm/unistd_32.h
    SYSHDR arch/x86/syscalls/../include/generated/asm/unistd_64.h
    make: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.
    make: *** Waiting for unfinished jobs....
    HOSTCC scripts/basic/fixdep
    SYSHDR arch/x86/syscalls/../include/generated/asm/unistd_x32.h
    SYSTBL arch/x86/syscalls/../include/generated/asm/syscalls_32.h
    /bin/sh: scripts/basic/fixdep: cannot execute binary file
    make[1]: *** [scripts/basic/fixdep] Error 126
    make: *** [scripts_basic] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    While trying to figure this out I came across this post: https://bbs.archlinux.org/viewtopic.php?id=99089 and have tried the solutions presented. I did end up having to change my fstab to include defaults,
    /dev/sda3 /home ext4 defaults,exec,rw,relatime,data=ordered 0 2
    and the permissions on scripts/basic/fixdep are: -rwxr-xr-x which i think it correct.
    Unfortunately, the problem still exists and I don't know how to continue trouble shooting. Can someone point me in a direction to troubleshoot this?
    Last edited by magyarm (2012-12-20 01:55:00)

    magyarm wrote:So now, I need to figure out a good way to handle multiple compilers on my system to prevent this from happening again. If anyone has any tips I would love to hear them.
    Set up a file that you source from bash to prepend the cross compiler to your path, that would only be active for that shell, and when you're done just close it. Means you only activate the cross compiler when you need it.

  • [solved]Compile kernel from aur consumes time than from source?

    With my box from source take 1-1,5 minutes and from aur take ~1h, anyone can explain this situation? thanks.
    Last edited by angelfalls (2012-11-12 02:59:25)

    tks falconindy, i will look into it later.

  • CHARM:Urgnt Corr. type of doc isnt created using Custom "Authorize" Action

    Hi Experts,
    I have copied SDCR Action profile to YDCR and defined all scheduled conditions as default. I have assigned YDCR action profile to my Txn Type YDCR. However, when I am trying to create Urngt type of correction using custom "Authorize" action from the action button, system is changing the status to "Authorized" However, the followup document of urgnt correction is not being corrected though I have selected the "Urgnt Correction (Maintenance)" from the Subject line.
    I have properly copied all the copy rules and working fine if I use SDCR action profile instead of YDCR.
    May any one please help me diagnose and solve this problem?
    Regards,
    Faisal

    Hi All,
    I want to share the latest on this.
    I had basically created new schedule conditions by copying the original ones. Below are mentioned schedule conditions I copied from original:
    Original schedule condition name : Only Status 'To be approved' (Assigned to Authorize and Reject Change Request)
    Custom schedule condition name: YOnly Status 'To be approved'
    The above YOnly Status 'To be approved'  was assigned to "Authorize Change Request" and "Reject Change Request" actions in my YDCR Action Profile.
    But When I changed it to Only Status 'To be approved' and created the urgnt correction, this type is created.
    Can any one tell me what could have happened?
    Regards

  • How to upgrade a custom built kernel to the main arch linux package?

    How do you upgrade from a custom built kernel from the abs to the current release kernel from a package ? I have tried to do pacman -S linux linux-headers linux-firmware but still keep getting the old kernel i built my self.
    [root@HLA boot]# pacman -S linux linux-firmware linux-api-headers linux-headers
    warning: linux-3.14.6-1 is up to date -- reinstalling
    warning: linux-firmware-20140316.dec41bc-1 is up to date -- reinstalling
    warning: linux-api-headers-3.14.1-1 is up to date -- reinstalling
    warning: linux-headers-3.14.6-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (4): linux-3.14.6-1  linux-api-headers-3.14.1-1
                  linux-firmware-20140316.dec41bc-1  linux-headers-3.14.6-1

    It says it is reinstalling them. Doesn't it say it ? or am I missing something ? (no I'm not trying to sound sarcastic, honestly)
    warning: linux-3.14.6-1 is up to date -- reinstalling
    warning: linux-firmware-20140316.dec41bc-1 is up to date -- reinstalling
    warning: linux-api-headers-3.14.1-1 is up to date -- reinstalling
    warning: linux-headers-3.14.6-1 is up to date -- reinstalling
    Total Installed Size:   167.78 MiB
    Net Upgrade Size:       0.00 MiB
    [root@HLA boot]# pacman -S linux linux-firmware linux-api-headers linux-headers
    warning: linux-3.14.6-1 is up to date -- reinstalling
    warning: linux-firmware-20140316.dec41bc-1 is up to date -- reinstalling
    warning: linux-api-headers-3.14.1-1 is up to date -- reinstalling
    warning: linux-headers-3.14.6-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (4): linux-3.14.6-1  linux-api-headers-3.14.1-1
                  linux-firmware-20140316.dec41bc-1  linux-headers-3.14.6-1
    Total Installed Size:   167.78 MiB
    Net Upgrade Size:       0.00 MiB
    Last edited by dslink (2014-06-22 03:30:28)

  • [Solved] glibc-Update-fail and broken system when using custom kernel

    I had a similar issue with the glibc-update as described in several threads.
    I guess, the reason why I ran into the problem was that I'm using a custom-built kernel. So the kernel modules (drivers etc.) under /lib/modules/custom-kernel/ are owned by no pacman package.
    At my system, after upgrating via
    # pacman -Syu --ignore glibc
    # pacman -Su
    The upgrade failed and  /lib/modules/ and the files, owned by the glibc-package remained at the still existing directory /lib.
    Rebooting the computer in this situation causes a sytem freeze.
    Now, here is my sucessful repair, briefly described. Maybe it will help someone:
    1. Booting the computer with the Arch Linux net Install image
    2. mounting my root partition manually at /mnt
    3. performing the following commands:
    # cd /mnt
    # cp -ar lib/* usr/lib/
    # rm -rf lib
    # ln -s usr/lib lib
    7. removing net install image and rebooting the computer
    ==> the system works again, but:
    # pacman -Su
    still produces error messages like:
    error: failed to commit transaction (conflicting files)
    glibc: /lib exists in filesystem
    glibc: /usr/lib/ld-2.16.so exists in filesystem
    glibc: /usr/lib/ld-linux.so.2 exists in filesystem
    glibc: /usr/lib/libBrokenLocale-2.16.so exists in filesystem
    glibc: /usr/lib/libBrokenLocale.so.1 exists in filesystem
    Now at the last step I did is, what the wiki is seriosly discouraging from I use --force:
    # pacman -f -Su
    After that my system was repaired
    I think using force at that point is OK, because the files will only be replaced which are already moved to the right location.

    If you use a custom-built kernel you should really package it up so you can easily avoid this sort of thing just by repackaging.

  • Excel data read from users and upload in to Oracle DB using custom webpart

    Hi Team,
    I need to get the excel date from user using file upload control and read the data from the excel using custom webpart and validate the each rows whether having the values or not and need to upload the data to the oracle database.
    Can you please let me know the best approach to read the data from excel using sharepoint custom webpart.
    Thanks,
    Mylsamy

    Hi,
    According to your post, my understanding is that you want to read excel data from the uploaded file and insert the data into Oracle Database.
    The following way for your reference:
    1.Create a Visual Web Part using Visual Studio.
    2. Add an asp.net upload control into the .ascx file.
    <div>
    <asp:FileUpload ID="fileupload" runat="server" />
    <asp:Button ID="btnUpload" runat="server" onclick="btnUpload_Click" Text="Upload" />
    </div>
    3. Add some logic methods into .ascx.cs file.
    protected void btnUpload_Click(object sender, EventArgs e)
    //read data and insert the data into Oracle database.
    4.We can create a web service for adding data to Oracle database, then consume this web service in the visual web part.
    More information:
    http://msdn.microsoft.com/en-us/library/ff597539(v=office.14).aspx
    http://manish4dotnet.blogspot.in/2013/02/upload-ans-read-excel-file-using-c.html
    http://msmvps.com/blogs/windsor/archive/2011/11/04/walkthrough-creating-a-custom-asp-net-asmx-web-service-in-sharepoint-2010.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Error while trying to install NI-VISA driver on SUSE LINUX 11.1(The version of gcc in the path does not match the version of gcc used to compile the currently running kernel.)

    hi i am trying to install NI-VISA driver on SUSE LINUX 11.1.
     the error message it shows is
              ******************************** ERROR ****************************************
    * The version of gcc in the path does not match the version of gcc used to    *
    * compile the currently running kernel.  This can cause unpredictable         *
    * behavior in kernel drivers and should be fixed.                             *
    * gcc version: Linux)                                                          *
    * kernel compiled with: 4.3.2                                                 *
    ******************************** ERROR ****************************************
    my kernel source version is 
       linux-8nes:/home/admin # rpm -qi kernel-source
    Name        : kernel-source                Relocations: /usr/src
    Version     : 2.6.27.29                         Vendor: openSUSE
    Release     : 0.1.1                         Build Date: Sun 16 Aug 2009 03:43:52 PM IST
    Install Date: Sat 24 Oct 2009 02:13:12 AM IST      Build Host: rinck
    Group       : Development/Sources           Source RPM: kernel-source-2.6.27.29-0.1.1.src.rpm
    Size        : 309251954                        License: GPL v2 only
    Signature   : RSA/8, Sun 16 Aug 2009 03:57:25 PM IST, Key ID b88b2fd43dbdc284
    Packager    : http://bugs.opensuse.org
    URL         : http://www.kernel.org/
    Summary     : The Linux Kernel Sources
    Description :
    Linux kernel sources with many fixes and improvements.
    Authors:
        Linus Torvalds <[email protected]>
        see /usr/src/linux/CREDITS for more details.
    Source Timestamp: 2009-08-15 17:53:59 +0200
    GIT Revision: 8a413546901c407e96f7fba18574cceeb40452af
    GIT Branch: SLE11_BRANCH
    Distribution: openSUSE 11.1 
    i had also installed GCC 4.3.2.
    it shows the error message as i had posted.
    please kindly help me on this.
    Thanks and regards,
    P.karthick

    Check this solution

  • How to restrict employees from accessing managers data using custom security profile

    Hi,
    I am using custom security profile for restricting the employees from accessing supervisors details(PG.SEGMENT2=4). I have written the custom code as below :
    Responsibility :US Super HRMS Manager
    ASSIGNMENT.PERSON_ID
    IN
    (SELECT PAF.PERSON_ID FROM PER_ALL_PEOPLE_F PAF,
    PER_ALL_ASSIGNMENTS_F PF,
    PAY_PEOPLE_GROUPS PG,
    PER_PERSON_TYPE_USAGES_F PPU,
    FND_USER FNU
    WHERE PAF.PERSON_ID=PF.PERSON_ID
    AND :EFFECTIVE_DATE BETWEEN PAF.EFFECTIVE_START_DATE
    AND PAF.EFFECTIVE_END_DATE
    AND PF.PEOPLE_GROUP_ID=PG.PEOPLE_GROUP_ID
    AND :EFFECTIVE_DATE BETWEEN PF.EFFECTIVE_START_DATE AND PF.EFFECTIVE_END_DATE
    AND PPU.PERSON_ID=PAF.PERSON_ID
    AND PPU.PERSON_ID=PF.PERSON_ID
    AND :EFFECTIVE_DATE BETWEEN PPU.EFFECTIVE_START_daTE AND PPU.EFFECTIVE_END_DATE
    AND PAF.PERSON_ID=FNU.EMPLOYEE_ID
    AND PAF.PERSON_TYPE_ID =2
    AND PPU.PERSON_TYPE_ID
    IN(2,62)
    and PAF.person_id = FND_PROFILE.value('user_id')
    AND PG.SEGMENT2=8)
    and using "restrict the people visible to each other using this profile".
    I have assigned the security profile to HR user responsibility
    But when I query the supervisor name in HR User responsibility , it is not restricting me from viewing supervisor details.
    When I query for first time, its restricting me to view others details, but when I close that click on torch button and try searching, its allowing me to access manages details.
    Can any one please let me know what setups need to be done for restricting employees from viewing supervisors data.
    I have gone through the document "Understanding and Using HRMS Security in Oracle HRMS" but didn't got any idea.
    Please suggest.
    Thanks & Regards,
    Anusha.

    Hi All ,
    i solved the problem by using event 01 of header view and using the table "Extract" .
    Regards,
    Neha

  • Issue with calling url using custom uri from page loaded in stagewebview

    I am using stageWebView for showing webpage in my mobile app but don't know how to move back to my app once it gets loaded. In application descriptor file, I had already registered custom uri scheme (myapp://) for IOS devices and from the loaded page inside stageWebView, I was trying to call following URL myapp://webcam. But nothing had happened. It neither called LOCATION_CHANGE event of StageWebView not called INVOKE_EVENT of nativeapplication.
    How can I fix this issue?
    Thanks in advance,
    Mamta

    Hi Ashutosh,
    yea it gets launched correctly from safari. But my problem is with the link(which is using custom uri scheme e.g myapp://backtoapp) in the loaded page inside StageWebView. It is not allowing app to moveback to app from StageWebView. Moreover these two event listeners INVOKE_EVENT(native application) and LOCATION_CHANGE(stagewebview) are not responding. Dont know what should I do in order to move back to app area(mainView.mxml) from StageWebView(native browser).
    Thanks,
    Mamta

  • [SOLVED] Kernels from the AUR not compiling properly

    Hiya everyone,
    I've got a bit of a problem, I think. Early this evening I tried downloading and making the Linux-lqx kernel from the AUR. Largely because why not.
    After the tarball downloaded, I ran tar -xvf on it like I always do, ran namcap on the PKGBUILD (it came up with a few superfluous errors), and ran makepkg -s on the PKGBUILD. It downloaded the relevant source, then immediately failed the PGP signature check. I was like, "Oh you AUR!" and ran makepkg -s --skippgpcheck. It did it's thing until it was applying patches, at which point it just failed at a certain point with "ERROR: A failure occured in prepare()", and aborted. I reported the error and the lines that preceded it in the package's page in the AUR.
    I got suspicious, and tried the Linux-lbre-xen kernel to test the building of it. Same issue: a prepare() error. Baffled, I thought maybe my building system was broken. I recompiled a few packages I had already built and installed successfully, and they were fine. I grabbed a few more tarballs from the AUR: adobe-air, I think jre, and something else. They all compiled great and installed just fine. Confused, I then tried building Linux-ck. Another prepare() error!
    Then I noticed the line that preceded the error, "patching file virt/kvm/kvm_main.c", then the error. Going back to lqx and libre-xen, I tried compiling them again, and sure enough "patching file virt/kvm/kvm_main.c" directly preceded the prepare() error.
    What's going on here? Strangely, every kernel I try from the AUR fails the PGP signature check, too. Just the kernels - everything else works as expected. Am I missing something?
    Last edited by MrEvilBreakfast (2015-05-24 18:59:02)

    The build goes fine until:
    ==> Starting prepare()...
    The next patch would create the file Documentation/ABI/testing/debugfs-aufs,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/ABI/testing/sysfs-aufs,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file Documentation/devicetree/bindings/dma/fsl-mxs-dma.txt
    The next patch would create the file Documentation/filesystems/aufs/README,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/01intro.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/02struct.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/03atomic_open.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/03lookup.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/04branch.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/05wbr_policy.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/06fhsm.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/06mmap.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/06xattr.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/07export.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/08shwh.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/10dynop.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file Documentation/filesystems/aufs/design/99plan.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file Documentation/kernel-parameters.txt
    patching file Documentation/networking/scaling.txt
    The next patch would create the file Documentation/scheduler/sched-BFS.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file Documentation/scsi/link_power_management_policy.txt
    patching file Documentation/sysctl/kernel.txt
    The next patch would create the file Documentation/tp_smapi.txt,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file Documentation/virtual/kvm/devices/s390_flic.txt
    patching file MAINTAINERS
    patching file Makefile
    patching file arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts
    patching file arch/arm/boot/dts/at91-sama5d3_xplained.dts
    patching file arch/arm/boot/dts/dove.dtsi
    patching file arch/arm/boot/dts/exynos5250-spring.dts
    patching file arch/arm/boot/dts/imx23-olinuxino.dts
    patching file arch/arm/boot/dts/imx25.dtsi
    patching file arch/arm/boot/dts/imx28.dtsi
    patching file arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi
    patching file arch/arm/boot/dts/omap3-n900.dts
    patching file arch/arm/boot/dts/ste-dbx5x0.dtsi
    patching file arch/arm/boot/dts/ste-href.dtsi
    patching file arch/arm/boot/dts/ste-snowball.dts
    patching file arch/arm/include/asm/elf.h
    patching file arch/arm/include/uapi/asm/kvm.h
    patching file arch/arm/kernel/Makefile
    patching file arch/arm/kernel/hibernate.c
    patching file arch/arm/kernel/process.c
    The next patch would create the file arch/arm/kernel/psci-call.S,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file arch/arm/kernel/psci.c
    The next patch would create the file arch/arm/kernel/reboot.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file arch/arm/kvm/arm.c
    patching file arch/arm/mach-mvebu/pmsu.c
    patching file arch/arm/mach-omap2/prm-regbits-34xx.h
    patching file arch/arm/mach-omap2/prm-regbits-44xx.h
    patching file arch/arm/mach-omap2/vc.c
    patching file arch/arm/mach-omap2/vc.h
    patching file arch/arm/mach-omap2/vc3xxx_data.c
    patching file arch/arm/mach-omap2/vc44xx_data.c
    patching file arch/arm/mach-s3c64xx/crag6410.h
    patching file arch/arm/mach-s3c64xx/mach-crag6410.c
    patching file arch/arm/net/bpf_jit_32.c
    patching file arch/arm64/Kconfig
    patching file arch/arm64/Makefile
    patching file arch/arm64/include/asm/cpufeature.h
    patching file arch/arm64/include/asm/smp_plat.h
    patching file arch/arm64/include/uapi/asm/kvm.h
    patching file arch/arm64/kernel/cpu_errata.c
    patching file arch/arm64/kernel/entry.S
    patching file arch/arm64/kernel/head.S
    patching file arch/arm64/kernel/setup.c
    patching file arch/arm64/kernel/smp.c
    patching file arch/arm64/mm/dma-mapping.c
    patching file arch/c6x/kernel/time.c
    patching file arch/mips/Kconfig
    patching file arch/mips/Makefile
    patching file arch/mips/bcm47xx/board.c
    patching file arch/mips/bcm63xx/prom.c
    patching file arch/mips/bcm63xx/setup.c
    patching file arch/mips/cavium-octeon/dma-octeon.c
    patching file arch/mips/cavium-octeon/setup.c
    patching file arch/mips/include/asm/asm-eva.h
    patching file arch/mips/include/asm/cacheflush.h
    patching file arch/mips/include/asm/cpu-features.h
    patching file arch/mips/include/asm/elf.h
    patching file arch/mips/include/asm/fpu.h
    patching file arch/mips/include/asm/kvm_host.h
    patching file arch/mips/include/asm/mach-cavium-octeon/cpu-feature-overrides.h
    patching file arch/mips/include/asm/octeon/cvmx.h
    patching file arch/mips/include/asm/octeon/pci-octeon.h
    patching file arch/mips/include/asm/pgtable.h
    patching file arch/mips/include/asm/r4kcache.h
    patching file arch/mips/include/asm/spinlock.h
    patching file arch/mips/kernel/entry.S
    patching file arch/mips/kernel/smp-cps.c
    patching file arch/mips/kernel/unaligned.c
    patching file arch/mips/kvm/emulate.c
    patching file arch/mips/kvm/mips.c
    patching file arch/mips/kvm/trap_emul.c
    patching file arch/mips/loongson/loongson-3/irq.c
    patching file arch/mips/mm/cache.c
    patching file arch/mips/mm/tlbex.c
    patching file arch/mips/mti-malta/malta-memory.c
    patching file arch/mips/netlogic/xlp/ahci-init-xlp2.c
    patching file arch/mips/pci/Makefile
    patching file arch/mips/pci/pci-octeon.c
    patching file arch/mips/pci/pcie-octeon.c
    patching file arch/mips/power/hibernate.S
    patching file arch/mips/ralink/Kconfig
    patching file arch/powerpc/kernel/cacheinfo.c
    patching file arch/powerpc/mm/hugetlbpage.c
    patching file arch/powerpc/perf/callchain.c
    patching file arch/powerpc/platforms/cell/interrupt.c
    patching file arch/powerpc/platforms/cell/iommu.c
    patching file arch/powerpc/platforms/cell/spufs/sched.c
    patching file arch/powerpc/platforms/powernv/pci-ioda.c
    patching file arch/s390/kernel/suspend.c
    patching file arch/s390/kvm/interrupt.c
    patching file arch/s390/kvm/kvm-s390.h
    patching file arch/s390/kvm/priv.c
    patching file arch/x86/Kconfig
    patching file arch/x86/Kconfig.cpu
    patching file arch/x86/Makefile_32.cpu
    patching file arch/x86/include/asm/insn.h
    patching file arch/x86/include/asm/mwait.h
    patching file arch/x86/include/asm/pvclock.h
    patching file arch/x86/include/asm/spinlock.h
    patching file arch/x86/kernel/acpi/boot.c
    patching file arch/x86/kernel/apic/io_apic.c
    patching file arch/x86/kernel/cpu/intel.c
    patching file arch/x86/kernel/cpu/perf_event_intel_ds.c
    patching file arch/x86/kernel/early_printk.c
    patching file arch/x86/kernel/ioport.c
    patching file arch/x86/kernel/process.c
    patching file arch/x86/kernel/pvclock.c
    patching file arch/x86/kvm/vmx.c
    patching file arch/x86/kvm/x86.c
    patching file arch/x86/lib/insn.c
    patching file arch/x86/lib/usercopy_64.c
    patching file arch/x86/pci/acpi.c
    patching file arch/x86/platform/efi/early_printk.c
    patching file arch/x86/tools/test_get_len
    patching file arch/x86/vdso/vclock_gettime.c
    patching file arch/xtensa/Kconfig
    patching file arch/xtensa/include/uapi/asm/unistd.h
    patching file arch/xtensa/platforms/iss/network.c
    patching file arch/xtensa/platforms/xtfpga/Makefile
    patching file arch/xtensa/platforms/xtfpga/include/platform/hardware.h
    patching file arch/xtensa/platforms/xtfpga/include/platform/lcd.h
    patching file arch/xtensa/platforms/xtfpga/lcd.c
    patching file block/Kconfig.iosched
    patching file block/Makefile
    The next patch would create the file block/bfq-cgroup.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file block/bfq-ioc.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file block/bfq-iosched.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file block/bfq-sched.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file block/bfq.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file block/blk-core.c
    patching file block/blk-mq.c
    patching file block/blk-sysfs.c
    patching file drivers/accessibility/braille/braille_console.c
    patching file drivers/acpi/acpi_pnp.c
    patching file drivers/acpi/acpica/acmacros.h
    patching file drivers/acpi/acpica/dsopcode.c
    patching file drivers/acpi/acpica/evgpe.c
    patching file drivers/acpi/acpica/evregion.c
    patching file drivers/acpi/acpica/exdump.c
    patching file drivers/acpi/acpica/exfldio.c
    patching file drivers/acpi/acpica/exregion.c
    patching file drivers/acpi/acpica/hwgpe.c
    patching file drivers/acpi/acpica/hwvalid.c
    patching file drivers/acpi/acpica/nsdump.c
    patching file drivers/acpi/acpica/tbdata.c
    patching file drivers/acpi/acpica/tbinstal.c
    patching file drivers/acpi/acpica/tbprint.c
    patching file drivers/acpi/acpica/tbxfroot.c
    patching file drivers/acpi/acpica/utaddress.c
    patching file drivers/acpi/blacklist.c
    patching file drivers/acpi/resource.c
    patching file drivers/acpi/sbs.c
    patching file drivers/acpi/sbshc.c
    patching file drivers/acpi/scan.c
    patching file drivers/ata/acard-ahci.c
    patching file drivers/ata/ahci.c
    patching file drivers/ata/ahci.h
    patching file drivers/ata/libahci.c
    patching file drivers/ata/libahci_platform.c
    patching file drivers/ata/libata-core.c
    patching file drivers/ata/libata-eh.c
    patching file drivers/ata/libata-pmp.c
    patching file drivers/ata/libata-scsi.c
    patching file drivers/ata/libata.h
    patching file drivers/ata/sata_highbank.c
    patching file drivers/base/bus.c
    patching file drivers/base/cacheinfo.c
    patching file drivers/base/platform.c
    patching file drivers/block/loop.c
    patching file drivers/block/rbd.c
    patching file drivers/bluetooth/ath3k.c
    patching file drivers/bluetooth/btusb.c
    patching file drivers/char/tpm/tpm-chip.c
    patching file drivers/clk/at91/clk-usb.c
    patching file drivers/clk/qcom/clk-rcg.c
    patching file drivers/clk/qcom/clk-rcg.h
    patching file drivers/clk/qcom/clk-rcg2.c
    patching file drivers/clk/qcom/gcc-ipq806x.c
    patching file drivers/clk/qcom/lcc-ipq806x.c
    patching file drivers/clk/samsung/clk-exynos4.c
    patching file drivers/clk/tegra/clk-tegra124.c
    patching file drivers/clk/tegra/clk.c
    patching file drivers/cpufreq/cpufreq.c
    patching file drivers/cpufreq/cpufreq_conservative.c
    patching file drivers/cpufreq/cpufreq_ondemand.c
    patching file drivers/cpufreq/intel_pstate.c
    patching file drivers/crypto/omap-aes.c
    patching file drivers/gpio/gpio-mvebu.c
    patching file drivers/gpio/gpiolib-sysfs.c
    patching file drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
    patching file drivers/gpu/drm/drm_irq.c
    patching file drivers/gpu/drm/exynos/exynos_dp_core.c
    patching file drivers/gpu/drm/exynos/exynos_drm_fimd.c
    The next patch would create the file drivers/gpu/drm/exynos/exynos_drm_fimd.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file drivers/gpu/drm/i2c/adv7511.c
    patching file drivers/gpu/drm/i915/i915_drv.c
    patching file drivers/gpu/drm/i915/i915_irq.c
    patching file drivers/gpu/drm/i915/i915_reg.h
    patching file drivers/gpu/drm/i915/intel_display.c
    patching file drivers/gpu/drm/i915/intel_dp.c
    patching file drivers/gpu/drm/i915/intel_i2c.c
    patching file drivers/gpu/drm/i915/intel_lvds.c
    patching file drivers/gpu/drm/radeon/atombios_crtc.c
    patching file drivers/gpu/drm/radeon/atombios_encoders.c
    patching file drivers/gpu/drm/radeon/dce6_afmt.c
    patching file drivers/gpu/drm/radeon/evergreen_hdmi.c
    patching file drivers/gpu/drm/radeon/r600_hdmi.c
    patching file drivers/gpu/drm/radeon/radeon_asic.c
    patching file drivers/gpu/drm/radeon/radeon_asic.h
    patching file drivers/gpu/drm/radeon/radeon_audio.c
    patching file drivers/gpu/drm/radeon/radeon_connectors.c
    patching file drivers/gpu/drm/radeon/radeon_cs.c
    patching file drivers/gpu/drm/radeon/radeon_ttm.c
    patching file drivers/gpu/drm/radeon/radeon_uvd.c
    patching file drivers/gpu/drm/radeon/radeon_vce.c
    patching file drivers/gpu/drm/radeon/radeon_vm.c
    patching file drivers/gpu/drm/radeon/rv770d.h
    patching file drivers/gpu/drm/radeon/si_dpm.c
    patching file drivers/gpu/drm/radeon/uvd_v1_0.c
    patching file drivers/gpu/drm/radeon/uvd_v2_2.c
    patching file drivers/hid/Kconfig
    patching file drivers/hid/Makefile
    patching file drivers/hid/hid-ids.h
    patching file drivers/hid/hid-multitouch.c
    The next patch would create the file drivers/hid/huiontablet.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file drivers/hid/usbhid/hid-quirks.c
    patching file drivers/hv/channel.c
    patching file drivers/hv/channel_mgmt.c
    patching file drivers/i2c/busses/i2c-rk3x.c
    patching file drivers/i2c/i2c-core.c
    patching file drivers/i2c/i2c-mux.c
    patching file drivers/idle/intel_idle.c
    patching file drivers/infiniband/core/cma.c
    patching file drivers/infiniband/core/umem.c
    patching file drivers/infiniband/hw/mlx4/qp.c
    patching file drivers/infiniband/ulp/iser/iser_initiator.c
    patching file drivers/infiniband/ulp/isert/ib_isert.c
    patching file drivers/input/input-mt.c
    patching file drivers/input/joydev.c
    patching file drivers/input/mouse/alps.c
    patching file drivers/input/mouse/elantech.c
    patching file drivers/input/mouse/elantech.h
    patching file drivers/input/mouse/synaptics.c
    patching file drivers/input/mouse/synaptics.h
    patching file drivers/macintosh/Kconfig
    patching file drivers/macintosh/adbhid.c
    patching file drivers/md/md.c
    patching file drivers/md/raid0.c
    patching file drivers/media/platform/marvell-ccic/mcam-core.c
    patching file drivers/media/platform/marvell-ccic/mcam-core.h
    patching file drivers/media/rc/img-ir/img-ir-core.c
    patching file drivers/media/usb/stk1160/stk1160-v4l.c
    patching file drivers/memstick/core/mspro_block.c
    patching file drivers/mfd/mfd-core.c
    patching file drivers/mmc/card/block.c
    patching file drivers/mmc/card/queue.c
    patching file drivers/mmc/card/queue.h
    patching file drivers/mmc/core/core.c
    patching file drivers/mmc/host/sh_mmcif.c
    patching file drivers/mmc/host/sunxi-mmc.c
    patching file drivers/mmc/host/tmio_mmc_pio.c
    patching file drivers/mtd/ubi/attach.c
    patching file drivers/mtd/ubi/cdev.c
    patching file drivers/mtd/ubi/eba.c
    patching file drivers/mtd/ubi/wl.c
    patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x.h
    patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
    patching file drivers/net/ethernet/cadence/macb.c
    patching file drivers/net/ethernet/chelsio/cxgb4/t4_hw.c
    patching file drivers/net/ethernet/intel/e1000/e1000_main.c
    patching file drivers/net/ethernet/marvell/pxa168_eth.c
    patching file drivers/net/ethernet/mellanox/mlx4/en_ethtool.c
    patching file drivers/net/ethernet/mellanox/mlx4/en_netdev.c
    patching file drivers/net/ethernet/mellanox/mlx4/en_rx.c
    patching file drivers/net/ethernet/mellanox/mlx4/en_tx.c
    patching file drivers/net/ethernet/mellanox/mlx4/mlx4_en.h
    patching file drivers/net/netconsole.c
    patching file drivers/net/ppp/ppp_generic.c
    patching file drivers/net/vxlan.c
    patching file drivers/net/wireless/hostap/hostap.h
    patching file drivers/net/wireless/hostap/hostap_ap.c
    patching file drivers/net/wireless/hostap/hostap_config.h
    patching file drivers/net/wireless/hostap/hostap_hw.c
    patching file drivers/net/wireless/hostap/hostap_info.c
    patching file drivers/net/wireless/hostap/hostap_ioctl.c
    patching file drivers/net/wireless/rtlwifi/rtl8192cu/sw.c
    patching file drivers/net/wireless/ti/wl18xx/debugfs.c
    patching file drivers/net/wireless/ti/wlcore/debugfs.h
    patching file drivers/nfc/st21nfcb/i2c.c
    patching file drivers/pinctrl/core.c
    patching file drivers/pinctrl/core.h
    patching file drivers/pinctrl/devicetree.c
    patching file drivers/platform/x86/Kconfig
    patching file drivers/platform/x86/Makefile
    patching file drivers/platform/x86/compal-laptop.c
    patching file drivers/platform/x86/hdaps.c
    The next patch would create the file drivers/platform/x86/thinkpad_ec.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/platform/x86/tp_smapi.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file drivers/power/ipaq_micro_battery.c
    patching file drivers/power/lp8788-charger.c
    patching file drivers/power/twl4030_madc_battery.c
    patching file drivers/rtc/rtc-armada38x.c
    patching file drivers/scsi/3w-9xxx.c
    patching file drivers/scsi/3w-9xxx.h
    patching file drivers/scsi/3w-sas.c
    patching file drivers/scsi/3w-sas.h
    patching file drivers/scsi/3w-xxxx.c
    patching file drivers/scsi/3w-xxxx.h
    patching file drivers/scsi/megaraid/megaraid_sas_fusion.c
    patching file drivers/scsi/mvsas/mv_sas.c
    patching file drivers/scsi/scsi_devinfo.c
    patching file drivers/scsi/scsi_scan.c
    patching file drivers/scsi/sd.c
    patching file drivers/scsi/sd_dif.c
    patching file drivers/scsi/storvsc_drv.c
    patching file drivers/spi/spi-imx.c
    patching file drivers/spi/spidev.c
    patching file drivers/ssb/Kconfig
    patching file drivers/staging/Kconfig
    patching file drivers/staging/Makefile
    patching file drivers/staging/android/sync.c
    patching file drivers/staging/panel/panel.c
    The next patch would create the file drivers/staging/vhba/Kconfig,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/staging/vhba/Makefile,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/staging/vhba/vhba.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file drivers/staging/vt6655/rxtx.c
    patching file drivers/target/iscsi/iscsi_target.c
    patching file drivers/target/iscsi/iscsi_target_erl0.c
    patching file drivers/target/iscsi/iscsi_target_login.c
    patching file drivers/target/target_core_file.c
    patching file drivers/target/target_core_sbc.c
    patching file drivers/target/target_core_transport.c
    patching file drivers/tty/Kconfig
    patching file drivers/tty/hvc/hvc_xen.c
    patching file drivers/tty/serial/8250/8250_core.c
    patching file drivers/tty/serial/8250/8250_dw.c
    patching file drivers/tty/serial/8250/8250_early.c
    patching file drivers/tty/serial/atmel_serial.c
    patching file drivers/tty/serial/imx.c
    patching file drivers/tty/serial/of_serial.c
    patching file drivers/tty/serial/uartlite.c
    patching file drivers/tty/serial/xilinx_uartps.c
    patching file drivers/tty/vt/vt.c
    patching file drivers/usb/chipidea/otg_fsm.c
    patching file drivers/usb/class/cdc-acm.c
    patching file drivers/usb/class/cdc-wdm.c
    patching file drivers/usb/core/hub.c
    patching file drivers/usb/dwc2/hcd.c
    patching file drivers/usb/gadget/legacy/printer.c
    patching file drivers/usb/host/ehci-hcd.c
    patching file drivers/usb/host/ehci-hub.c
    patching file drivers/usb/host/fotg210-hcd.c
    patching file drivers/usb/host/fusbh200-hcd.c
    patching file drivers/usb/host/isp116x-hcd.c
    patching file drivers/usb/host/oxu210hp-hcd.c
    patching file drivers/usb/host/r8a66597-hcd.c
    patching file drivers/usb/host/sl811-hcd.c
    patching file drivers/usb/host/uhci-hub.c
    patching file drivers/usb/host/xhci-ring.c
    patching file drivers/usb/isp1760/isp1760-hcd.c
    patching file drivers/usb/musb/musb_core.c
    patching file drivers/usb/musb/musb_virthub.c
    patching file drivers/usb/phy/phy.c
    patching file drivers/usb/storage/uas-detect.h
    patching file drivers/usb/storage/uas.c
    patching file drivers/usb/storage/usb.c
    patching file drivers/vfio/vfio.c
    patching file drivers/video/logo/Kconfig
    patching file drivers/video/logo/Makefile
    patching file drivers/video/logo/logo.c
    The next patch would create the file drivers/video/logo/logo_arch_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_bsd_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_debian_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_exherbo_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_fbsd_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_fedoraglossy_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_fedorasimple_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_gentoo_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_oldzen_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_slackware_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_tits_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file drivers/video/logo/logo_zen_clut224.ppm,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file drivers/xen/events/events_2l.c
    patching file drivers/xen/events/events_base.c
    patching file drivers/xen/xen-pciback/conf_space.c
    patching file drivers/xen/xen-pciback/conf_space.h
    patching file drivers/xen/xen-pciback/conf_space_header.c
    patching file drivers/xen/xenbus/xenbus_probe.c
    patching file fs/Kconfig
    patching file fs/Makefile
    The next patch would create the file fs/aufs/Kconfig,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/Makefile,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/aufs.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/branch.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/branch.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/cpup.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/cpup.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dbgaufs.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dbgaufs.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dcsub.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dcsub.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/debug.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/debug.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dentry.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dentry.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dinfo.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dir.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dir.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dynop.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/dynop.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/export.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/f_op.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/fhsm.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/file.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/file.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/finfo.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/fstype.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/hfsnotify.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/hfsplus.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/hnotify.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/i_op.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/i_op_add.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/i_op_del.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/i_op_ren.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/iinfo.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/inode.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/inode.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/ioctl.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/loop.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/loop.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/magic.mk,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/module.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/module.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/mvdown.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/opts.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/opts.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/plink.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/poll.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/posix_acl.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/procfs.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/rdu.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/rwsem.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/sbinfo.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/spl.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/super.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/super.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/sysaufs.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/sysaufs.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/sysfs.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/sysrq.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/vdir.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/vfsub.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/vfsub.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/wbr_policy.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/whout.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/whout.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/wkq.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/wkq.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/xattr.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file fs/aufs/xino.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file fs/binfmt_elf.c
    patching file fs/btrfs/extent-tree.c
    patching file fs/btrfs/ioctl.c
    patching file fs/btrfs/send.c
    patching file fs/btrfs/xattr.c
    patching file fs/buffer.c
    patching file fs/coredump.c
    patching file fs/dcache.c
    patching file fs/exec.c
    patching file fs/ext4/extents.c
    patching file fs/ext4/extents_status.c
    patching file fs/ext4/inode.c
    patching file fs/ext4/namei.c
    patching file fs/file_table.c
    patching file fs/hfsplus/xattr.c
    patching file fs/inode.c
    patching file fs/lockd/svcsubs.c
    patching file fs/namei.c
    patching file fs/namespace.c
    patching file fs/nfs/callback.c
    patching file fs/nfs/direct.c
    patching file fs/nfs/nfs4xdr.c
    patching file fs/nfs/read.c
    patching file fs/nfs/write.c
    patching file fs/nfsd/nfs4proc.c
    patching file fs/nfsd/nfs4state.c
    patching file fs/nfsd/nfs4xdr.c
    patching file fs/nfsd/nfsctl.c
    patching file fs/nfsd/nfsd.h
    patching file fs/nilfs2/btree.c
    patching file fs/notify/group.c
    patching file fs/notify/mark.c
    patching file fs/ocfs2/dlm/dlmmaster.c
    patching file fs/open.c
    patching file fs/pnode.c
    patching file fs/pnode.h
    patching file fs/proc/base.c
    patching file fs/proc/nommu.c
    patching file fs/proc/task_mmu.c
    patching file fs/proc/task_nommu.c
    patching file fs/splice.c
    patching file fs/xattr.c
    patching file include/acpi/acconfig.h
    patching file include/acpi/acpixf.h
    patching file include/acpi/actypes.h
    patching file include/acpi/platform/acenv.h
    patching file include/dt-bindings/clock/tegra124-car-common.h
    patching file include/linux/bpf.h
    patching file include/linux/cgroup_subsys.h
    patching file include/linux/console.h
    patching file include/linux/file.h
    patching file include/linux/init_task.h
    patching file include/linux/ioprio.h
    patching file include/linux/jiffies.h
    patching file include/linux/libata.h
    patching file include/linux/linux_logo.h
    patching file include/linux/mm.h
    patching file include/linux/mm_types.h
    patching file include/linux/mount.h
    patching file include/linux/nilfs2_fs.h
    patching file include/linux/sched.h
    patching file include/linux/sched/prio.h
    patching file include/linux/skbuff.h
    patching file include/linux/splice.h
    The next patch would create the file include/linux/thinkpad_ec.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file include/linux/usb.h
    patching file include/linux/usb_usual.h
    patching file include/scsi/scsi_devinfo.h
    patching file include/sound/emu10k1.h
    patching file include/sound/soc-dapm.h
    patching file include/target/iscsi/iscsi_target_core.h
    patching file include/target/target_core_base.h
    The next patch would create the file include/trace/events/fs.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file include/uapi/linux/Kbuild
    The next patch would create the file include/uapi/linux/aufs_type.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file include/uapi/linux/nfsd/debug.h
    patching file include/uapi/linux/sched.h
    patching file include/uapi/linux/vt.h
    patching file include/video/samsung_fimd.h
    patching file init/Kconfig
    patching file init/main.c
    patching file kernel/bpf/core.c
    patching file kernel/bpf/verifier.c
    patching file kernel/debug/kdb/kdb_io.c
    patching file kernel/delayacct.c
    patching file kernel/exit.c
    patching file kernel/fork.c
    patching file kernel/printk/printk.c
    patching file kernel/ptrace.c
    patching file kernel/sched/Makefile
    The next patch would create the file kernel/sched/bfs.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    The next patch would create the file kernel/sched/bfs_sched.h,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file kernel/sched/core.c
    patching file kernel/sched/deadline.c
    patching file kernel/sched/fair.c
    patching file kernel/sched/idle.c
    patching file kernel/sched/stats.c
    patching file kernel/stop_machine.c
    patching file kernel/sysctl.c
    patching file kernel/time/Kconfig
    patching file kernel/time/posix-cpu-timers.c
    patching file kernel/trace/ring_buffer.c
    patching file kernel/trace/trace_events.c
    patching file kernel/trace/trace_functions_graph.c
    patching file kernel/trace/trace_selftest.c
    patching file lib/Kconfig.debug
    patching file lib/string.c
    patching file mm/Makefile
    patching file mm/filemap.c
    patching file mm/huge_memory.c
    patching file mm/hugetlb.c
    patching file mm/madvise.c
    patching file mm/memory-failure.c
    patching file mm/memory.c
    patching file mm/mempolicy.c
    patching file mm/mmap.c
    patching file mm/msync.c
    patching file mm/nommu.c
    patching file mm/page-writeback.c
    The next patch would create the file mm/prfile.c,
    which already exists! Skipping patch.
    1 out of 1 hunk ignored
    patching file net/bridge/br_netfilter.c
    patching file net/core/dev.c
    patching file net/core/skbuff.c
    patching file net/ethernet/eth.c
    patching file net/ipv4/Kconfig
    patching file net/ipv4/geneve.c
    patching file net/ipv4/ip_forward.c
    patching file net/ipv4/ping.c
    patching file net/ipv4/route.c
    patching file net/ipv4/tcp_output.c
    patching file net/mac80211/mlme.c
    patching file net/netlink/af_netlink.c
    patching file scripts/mkcompile_h
    patching file security/commoncap.c
    patching file security/device_cgroup.c
    patching file security/security.c
    patching file sound/oss/sequencer.c
    patching file sound/pci/emu10k1/emu10k1.c
    patching file sound/pci/emu10k1/emu10k1_callback.c
    patching file sound/pci/emu10k1/emu10k1_main.c
    patching file sound/pci/emu10k1/emupcm.c
    patching file sound/pci/emu10k1/emuproc.c
    patching file sound/pci/emu10k1/memory.c
    patching file sound/pci/hda/hda_codec.c
    patching file sound/pci/hda/patch_realtek.c
    patching file sound/pci/hda/thinkpad_helper.c
    patching file sound/soc/codecs/cs4271.c
    patching file sound/soc/codecs/pcm512x.c
    patching file sound/soc/codecs/rt5677.c
    patching file sound/soc/codecs/tfa9879.c
    patching file sound/soc/codecs/wm8741.c
    patching file sound/soc/davinci/davinci-evm.c
    patching file sound/soc/samsung/s3c24xx-i2s.c
    patching file sound/synth/emux/emux_oss.c
    patching file sound/synth/emux/emux_seq.c
    patching file sound/usb/quirks.c
    patching file tools/lib/traceevent/kbuffer-parse.c
    patching file tools/perf/config/Makefile
    patching file tools/perf/tests/make
    patching file tools/perf/util/cloexec.c
    patching file tools/perf/util/cloexec.h
    patching file tools/perf/util/symbol-elf.c
    patching file tools/power/x86/turbostat/Makefile
    patching file virt/kvm/arm/vgic.c
    patching file virt/kvm/kvm_main.c
    ==> ERROR: A failure occurred in prepare().
    Aborting...
    Last edited by MrEvilBreakfast (2015-05-24 17:08:08)

  • HOW TO: using custom fonts in native storyboard views from an ANE on iOS

    Hey,
      In our apps, we have embedded storyboards into an ANE, and successfully used those screens in an AIR app, and figured out how to use custom fonts in those views.
      I wrote a quick blog post about it and just thought I'd share it real quick in case it helps someone.
    ANE for iOS with Custom Framework – Using Custom Fonts | khef.co

    Hi WayHsieh,
    >>can I just "install" fonts through Word App? Does Word Apps have enough privilege to install fonts on Windows? Can I just click a button in Word App, and then it will install fonts automatically?<<
    Based on my understanding, it is hard to achieve the goal. Because the app webpage is hosted inside an Internet Explorer control which, in turn, is hosted inside an app runtime process that provides security and performance isolation and it is under
    low-Integrity level.
    Here is the figure for apps for Office runtime environment in Windows-based desktop and tablet clients:
    You can get more detail about Privacy and security from links below:
    Privacy and security for apps for Office
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • [SOLVED] Compiling kernel PKGBUILD from ABS (2.6.34)

    So I'm currently compiling a kernel from ABS, and its been running som docbook stuff for 2-3 hours now which I've never seen before when compiling a kernel with ABS.
    I commented out the line that allowed me to edit the config with make menuconfig. I tweaked the kernel to 1000hz and set up my cpu family.
    Is this normal? Im pretty sure this didnt happen when I compiled 2.6.33.4 from ABS
    This is what its been spamming for the past ~2 hours:
    Note: Writing struct_usb_host_ss_ep_comp.9
    Warn: meta author : no refentry/info/author struct usb_host_endpoint
    Note: meta author : see http://docbook.sf.net/el/author struct usb_host_endpoint
    Warn: meta author : no author data, so inserted a fixme struct usb_host_endpoint
    Note: Writing struct_usb_host_endpoint.9
    Warn: meta author : no refentry/info/author struct usb_interface
    Note: meta author : see http://docbook.sf.net/el/author struct usb_interface
    Warn: meta author : no author data, so inserted a fixme struct usb_interface
    Note: Writing struct_usb_interface.9
    Warn: meta author : no refentry/info/author struct usb_interface_cache
    Note: meta author : see http://docbook.sf.net/el/author struct usb_interface_cache
    Warn: meta author : no author data, so inserted a fixme struct usb_interface_cache
    Last edited by XAM (2010-06-29 06:19:50)

    Coacher wrote:Since 2.6.34 there is also kernel26-manpages and kernel26-docs packages that also placed in kernel26 PKGBUILD.
    I've never compiled that docs stuff for myself so cant say how long it takes, but if you need only new kernel26 package you can safely wipe out that lines from PKGBUILD.
    wow, thats good to hear. Took ages compiling with it there.

Maybe you are looking for

  • Is there a way to gift an app with the billing method as store credit

    I want to gift 4 apps to my friend but i dont have a credit/debit card becuase im a kid. Is there a way to gift the apps when the billing method is store credit like a itunes giftcard?

  • How to view only specific authentication requests in access tracker

    Requirement: How to view only "Healthy/Unhealthy" requests from a specific Webauth service. Solution: If we have more than one Webauth service (based on conditions such as Device type or NAS IP or posture status etc) and we need only Healthy/Unhealth

  • Preview on an external monitor

    Hi AE community ! I'm facing an issue with AE CC and my new MB Retina. I have an external Cinema Display plug with Thunderbolt, but this one don't appear in the external monitors list in the settings menu. I have only access to Firewire output. Do an

  • Transfer of Recon Account

    Dear Experts My vendor down payments  I posted in  recon account of CREDITORS u2013EXPENSES  , here  some payments  is  my assets (Like Mobile Deposit), so end of the year I want   transfer  the  amount( whatever my Assets) from  CREDITORS u2013EXPEN

  • Help desk cannot assign retention policies to new mailboxes

    I am running Exchange 2010 SP1.  I would like to give my help desk the ability to create new mailboxes.  When a new mailbox is created, we select the option to assign a Retention policy to it.  I added the help desk members to the "Recipient Manageme