[solved] Compiling A Custom Kernel W/ Same Config

I apologize in advance if this is repetitive but i am just a little confused with a few questions.
What i want to do is be able to pretty much just have the ability to add a module or compile somthing on top of the default linux
kernel. I guess the only way to do that is to recompile a linux kernel with this guide:
https://wiki.archlinux.org/index.php/Ke … ild_System
My questions:
In the guide it says to change PKGBUILD and change:
# pkgname=linux-custom       # Build kernel with a different name
to
pkgname=linux-test
I understand that. it also says to disable conflicts if you want two kernels.
is that just comenting "provides" , "conflicts" and "replaces"
like:
#next lines give you problems with nvidia drivers which depend on kernel
#provides=('kernel26')
#conflicts=('kernel26')
#replaces=('kernel26'
Also when i select or uncomment menuconfig and lets say not change anything at all is that going to be the same configuration as it would be if i were to install the kernel with pacman. It should be the same thing i have right now? right?
So i can say add framebuffer support or something like that and compile and install and have the exact same kernel now plus FB support.
Thanks,
Paul
Last edited by paulb787 (2012-06-22 05:50:35)

1.
What i want to do is be able to pretty much just have the ability to add a module or compile somthing on top of the default linux kernel.
You would need linux-headers to do that like this (more or less):
cd your-src/kernel
make SYSSRC=/lib/modules/${current-kernel-version}/build module
If you want to customize your kernel further, change its config options, modify default features, etc., then you need to recompile it entirely as described in the Wiki.
2.
is that just comenting "provides" , "conflicts" and "replaces"
Yes. You also need to create a custom linux-${your-custom-kernel-name}.preset in order to generate initramfs. Of course, you can as well use the default name and change the settings in the config file (via menuconfig, nconfig or whatever tool you choose the achieve this). Then nothing has to be changed as all the add-ons will follow the naming convention reserved for the default kernel.
3.
Also when i select or uncomment menuconfig and lets say not change anything at all is that going to be the same configuration as it would be if i were to install the kernel with pacman?
Yes.
4.
So i can say add framebuffer support or something like that and compile and install and have the exact same kernel now plus FB support.
Basically yes, though I'm wondering for which video board you need extra FB support...
Last edited by bohoomil (2012-06-20 00:41:15)

Similar Messages

  • Strange error compiling a custom kernel...

    Here is the error i get when compiling a custom kernel (i tried both 2.6.22 from core and 2.6.23 from testing):
    init/built-in.o: In function 'start_kernel':
    (.init.text.0x836): undefined reference to 'early_populated_rootfs'
    make: *** [.tmp_vmlinuz1] Error 1
    i have no idea of what it the problem, the config file it's the same i've used for all my 2.6.22 kernels, any idea?
    Thank you.

    This kind of error is when you forget to add a source file to gcc comand line during compilation. I think that problem might be in one of broken Makefiles in kernel tree. Maybe some patch messed with them. Try to download fresh kernel sources.

  • [solved] Nvidia with custom kernel

    Hello,
    I just compiled a new custom kernel and the custom kernel headers and then went on to create a custom nvidia kernel module. Somehow that doesn't seem to work. Nvidia is complaining that there is something Xen-ish in my kernel:
    Creating directory NVIDIA-Linux-x86_64-260.19.36-no-compat32
    Verifying archive integrity... OK
    Uncompressing NVIDIA Accelerated Graphics Driver for Linux-x86_64 260.19.36.....................................................................................................................
    The kernel you are installing for is a Xen kernel!
    The NVIDIA driver does not currently work on Xen kernels. If
    you are using a stock distribution kernel, please install
    a variant of this kernel without Xen support; if this is a
    custom kernel, please install a standard Linux kernel. Then
    try installing the NVIDIA kernel module again.
    *** Failed Xen sanity check. Bailing out! ***
    make[1]: *** [build-sanity-checks] Error 1
    make: *** [module] Error 2
    Aborting...
    As far as I know there is no xen or other vm stuff in the kernel. To verify this I tried to make a new nvidia package for the standard kernel. Again the same error.
    Also this makes me wonder how the PKGBUILD works since it the build function just runs:
    make SYSSRC=/path/to/current/kernelmodules/build module
    and there are no xen sanity checks in that script, that happens in nvidia-installer - which isn't called from the PKGBUILD....
    Secondly, when doing a "make module" from the nvidia/kernel dir with the standard kernel there is a difference between the abs package and the extra package. Anyone a clue what is going on in the PKGBUILD and why the difference between the two kernel modules?
    Thanks.
    Last edited by Ulf (2011-02-04 22:20:51)

    Ulf wrote:Yeah that seems to work but still wondering why the PKBUILD calls nvidia-installer
    To unpack it. From the PKGBUILD:
    sh ${_pkg}.run --extract-only
    Note the '--extract-only'
    Ulf wrote:and why there is a slight difference in size between the extra package and my own module for the same standard arch kernel
    Different cflags? Different compiler version?
    Ulf wrote:and why nvidia thinks there is a kernel with Xen (it seems that it is some sort of common bug, not specific to arch but nvidia-ish).
    Quite likely false detection. The installer sees something activated in the kernel and thinks it's xen related. Or something.

  • [Solved] Compiling a new kernel with ABS

    I've made it through the whole process outlined in the wiki, up to installing with pacman.  Pacman is telling me that the stock arch kernel is a conflicting package and wants to remove it.  I want to hang on to it in case I've messed something up.  What am I doing wrong?  I know you can have two kernels installed.  Using the traditional way I can get this, but I'd rather keep to doing things The Arch Way.
    Last edited by Morrvick (2011-11-17 00:40:30)

    I double checked what I was doing, and I have done that.  Here is my modified PKGBUILD:
    # $Id: PKGBUILD 130991 2011-07-09 12:23:51Z thomas $
    # Maintainer: Tobias Powalowski <[email protected]>
    # Maintainer: Thomas Baechler <[email protected]>
    pkgbase=linux
    #pkgname=('linux' 'linux-headers' 'linux-docs') # Build stock -ARCH kernel
    pkgname=('linux-morrvick' 'linux-headers-morrvick') # Build kernel with a different name
    _kernelname=${pkgname#linux}
    _basekernel=3.1
    pkgver=${_basekernel}.1
    pkgrel=1
    arch=('i686' 'x86_64')
    url="http://www.kernel.org/"
    license=('GPL2')
    makedepends=('xmlto' 'docbook-xsl')
    options=('!strip')
    source=("http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.1.tar.xz"
    "http://www.kernel.org/pub/linux/kernel/v3.x/patch-${pkgver}.xz"
    # the main kernel config files
    'config' 'config.x86_64'
    # standard config files for mkinitcpio ramdisk
    "${pkgname}.preset"
    'change-default-console-loglevel.patch'
    'i915-fix-ghost-tv-output.patch'
    'i915-fix-incorrect-error-message.patch'
    'usb-add-reset-resume-quirk-for-several-webcams.patch')
    md5sums=('edbdc798f23ae0f8045c82f6fa22c536'
    '2bf7eb28a58238e1a062fa7393bf7824'
    'cbaaa923f00c1935055273ccc1630144'
    '93687a4b7e1e6bcd4e7417d6e5079bc4'
    'eb14dcfd80c00852ef81ded6e826826a'
    '9d3c56a4b999c8bfbd4018089a62f662'
    '263725f20c0b9eb9c353040792d644e5'
    'a50c9076012cb2dda49952dc6ec3e9c1'
    '52d41fa61e80277ace2b994412a0c856')
    build() {
    cd "${srcdir}/linux-${_basekernel}"
    # add upstream patch
    patch -p1 -i "${srcdir}/patch-${pkgver}"
    # add latest fixes from stable queue, if needed
    # http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
    # Some chips detect a ghost TV output
    # mailing list discussion: http://lists.freedesktop.org/archives/intel-gfx/2011-April/010371.html
    # Arch Linux bug report: FS#19234
    # It is unclear why this patch wasn't merged upstream, it was accepted,
    # then dropped because the reasoning was unclear. However, it is clearly
    # needed.
    patch -Np1 -i "${srcdir}/i915-fix-ghost-tv-output.patch"
    # In 3.1.1, a DRM_DEBUG message is falsely declared as DRM_ERROR. This
    # worries users, as this message is displayed even at loglevel 4. Fix
    # this.
    patch -Np1 -i "${srcdir}/i915-fix-incorrect-error-message.patch"
    # Add the USB_QUIRK_RESET_RESUME for several webcams
    # FS#26528
    patch -Np1 -i "${srcdir}/usb-add-reset-resume-quirk-for-several-webcams.patch"
    # set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
    # remove this when a Kconfig knob is made available by upstream
    # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
    patch -Np1 -i "${srcdir}/change-default-console-loglevel.patch"
    if [ "${CARCH}" = "x86_64" ]; then
    cat "${srcdir}/config.x86_64" > ./.config
    else
    cat "${srcdir}/config" > ./.config
    fi
    if [ "${_kernelname}" != "" ]; then
    sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
    fi
    # set extraversion to pkgrel
    sed -ri "s|^(EXTRAVERSION =).*|\1 -${pkgrel}|" Makefile
    # get kernel version
    make prepare
    # load configuration
    # Configure the kernel. Replace the line below with one of your choice.
    #make menuconfig # CLI menu for configuration
    #make nconfig # new CLI menu for configuration
    make xconfig # X-based configuration
    #make oldconfig # using old config from previous kernel version
    # ... or manually edit .config
    # stop here
    # this is useful to configure the kernel
    #msg "Stopping build"
    #return 1
    yes "" | make config
    # build!
    make ${MAKEFLAGS} bzImage modules
    package_linux-morrvick() {
    pkgdesc="The Linux Kernel and modules"
    groups=('base')
    depends=('coreutils' 'linux-firmware' 'module-init-tools>=3.16' 'mkinitcpio>=0.7')
    optdepends=('crda: to set the correct wireless channels of your country')
    provides=('kernel26')
    conflicts=('kernel26')
    replaces=('kernel26')
    backup=("etc/mkinitcpio.d/${pkgname}.preset")
    install=${pkgname}.install
    cd "${srcdir}/linux-${_basekernel}"
    KARCH=x86
    # get kernel version
    _kernver="$(make kernelrelease)"
    mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot}
    make INSTALL_MOD_PATH="${pkgdir}" modules_install
    cp arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgname}"
    # add vmlinux
    install -D -m644 vmlinux "${pkgdir}/usr/src/linux-${_kernver}/vmlinux"
    # install fallback mkinitcpio.conf file and preset file for kernel
    install -D -m644 "${srcdir}/${pkgname}.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset"
    # set correct depmod command for install
    sed \
    -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
    -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
    -i "${startdir}/${pkgname}.install"
    sed \
    -e "s|ALL_kver=.*|ALL_kver=\"/boot/vmlinuz-${pkgname}\"|g" \
    -e "s|default_image=.*|default_image=\"/boot/initramfs-${pkgname}.img\"|g" \
    -e "s|fallback_image=.*|fallback_image=\"/boot/initramfs-${pkgname}-fallback.img\"|g" \
    -i "${pkgdir}/etc/mkinitcpio.d/${pkgname}.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"
    package_linux-headers-morrvick() {
    pkgdesc="Header files and scripts for building modules for linux kernel"
    provides=('kernel26-headers')
    conflicts=('kernel26-headers')
    replaces=('kernel26-headers')
    mkdir -p "${pkgdir}/lib/modules/${_kernver}"
    cd "${pkgdir}/lib/modules/${_kernver}"
    ln -sf ../../../usr/src/linux-${_kernver} build
    cd "${srcdir}/linux-${_basekernel}"
    install -D -m644 Makefile \
    "${pkgdir}/usr/src/linux-${_kernver}/Makefile"
    install -D -m644 kernel/Makefile \
    "${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile"
    install -D -m644 .config \
    "${pkgdir}/usr/src/linux-${_kernver}/.config"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include"
    for i in acpi asm-generic config crypto drm generated linux math-emu \
    media net pcmcia scsi sound trace video xen; do
    cp -a include/${i} "${pkgdir}/usr/src/linux-${_kernver}/include/"
    done
    # copy arch includes for external modules
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/x86"
    cp -a arch/x86/include "${pkgdir}/usr/src/linux-${_kernver}/arch/x86/"
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers "${pkgdir}/usr/src/linux-${_kernver}"
    cp -a scripts "${pkgdir}/usr/src/linux-${_kernver}"
    # fix permissions on scripts dir
    chmod og-w -R "${pkgdir}/usr/src/linux-${_kernver}/scripts"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel"
    cp arch/${KARCH}/Makefile "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
    if [ "${CARCH}" = "i686" ]; then
    cp arch/${KARCH}/Makefile_32.cpu "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
    fi
    cp arch/${KARCH}/kernel/asm-offsets.s "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel/"
    # add headers for lirc package
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video"
    cp drivers/media/video/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/"
    for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102; do
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/${i}"
    cp -a drivers/media/video/${i}/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/${i}"
    done
    # add docbook makefile
    install -D -m644 Documentation/DocBook/Makefile \
    "${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
    # add dm headers
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
    cp drivers/md/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
    # add inotify.h
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/linux"
    cp include/linux/inotify.h "${pkgdir}/usr/src/linux-${_kernver}/include/linux/"
    # add wireless headers
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
    cp net/mac80211/*.h "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/9912
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core"
    cp drivers/media/dvb/dvb-core/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/"
    # and...
    # http://bugs.archlinux.org/task/11194
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/"
    cp include/config/dvb/*.h "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/"
    # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
    # in reference to:
    # http://bugs.archlinux.org/task/13146
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    cp drivers/media/dvb/frontends/lgdt330x.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    cp drivers/media/video/msp3400-driver.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    # add dvb headers
    # in reference to:
    # http://bugs.archlinux.org/task/20402
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-usb"
    cp drivers/media/dvb/dvb-usb/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-usb/"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends"
    cp drivers/media/dvb/frontends/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/common/tuners"
    cp drivers/media/common/tuners/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/common/tuners/"
    # add xfs and shmem for aufs building
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/mm"
    cp fs/xfs/xfs_sb.h "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h"
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p "${pkgdir}"/usr/src/linux-${_kernver}/`echo ${i} | sed 's|/Kconfig.*||'`
    cp ${i} "${pkgdir}/usr/src/linux-${_kernver}/${i}"
    done
    chown -R root.root "${pkgdir}/usr/src/linux-${_kernver}"
    find "${pkgdir}/usr/src/linux-${_kernver}" -type d -exec chmod 755 {} \;
    # strip scripts directory
    find "${pkgdir}/usr/src/linux-${_kernver}/scripts" -type f -perm -u+w 2>/dev/null | while read binary ; do
    case "$(file -bi "${binary}")" in
    *application/x-sharedlib*) # Libraries (.so)
    /usr/bin/strip ${STRIP_SHARED} "${binary}";;
    *application/x-archive*) # Libraries (.a)
    /usr/bin/strip ${STRIP_STATIC} "${binary}";;
    *application/x-executable*) # Binaries
    /usr/bin/strip ${STRIP_BINARIES} "${binary}";;
    esac
    done
    # remove unneeded architectures
    rm -rf "${pkgdir}"/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
    package_linux-docs() {
    pkgdesc="Kernel hackers manual - HTML documentation that comes with the Linux kernel."
    provides=('kernel26-docs')
    conflicts=('kernel26-docs')
    replaces=('kernel26-docs')
    cd "${srcdir}/linux-${_basekernel}"
    mkdir -p "${pkgdir}/usr/src/linux-${_kernver}"
    cp -al Documentation "${pkgdir}/usr/src/linux-${_kernver}"
    find "${pkgdir}" -type f -exec chmod 444 {} \;
    find "${pkgdir}" -type d -exec chmod 755 {} \;
    # remove a file already in linux package
    rm -f "${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
    After the compiling is finished:
    sudo pacman -U linux-morrvick-3.1.1-1-x86_64.pkg.tar.xz
    Password:
    resolving dependencies...
    looking for inter-conflicts...
    :: linux-morrvick and linux are in conflict (kernel26). Remove linux? [y/N] n
    error: unresolvable package conflicts detected
    error: failed to prepare transaction (conflicting dependencies)
    :: linux-morrvick and linux are in conflict (kernel26)
    Any thoughts?

  • Need to compile nvidia driver for a custom kernel [SOLVED]

    I compiled a custom kernel following this wiki page: http://wiki.archlinux.org/index.php/Ker … rom_Source
    I can boot into it just fine.  I now want to compile an nvidia driver for use with it and followed the steps on this wiki page: http://wiki.archlinux.org/index.php/NVI … tom_kernel
    I run into a problem when makepkg trys to compile it.  Here is the output:
    $ cd ~/devel/abs/nvidia/
    $ makepkg -c
    ==> Making package: nvidia-my 190.42-1 x86_64 (Thu Nov 5 17:42:29 EST 2009)
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found NVIDIA-Linux-x86_64-190.42-pkg0.run in build dir
    ==> Validating source files with md5sums...
    NVIDIA-Linux-x86_64-190.42-pkg0.run ... Passed
    ==> Extracting Sources...
    ==> Entering fakeroot environment...
    ==> Starting build()...
    Creating directory NVIDIA-Linux-x86_64-190.42-pkg0
    Verifying archive integrity... OK
    Uncompressing NVIDIA Accelerated Graphics Driver for Linux-x86_64 190.42..................................................................................................................................................
    If you are using a Linux 2.4 kernel, please make sure
    you either have configured kernel sources matching your
    kernel or the correct set of kernel headers installed
    on your system.
    If you are using a Linux 2.6 kernel, please make sure
    you have configured kernel sources matching your kernel
    installed on your system. If you specified a separate
    output directory using either the "KBUILD_OUTPUT" or
    the "O" KBUILD parameter, make sure to specify this
    directory with the SYSOUT environment variable or with
    the equivalent nvidia-installer command line option.
    Depending on where and how the kernel sources (or the
    kernel headers) were installed, you may need to specify
    their location with the SYSSRC environment variable or
    the equivalent nvidia-installer command line option.
    *** Unable to determine the target kernel version. ***
    make: *** [select_makefile] Error 1
    ==> ERROR: Build Failed.
    Aborting...
    The step it's choking on is (from the PKGBUILD), "make SYSSRC=/lib/modules/${_kernver}/build module || return 1"
    What am I doing wrong?
    My PKGBUILD:
    pkgname=nvidia-my
    pkgver=190.42
    _kernver='2.6.32-rc6-MINE'
    pkgrel=1
    pkgdesc="NVIDIA drivers for kernel26."
    arch=('i686' 'x86_64')
    [ "$CARCH" = "i686" ] && ARCH=x86
    [ "$CARCH" = "x86_64" ] && ARCH=x86_64
    url="http://www.nvidia.com/"
    depends=('kernel26>=2.6.31' 'kernel26<2.6.32' "nvidia-utils=${pkgver}")
    conflicts=('nvidia-96xx' 'nvidia-173xx')
    license=('custom')
    install=nvidia.install
    source=("http://download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run")
    md5sums=('f94806feee87de756d14fe3e9bcaf05a')
    [ "$CARCH" = "x86_64" ] && md5sums=('ae431ff849ec01446e6724f9fcfe3bb4')
    build() {
    cd $srcdir
    sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only
    cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0
    cd usr/src/nv/
    ln -s Makefile.kbuild Makefile
    make SYSSRC=/lib/modules/${_kernver}/build module || return 1
    mkdir -p $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/
    install -m644 nvidia.ko $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/
    sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/nvidia.install
    My nvidia.install
    post_install() {
    KERNEL_VERSION='2.6.32-rc6-MINE'
    depmod $KERNEL_VERSION
    post_upgrade() {
    post_install
    rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
    post_remove() {
    KERNEL_VERSION='2.6.32-rc6-MINE'
    depmod $KERNEL_VERSION
    Last edited by graysky (2009-11-07 10:54:33)

    Hello,
    I'm kind of a noob and am trying to get follow the directions from the Nvidia wiki on installing on a custom kernel.  I'm trying to use the abs method to install on kernel26rt version 2.6.33rt.  I followed directions exactly and am getting an error that I didn't find on any other posts.  Can you please take a look?  Here is my terminal:
    [jsadural@jlinux nvidia]$ makepkg -ci
    ==> Making package: nvidia-2633rt 270.30-3 (Wed Mar 30 08:53:08 PDT 2011)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
      -> Downloading NVIDIA-Linux-x86_64-270.30-no-compat32.run...
    --2011-03-30 08:53:08--  ftp://download.nvidia.com/XFree86/Linux … mpat32.run
               => “NVIDIA-Linux-x86_64-270.30-no-compat32.run.part”
    Resolving download.nvidia.com... 69.31.121.43
    Connecting to download.nvidia.com|69.31.121.43|:21... connected.
    Logging in as anonymous ... Logged in!
    ==> SYST ... done.    ==> PWD ... done.
    ==> TYPE I ... done.  ==> CWD (1) /XFree86/Linux-x86_64/270.30 ... done.
    ==> SIZE NVIDIA-Linux-x86_64-270.30-no-compat32.run ... 30037601
    ==> PASV ... done.    ==> RETR NVIDIA-Linux-x86_64-270.30-no-compat32.run ... done.
    Length: 30037601 (29M) (unauthoritative)
    100%[======================================>] 30,037,601   696K/s   in 42s     
    2011-03-30 08:53:50 (696 KB/s) - “NVIDIA-Linux-x86_64-270.30-no-compat32.run.part” saved [30037601]
    ==> Validating source files with md5sums...
        NVIDIA-Linux-x86_64-270.30-no-compat32.run ... Passed
    ==> Extracting Sources...
    ==> Starting build()...
    Creating directory NVIDIA-Linux-x86_64-270.30-no-compat32
    Verifying archive integrity... OK
    Uncompressing NVIDIA Accelerated Graphics Driver for Linux-x86_64 270.30........................................................................................................................
    NVIDIA: calling KBUILD...
    test -e include/generated/autoconf.h -a -e include/config/auto.conf || (    \
        echo;                                \
        echo "  ERROR: Kernel configuration is invalid.";        \
        echo "         include/generated/autoconf.h or include/config/auto.conf are missing.";\
        echo "         Run 'make oldconfig && make prepare' on kernel src to fix it.";    \
        echo;                                \
        /bin/false)
    mkdir -p /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/.tmp_versions ; rm -f /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/.tmp_versions/*
    make -f scripts/Makefile.build obj=/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel
      cc -Wp,-MD,/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/.nv.o.d  -nostdinc -isystem /usr/lib/gcc/x86_64-unknown-linux-gnu/4.5.2/include -I/usr/src/linux-2.6.33-rt/arch/x86/include -Iinclude  -include include/generated/autoconf.h -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -O2 -m64 -mtune=generic -mno-red-zone -mcmodel=kernel -funit-at-a-time -maccumulate-outgoing-args -fstack-protector -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Wframe-larger-than=2048 -fomit-frame-pointer -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fno-dwarf2-cfi-asm -fconserve-stack -I/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel -Wall -MD -Wsign-compare -Wno-cast-qual -Wno-error -D__KERNEL__ -DMODULE -DNVRM -DNV_VERSION_STRING=\"270.30\" -Wno-unused-function -mcmodel=kernel -mno-red-zone -UDEBUG -U_DEBUG -DNDEBUG  -DMODULE -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(nv)"  -D"KBUILD_MODNAME=KBUILD_STR(nvidia)"  -c -o /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.o /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c
    In file included from /usr/src/linux-2.6.33-rt/arch/x86/include/asm/uaccess.h:573:0,
                     from include/linux/poll.h:13,
                     from /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h:84,
                     from /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:13:
    /usr/src/linux-2.6.33-rt/arch/x86/include/asm/uaccess_64.h: In function ‘copy_from_user’:
    /usr/src/linux-2.6.33-rt/arch/x86/include/asm/uaccess_64.h:35:6: warning: comparison between signed and unsigned integer expressions
    In file included from /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:13:0:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h: At top level:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h:251:35: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘nv_spinlock_t’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv-linux.h:1436:5: error: expected specifier-qualifier-list before ‘nv_spinlock_t’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_alloc_file_private’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1993:5: error: implicit declaration of function ‘semaphore_init’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1994:5: error: ‘nv_file_private_t’ has no member named ‘waitqueue’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1995:5: error: implicit declaration of function ‘atomic_spin_lock_init’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:1995:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_kern_poll’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2790:30: error: ‘nv_file_private_t’ has no member named ‘waitqueue’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2793:5: error: implicit declaration of function ‘atomic_spin_lock_irqsave’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2793:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2804:5: error: implicit declaration of function ‘atomic_spin_unlock_irqrestore’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:2804:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_kern_close_registry’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3595:18: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3611:22: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_kern_write_registry’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3703:51: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3710:45: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:3720:9: error: ‘nv_file_private_t’ has no member named ‘off’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_post_event’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4330:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4347:5: error: ‘nv_file_private_t’ has no member named ‘waitqueue’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4348:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c: In function ‘nv_get_event’:
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4362:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4365:9: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    /home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.c:4390:5: error: ‘nv_file_private_t’ has no member named ‘fp_lock’
    make[3]: *** [/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel/nv.o] Error 1
    make[2]: *** [_module_/home/jsadural/devel/abs/nvidia/src/NVIDIA-Linux-x86_64-270.30-no-compat32/kernel] Error 2
    NVIDIA: left KBUILD.
    nvidia.ko failed to build!
    make[1]: *** [module] Error 1
    make: *** [module] Error 2
    ==> ERROR: A failure occurred in build().
        Aborting...
    thanks,
    jason

  • Compiling Sata into Kernel [SOLVED]

    First time compiling a custom kernel. I've gone through the config process about 10 times now but never took the plunge. I did notice, however, that using gconfig I can't get SATA_AHCI to become a 'checkmark' which, I have taken to understand, means it'll be built into the kernel. Do I have to edit the config using vi or is there something I'm not getting/understanding?
    Thanks.
    Last edited by virati (2009-07-22 22:16:42)

    virati wrote:hmm. In looking into that I just realized that gconf is not saving/loading my config when I tell it to. It's flat out ignoring all the changes that I make. This is frustrating... Any idea what's going on?
    I once had this problem of the kernel not building with the configurations that I would choose in the "make menuconfig", and it would always use the /proc/config.gz of the default .config (so it would build as Generic x86_64 instead of AMD64 and all of my other changes that I would do)
    I found that this setting in the General Setup section would allow my new settings from "make menuconfig" to be used:
    CONFIG_IKCONFIG=y
    # CONFIG_IKCONFIG_PROC is not set
    I just set the CONFIG_IKCONFIG_PROC to not be used. (it used to be =y)
    This way the new kernel26NEW package was built with my new settings and not the old config from /proc. All of the new changes that I made in "make menuconfig" were shown in the /usr/src/linux-2.6.30-ARCHNEW/.config file of the new package after it was built. (before I did this it had all of the old generic settings in that same file after selecting AMD64 and other changes)

  • [SOLVED] Macbook 2,1 Intel 945GM: no backlight property custom kernel

    Hi,
    I just finished compiling a custom kernel for my Macbook and for the life of me cannot figure out which option enables backlight control. I'm suspecting it might be CONFIG_FB_BACKLIGHT, but I can't actually find it via 'make menuconfig.' In other words, I can grep it from the raw config, but don't know where it is:
    $ grep -A10 -B10 CONFIG_FB_BACKLIGHT .config
    CONFIG_FB_CFB_IMAGEBLIT=y
    # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
    # CONFIG_FB_SYS_FILLRECT is not set
    # CONFIG_FB_SYS_COPYAREA is not set
    # CONFIG_FB_SYS_IMAGEBLIT is not set
    # CONFIG_FB_FOREIGN_ENDIAN is not set
    # CONFIG_FB_SYS_FOPS is not set
    # CONFIG_FB_WMT_GE_ROPS is not set
    # CONFIG_FB_SVGALIB is not set
    # CONFIG_FB_MACMODES is not set
    [b]# CONFIG_FB_BACKLIGHT is not set[/b]
    # CONFIG_FB_MODE_HELPERS is not set
    # CONFIG_FB_TILEBLITTING is not set
    # Frame buffer hardware drivers
    # CONFIG_FB_CIRRUS is not set
    # CONFIG_FB_PM2 is not set
    # CONFIG_FB_CYBER2000 is not set
    # CONFIG_FB_ARC is not set
    But menuconfig is like this:
    --- Support for frame buffer
    [ ] Enable firmware EDID
    [ ] foreign endianness support --->
    [ ] Video Mode Handling Helpers
    [ ] Tile Blitting Support
    It's hard to reproduce entirely here, but the point is that the config grep returns fb_backlight just above mode helpers/tilebitting, but above those are foreign endianness, and that's not where the backlight setting is.
    The card is the Intel 945GM; on the default Arch kernel I can use xbacklight to adjust brightness. With my custom compiled one, I get "no outputs have backlight property" with xbacklight and, indeed, /sys/class/backlight is empty.
    Would someone kindly tell me which kernel option provides the backlight property for this card?
    Last edited by jwhendy (2011-10-15 16:44:30)

    @byte:
    Thanks for the suggestion, and the link to the current config. I was wondering where I might find that. Not looking so promising so far:
    $ diff --side-by-side default-config custom-config | grep BACKLIGHT
    CONFIG_FB_BACKLIGHT=y | # CONFIG_FB_BACKLIGHT is not set
    CONFIG_FB_NVIDIA_BACKLIGHT=y <
    CONFIG_FB_RIVA_BACKLIGHT=y <
    CONFIG_FB_RADEON_BACKLIGHT=y | # CONFIG_FB_ATY is not set
    CONFIG_FB_ATY128_BACKLIGHT=y | # CONFIG_FB_SIS is not set
    CONFIG_FB_ATY_BACKLIGHT=y | # CONFIG_FB_VOODOO1 is not set
    CONFIG_BACKLIGHT_LCD_SUPPORT=y CONFIG_BACKLIGHT_LCD_SUPPORT=y
    CONFIG_BACKLIGHT_CLASS_DEVICE=y CONFIG_BACKLIGHT_CLASS_DEVICE=y
    CONFIG_BACKLIGHT_GENERIC=m CONFIG_BACKLIGHT_GENERIC=m
    CONFIG_BACKLIGHT_PROGEAR=m | # CONFIG_BACKLIGHT_PROGEAR is not set
    CONFIG_BACKLIGHT_CARILLO_RANCH=m CONFIG_BACKLIGHT_CARILLO_RANCH=m
    CONFIG_BACKLIGHT_MBP_NVIDIA=m | # CONFIG_BACKLIGHT_MBP_NVIDIA is not set
    CONFIG_BACKLIGHT_SAHARA=m | # CONFIG_BACKLIGHT_SAHARA is not set
    CONFIG_BACKLIGHT_WM831X=m | # CONFIG_BACKLIGHT_ADP8860 is not set
    CONFIG_BACKLIGHT_ADP8860=m <
    CONFIG_BACKLIGHT_PCF50633=m <
    CONFIG_HID_PICOLCD_BACKLIGHT=y | # CONFIG_HID_ROCCAT_KONEPLUS is not set
    CONFIG_LEDS_TRIGGER_HEARTBEAT=m | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
    CONFIG_LEDS_TRIGGER_BACKLIGHT=m | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
    CONFIG_DRM_NOUVEAU_BACKLIGHT=y <
    I don't see much there to wonder about. CONFIG_FB_BACKLIGHT only gets triggered if certain drivers are enabled. But I don't have any of those. I'm re-compiling right now with one of them, just for kicks, to see what happens. I have the right LCD backlight options set to match the default. On the ACPI front, we have this:
    ]$ diff --side-by-side ~/def-config .config |grep ACPI
    # Power management and ACPI options # Power management and ACPI options
    CONFIG_ACPI=y CONFIG_ACPI=y
    CONFIG_ACPI_SLEEP=y CONFIG_ACPI_SLEEP=y
    CONFIG_ACPI_PROCFS=y | # CONFIG_ACPI_PROCFS is not set
    CONFIG_ACPI_PROCFS_POWER=y | # CONFIG_ACPI_PROCFS_POWER is not set
    CONFIG_ACPI_POWER_METER=m | # CONFIG_ACPI_POWER_METER is not set
    CONFIG_ACPI_EC_DEBUGFS=m | # CONFIG_ACPI_EC_DEBUGFS is not set
    CONFIG_ACPI_PROC_EVENT=y | # CONFIG_ACPI_PROC_EVENT is not set
    CONFIG_ACPI_AC=m | CONFIG_ACPI_AC=y
    CONFIG_ACPI_BATTERY=m | CONFIG_ACPI_BATTERY=y
    CONFIG_ACPI_BUTTON=m | CONFIG_ACPI_BUTTON=y
    CONFIG_ACPI_VIDEO=m | CONFIG_ACPI_VIDEO=y
    CONFIG_ACPI_FAN=m | CONFIG_ACPI_FAN=y
    CONFIG_ACPI_DOCK=y | # CONFIG_ACPI_DOCK is not set
    CONFIG_ACPI_PROCESSOR=m | CONFIG_ACPI_PROCESSOR=y
    CONFIG_ACPI_IPMI=m <
    CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_HOTPLUG_CPU=y
    CONFIG_ACPI_PROCESSOR_AGGREGATOR=m | # CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
    CONFIG_ACPI_THERMAL=m | CONFIG_ACPI_THERMAL=y
    # CONFIG_ACPI_CUSTOM_DSDT is not set # CONFIG_ACPI_CUSTOM_DSDT is not set
    CONFIG_ACPI_BLACKLIST_YEAR=0 CONFIG_ACPI_BLACKLIST_YEAR=0
    # CONFIG_ACPI_DEBUG is not set # CONFIG_ACPI_DEBUG is not set
    CONFIG_ACPI_PCI_SLOT=m | # CONFIG_ACPI_PCI_SLOT is not set
    CONFIG_ACPI_CONTAINER=m | CONFIG_ACPI_CONTAINER=y
    CONFIG_ACPI_SBS=m | # CONFIG_ACPI_SBS is not set
    CONFIG_ACPI_HED=m | # CONFIG_ACPI_HED is not set
    CONFIG_ACPI_APEI=y | # CONFIG_ACPI_APEI is not set
    CONFIG_ACPI_APEI_GHES=m | # CONFIG_SFI is not set
    CONFIG_ACPI_APEI_EINJ=m <
    CONFIG_ACPI_APEI_ERST_DEBUG=m <
    CONFIG_X86_ACPI_CPUFREQ=m | CONFIG_X86_ACPI_CPUFREQ=y
    CONFIG_X86_POWERNOW_K7_ACPI=y <
    CONFIG_CARDBUS=y | # CONFIG_HOTPLUG_PCI_ACPI is not set
    CONFIG_HOTPLUG_PCI_ACPI=m <
    CONFIG_HOTPLUG_PCI_ACPI_IBM=m <
    CONFIG_PNPACPI=y CONFIG_PNPACPI=y
    CONFIG_BLK_DEV_IDEACPI=y <
    CONFIG_ATA_ACPI=y CONFIG_ATA_ACPI=y
    CONFIG_PATA_ACPI=m | # CONFIG_PATA_ACPI is not set
    # ACPI drivers # ACPI drivers
    # ACPI drivers # ACPI drivers
    CONFIG_ACPI_QUICKSTART=m <
    CONFIG_TC1100_WMI=m | # CONFIG_THINKPAD_ACPI is not set
    CONFIG_COMPAL_LAPTOP=m | # CONFIG_ACPI_WMI is not set
    CONFIG_SONY_LAPTOP=m | # CONFIG_ACPI_ASUS is not set
    CONFIG_IDEAPAD_LAPTOP=m | # CONFIG_ACPI_TOSHIBA is not set
    CONFIG_THINKPAD_ACPI=m | # CONFIG_TOSHIBA_BT_RFKILL is not set
    CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y | # CONFIG_ACPI_CMPC is not set
    # CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set | # CONFIG_INTEL_IPS is not set
    # CONFIG_THINKPAD_ACPI_DEBUG is not set | # CONFIG_IBM_RTL is not set
    # CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set <
    CONFIG_THINKPAD_ACPI_VIDEO=y <
    CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y <
    CONFIG_ACPI_WMI=m <
    CONFIG_ACPI_ASUS=m <
    CONFIG_ACPI_TOSHIBA=m <
    CONFIG_ACPI_CMPC=m <
    Most of that seems about right, and the end stuff is all specific laptop drivers.
    I'll post back when this is done. The only other thing I can think of is the fact that I compiled in i915 and intel_agp vs. having them as modules. Should that make any difference?

  • Can not compile custom kernel

    Hi I'm  trying to compile my own kernel for using fbcondecor and liquorix set of patches so I create a custom pkgbuild for kernel26 based on arch kernel26 pkgbuild from abs/core
    The problem comes when I start compilation it gets aborted without error message, here are the files and the log :
    CUSTOM PKGBUILD FOR KERNEL26
    http://pastebin.com/8X9nmWaU
    CONFIG FOR KERNEL
    http://pastebin.com/A08CXFZ0
    MAKEPKG LOG
    http://pastebin.com/tLs9GnRC
    Also my lscpi output
    00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    00:1a.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
    00:1a.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
    00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
    00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 (rev 03)
    00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03)
    00:1c.4 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 5 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
    00:1d.3 USB Controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
    00:1d.7 USB Controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
    00:1f.0 ISA bridge: Intel Corporation ICH9M LPC Interface Controller (rev 03)
    00:1f.2 SATA controller: Intel Corporation ICH9M/M-E SATA AHCI Controller (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
    00:1f.6 Signal processing controller: Intel Corporation 82801I (ICH9 Family) Thermal Subsystem (rev 03)
    02:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
    03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)
    I know I'm missing something but I don't know what
    For creating the config file I untar the kernel source and run localmodconfig and gconfig for removing what I think I don't need
    Also I'm using the liquorix patches set becuase they allready include the support for fbcondecor
    I am using this pages as reference for creating the config file
    http://zen-kernel.org/tutorials/creatin … figuration
    http://kmuto.jp/debian/hcl/index.rhtmlx
    http://kernel-seeds.org/
    Can someone point me to the right direcction I'll apreciate that a lot ( this  are my first attempts to compile a custom kernel )
    I'm running arch x86_64 uptodate

    Your error is here :
    kernel/sched_bfs.c:3393:1: error: tipos en conflicto para ‘wait_for_completion_interruptible_timeout’
    include/linux/completion.h:84:13: nota: la declaración previa de ‘wait_for_completion_interruptible_timeout’ estaba aquí
    kernel/sched_bfs.c:3398:1: error: tipos en conflicto para ‘wait_for_completion_interruptible_timeout’
    include/linux/completion.h:84:13: nota: la declaración previa de ‘wait_for_completion_interruptible_timeout’ estaba aquí
    kernel/sched_bfs.c:3426:1: error: tipos en conflicto para ‘wait_for_completion_killable_timeout’
    include/linux/completion.h:86:13: nota: la declaración previa de ‘wait_for_completion_killable_timeout’ estaba aquí
    kernel/sched_bfs.c:3431:1: error: tipos en conflicto para ‘wait_for_completion_killable_timeout’
    include/linux/completion.h:86:13: nota: la declaración previa de ‘wait_for_completion_killable_timeout’ estaba aquí
    kernel/sched_bfs.c:3948:5: error: tipos en conflicto para ‘sched_setscheduler’
    include/linux/sched.h:2069:12: nota: la declaración previa de ‘sched_setscheduler’ estaba aquí
    kernel/sched_bfs.c:3954:1: error: tipos en conflicto para ‘sched_setscheduler’
    include/linux/sched.h:2069:12: nota: la declaración previa de ‘sched_setscheduler’ estaba aquí
    kernel/sched_bfs.c:3967:5: error: tipos en conflicto para ‘sched_setscheduler_nocheck’
    include/linux/sched.h:2071:12: nota: la declaración previa de ‘sched_setscheduler_nocheck’ estaba aquí
    As far as I can see it seems that your patches are actually doing something to sched_bfs.c, so it's probably their fault.  eldragon's advice could verify that.

  • Custom kernel 2.6.25 and nvidia

    I have compiled a custom kernel the 'traditional' way, that is, make and make modules_install and now I am having trouble getting the nvidia driver to work
    I usually just install it through pacman, but that doesn't work with the custom kernel.
    So my next step was to follow the wiki.
    I changed the kernel names in the PKGBUILD and nvidia.install that i got from my abs tree, and when I install with makepkg -i -c everything goes well.
    However, when I try to start X again, it crashes and says it cannot find the NVIDIA kernel module. I don't fully understand everything in the PKGBUILD and it is quite possible there is some other line or path that needs to be changed. Please, I am at my wit's end.
    Here are my PKGBUILD and nvidia.install
    # $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
    # Maintainer : Thomas Baechler <[email protected]>
    pkgname=nvidia-DarkTower
    pkgver=169.12
    _kernver='2.6.25-DarkTower'
    pkgrel=2
    pkgdesc="NVIDIA drivers for kernel26."
    arch=('i686' 'x86_64')
    [ "$CARCH" = "i686" ] && ARCH=x86
    [ "$CARCH" = "x86_64" ] && ARCH=x86_64
    url="http://www.nvidia.com/"
    depends=('kernel26>=2.6.24.3-4' 'kernel26<=2.6.25-0' 'nvidia-utils')
    conflicts=('nvidia-96xx' 'nvidia-71xx' 'nvidia-legacy')
    license=('custom')
    install=nvidia.install
    source=(http://us.download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run)
    md5sums=('e7aaca79c846e34cfe8111040bfee2d0')
    [ "$CARCH" = "x86_64" ] && md5sums=('843a1e8bc1923ba2e4b60f6fab31ad3b')
    build()
    # Extract
    cd $startdir/src/
    sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only
    cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0
    # Any extra patches are applied in here...
    cd usr/src/nv/
    ln -s Makefile.kbuild Makefile
    make SYSSRC=/lib/modules/${_kernver}/build module
    # install kernel module
    mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
    install -m644 nvidia.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
    sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install
    # arg 1: the new package version
    post_install() {
    KERNEL_VERSION='2.6.25-DarkTower'
    depmod -v $KERNEL_VERSION > /dev/null 2>&1
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    post_install $1
    rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
    # arg 1: the old package version
    post_remove() {
    KERNEL_VERSION='2.6.25-DarkTower'
    depmod -v $KERNEL_VERSION > /dev/null 2>&1
    op=$1
    shift
    $op $*
    Last edited by ManOnONeWheel (2008-05-07 00:41:50)

    I don't use Arch package for nvidia as script is unable to install modules on several kernels at the same time and I want to boot to X irrelevant of kernel loaded. I never had any problems with custom kernels 2.6.25 and nvidia 169 or 173
    current status:
    $ find /lib/modules/ -name nvidia.ko
    /lib/modules/2.6.25-zen0-GIGUE/kernel/drivers/video/nvidia.ko
    /lib/modules/2.6.25-zen1-preview3-FADO/kernel/drivers/video/nvidia.ko
    /lib/modules/2.6.25-zen1-SARABANDE/kernel/drivers/video/nvidia.ko
    /lib/modules/2.6.25-zen1-GAVOTTE/kernel/drivers/video/nvidia.ko
    all boots fine, none crash/freeze. Never patched 169 or 173
    Well, it looks like the 169 installer would always put nvidia.ko in the /lib/modules/2.6.24 directory, no matter if i was currentlyusing a different kernel or not so im not sure what is going on there.
    must be some quirk on your box. Have not seen this.
    Last edited by broch (2008-05-08 01:43:13)

  • How to create a custom kernel with initrd and ARCH patches

    Hi,
    I like the default kernel because everything seems to work well and I think the Arch kernel includes patches I need (such as the mactel patch). But some options that i would like to be enabled are not. in fact i would like to use powertop but i can't because it needs the CONFIG_TIMER_STATS option.
    What I would like is a kernel based on the arch kernel but with a different config file. Nothing more.
    if i look at the solution on the Wiki, I see that I have to add all patches the standard kernel have ... Moreover there is no initrd creation. i think i will need it if I use the Arch kernel configuration.
    And if i use the kernel26 PKGBUILD, I must change the package name in order to keep my current kernel. It's easy to do in the PKGBUILD but much more complicated to do it in the kernel26.install file beacuse I have to change the filenames in /boot and I do not want to replace the kernel26 files.
    So do you have any ideas how to compile my custom kernel ? Is there a better solution ?
    Thanks.
    Mildred.
    Last edited by mildred (2007-07-03 01:46:33)

    tomk wrote:It's possible I'm missing something here, but I don't understand what you're worried about. If I understand correctly, you now have a PKGBUILD and associated files for kernel26mildred (or whatever you've decided to call it). Why do you think you would have to change the files again when kernel26 is updated?
    don't the patches change from version to version?
    anyways, i was bored so i wrote a little script... edit the configuration variables at the top and it'll do the work for you. just put it in /var/abs/kernels or wherever you have the kernel26/ at, chmod +x scriptname, and run.
    if you're in /var/abs/kernels you'll probably have to run as root.
    from my testing, it seems to be all working (looking at resulting files and no errors so far from makepkg); but i'm still building my test kernel with it.
    #!/bin/bash
    # Author: kano <[email protected]>
    # Configuration #
    appendname="-custom1" # Name to append to kernel package
    BUILD=0 # Build package when done? No = 0; Yes = 1
    #MAKEPKGOPT="" # Uncomment if you're building after you make; Add any options you want passed to makepkg (can be nothing)
    # Work starts here; shouldn't have to edit anything below #
    mkdir kernel26${appendname}/
    cp kernel26/* kernel26${appendname}/
    regen_md5sum() {
    if [ ${file} != 'PKGBUILD' ]; then
    echo "Regenerating md5sum for ${file}"
    cat kernel26${appendname}/PKGBUILD \
    | sed "s/'`md5sum kernel26/${file} | awk '{ print $1 }'`'/'`md5sum kernel26${appendname}/${file} | awk '{ print $1 }'`'/;" \
    > PKGBUILD.tmp
    mv PKGBUILD.tmp kernel26${appendname}/PKGBUILD
    fi
    for file in "PKGBUILD" "kernel26.preset" "kernel26.install"; do
    echo "Editing ${file}"
    cat kernel26/${file} | \
    sed "s/kernel26/kernel26${appendname}/g" \
    | sed "s/vmlinuz26/vmlinuz26${appendname}/g" \
    | sed "s/kconfig26/kconfig26${appendname}/g" \
    | sed "s/System.map26/System.map26${appendname}/g" \
    > kernel26${appendname}/${file}
    # Regenerate md5sum
    regen_md5sum
    done
    for file in "config" "config.x86_64"; do
    echo "Editing ${file}"
    cat kernel26/${file} | \
    sed "s/CONFIG_LOCALVERSION=\"-ARCH\"/CONFIG_LOCALVERSION=\"-ARCH${appendname}\"/" \
    > kernel26${appendname}/${file}
    # Regenerate md5sum
    regen_md5sum
    done
    mv kernel26${appendname}/mkinitcpio-kernel26.conf kernel26${appendname}/mkinitcpio-kernel26${appendname}.conf
    mv kernel26${appendname}/kernel26.install kernel26${appendname}/kernel26${appendname}.install
    mv kernel26${appendname}/kernel26.preset kernel26${appendname}/kernel26${appendname}.preset
    # Add make menuconfig to PKGBUILD
    cat kernel26${appendname}/PKGBUILD | \
    sed 's/# load configuration/\n # configure kernel before build\n make menuconfig\n\n # load configuration/;' \
    > PKGBUILD.tmp
    mv PKGBUILD.tmp kernel26${appendname}/PKGBUILD
    echo "Custom kernel pkgbuild created."
    # To build or to not to build?
    if [ ${BUILD} -eq 1 ]; then
    cd kernel26${appendname}
    makepkg ${MAKEPKGOPT}
    fi

  • Compile my own kernel?

    Hi!
    I wan't to edit and compile my own kernel, so I got even more structure on my machine - and I hope to get a little more performance.
    How do I edit and Compile a custom kernel?
    [EDIT] And maybe how I make all my own-compiled programs to be compiled to a Pentium4 processor As i could when I was a Gentoo user

    Kris;
    There is a wiki for custom kernel generation.
    Basically, you can use ABS to obtain the basic kernel  and its accompanying patches and config file.  ABS is  Arch Build System which somewhat automates the making of packages, including custom kernels.
    Just run abs in CL and find the download in /var/abs/kernels.
    The kernel you desire to customize is found therein.
    You customize it by modifying the kernelconfig and setup PKGBUILD file.
    Run "makepkg" on the PKGBUILD and then run pacman -A (name of custom kernel.pkg.tar.gz).  If using lilo run/sbin/lilo before reboot.
    The steps are outlined in the wikis.
    Best of luck!!!

  • Optimizing system for best performance/stability and a custom kernel

    I have ArchLinux running on a MacBook 4.1 (early 2008), and it's running very well so far. But I would like to optimize it for best performance and stability (but not at the cost of losing 'graphical interface' quality). I want to compile a custom kernel, and I actually did once, but didn't do it well (and removed it), so I need some help from experts to tell me what should I disable or enable when compiling a custom kernel.
    I will post dmesg and lspci (and rc.conf) here, but if you need any other information, please tell me.
    Thanks.
    Dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.4-2-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 (GCC) ) #1 SMP PREEMPT Sun Jun 24 18:59:47 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=98afbd56-6ae5-415e-9710-73b8b4ba946c ro quiet add_efi_memmap loglevel=3 console=tty1 splash=silent,fadein,fadeout,theme:arch-banner-icons
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000007dd31000 (usable)
    [ 0.000000] BIOS-e820: 000000007dd31000 - 000000007df32000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007df32000 - 000000007dfe5000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007dfe5000 - 000000007dfe7000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007dfe7000 - 000000007eec3000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eec3000 - 000000007eec5000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007eec5000 - 000000007eec8000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eec8000 - 000000007eecb000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007eecb000 - 000000007eecc000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eecc000 - 000000007eedf000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000007eedf000 - 000000007eef9000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007eef9000 - 000000007eeff000 (reserved)
    [ 0.000000] BIOS-e820: 000000007eeff000 - 000000007ef00000 (ACPI data)
    [ 0.000000] BIOS-e820: 000000007ef00000 - 0000000080000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed14000 - 00000000fed1a000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ffe00000 - 0000000100000000 (reserved)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Apple Inc. MacBook4,1/Mac-F22788A9, BIOS MB41.88Z.00C1.B00.0802091535 02/09/08
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x7dd31 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFE00000 mask FFFE00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 07F000000 mask FFF000000 uncachable
    [ 0.000000] 3 base 07EF00000 mask FFFF00000 uncachable
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-000000007dd31000
    [ 0.000000] 0000000000 - 007dc00000 page 2M
    [ 0.000000] 007dc00000 - 007dd31000 page 4k
    [ 0.000000] kernel direct mapping tables up to 7dd31000 @ 1fffc000-20000000
    [ 0.000000] RAMDISK: 37492000 - 37a41000
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
    [ 0.000000] ACPI: XSDT 000000007eeee1c0 00084 (v01 APPLE Apple00 000000C1 01000013)
    [ 0.000000] ACPI: FACP 000000007eeec000 000F4 (v03 APPLE Apple00 000000C1 Loki 0000005F)
    [ 0.000000] ACPI: DSDT 000000007eee1000 045C6 (v01 APPLE MacBook 00040001 INTL 20061109)
    [ 0.000000] ACPI: FACS 000000007eecc000 00040
    [ 0.000000] ACPI: HPET 000000007eeeb000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: APIC 000000007eeea000 00068 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: MCFG 000000007eee9000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: ASF! 000000007eee8000 000A5 (v32 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: SBST 000000007eee7000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: ECDT 000000007eee6000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: SSDT 000000007eec7000 004DC (v01 APPLE CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eec6000 0025F (v01 APPLE Cpu0Tst 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eec5000 000A6 (v01 APPLE Cpu1Tst 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eee0000 00544 (v01 SataRe SataPri 00001000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 000000007eedf000 00477 (v01 SataRe SataSec 00001000 INTL 20061109)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000007dd31000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000007dd31000
    [ 0.000000] NODE_DATA [000000007dd2d000 - 000000007dd30fff]
    [ 0.000000] [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007b400000-ffff88007d3fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal empty
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x0007dd31
    [ 0.000000] On node 0 totalpages: 515264
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3914 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 7989 pages used for memmap
    [ 0.000000] DMA32 zone: 503292 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:70000000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88007da00000 s82880 r8192 d23616 u1048576
    [ 0.000000] pcpu-alloc: s82880 r8192 d23616 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 507206
    [ 0.000000] Policy zone: DMA32
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=98afbd56-6ae5-415e-9710-73b8b4ba946c ro quiet add_efi_memmap loglevel=3 console=tty1 splash=silent,fadein,fadeout,theme:arch-banner-icons
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 2011044k/2061508k available (4538k kernel code, 452k absent, 50012k reserved, 4308k data, 740k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty1] enabled
    [ 0.000000] allocated 8388608 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration failed
    [ 0.000000] TSC: PIT calibration matches HPET. 2 loops
    [ 0.000000] Detected 2393.995 MHz processor.
    [ 0.010005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.48 BogoMIPS (lpj=7979983)
    [ 0.010013] pid_max: default: 32768 minimum: 301
    [ 0.010061] Security Framework initialized
    [ 0.010069] AppArmor: AppArmor disabled by boot time parameter
    [ 0.010381] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.011643] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.012201] Mount-cache hash table entries: 256
    [ 0.012567] Initializing cgroup subsys cpuacct
    [ 0.012573] Initializing cgroup subsys memory
    [ 0.012588] Initializing cgroup subsys devices
    [ 0.012592] Initializing cgroup subsys freezer
    [ 0.012595] Initializing cgroup subsys net_cls
    [ 0.012599] Initializing cgroup subsys blkio
    [ 0.012653] CPU: Physical Processor ID: 0
    [ 0.012656] CPU: Processor Core ID: 0
    [ 0.012660] mce: CPU supports 6 MCE banks
    [ 0.012673] CPU0: Thermal monitoring enabled (TM2)
    [ 0.012679] using mwait in idle threads.
    [ 0.015816] ACPI: Core revision 20120320
    [ 0.021231] ftrace: allocating 17820 entries in 70 pages
    [ 0.030546] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.064790] CPU0: Intel(R) Core(TM)2 Duo CPU T8300 @ 2.40GHz stepping 06
    [ 0.066663] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.066663] ... version: 2
    [ 0.066663] ... bit width: 40
    [ 0.066663] ... generic registers: 2
    [ 0.066663] ... value mask: 000000ffffffffff
    [ 0.066663] ... max period: 000000007fffffff
    [ 0.066663] ... fixed-purpose events: 3
    [ 0.066663] ... event mask: 0000000700000003
    [ 0.083458] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.103350] Booting Node 0, Processors #1 Ok.
    [ 0.116508] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.116575] Brought up 2 CPUs
    [ 0.116579] Total of 2 processors activated (9579.97 BogoMIPS).
    [ 0.120053] devtmpfs: initialized
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7dd31000-0x7df31fff] (2101248 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7dfe5000-0x7dfe6fff] (8192 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7eec3000-0x7eec4fff] (8192 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7eec8000-0x7eecafff] (12288 bytes)
    [ 0.122018] PM: Registering ACPI NVS region [mem 0x7eecc000-0x7eedefff] (77824 bytes)
    [ 0.123629] NET: Registered protocol family 16
    [ 0.123872] ACPI: bus type pci registered
    [ 0.123988] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xf0000000-0xffffffff] (base 0xf0000000)
    [ 0.123995] PCI: MMCONFIG at [mem 0xf0000000-0xffffffff] reserved in E820
    [ 0.124001] PCI: MMCONFIG for 0000 [bus00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000) (size reduced!)
    [ 0.153700] PCI: Using configuration type 1 for base access
    [ 0.153895] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.153899] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.153901] mtrr: corrected configuration.
    [ 0.154568] bio: create slab <bio-0> at 0
    [ 0.154568] ACPI: Added _OSI(Module Device)
    [ 0.154568] ACPI: Added _OSI(Processor Device)
    [ 0.154568] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.154568] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.154919] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.159179] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.160245] ACPI: SSDT 000000007eecaa98 00340 (v01 APPLE Cpu0Ist 00003000 INTL 20061109)
    [ 0.160625] ACPI: Dynamic OEM Table Load:
    [ 0.160630] ACPI: SSDT (null) 00340 (v01 APPLE Cpu0Ist 00003000 INTL 20061109)
    [ 0.160795] ACPI: SSDT 000000007eec8c18 002AD (v01 APPLE Cpu0Cst 00003001 INTL 20061109)
    [ 0.161153] ACPI: Dynamic OEM Table Load:
    [ 0.161158] ACPI: SSDT (null) 002AD (v01 APPLE Cpu0Cst 00003001 INTL 20061109)
    [ 0.161186] ACPI: SSDT 000000007eec9f18 000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109)
    [ 0.161186] ACPI: Dynamic OEM Table Load:
    [ 0.161186] ACPI: SSDT (null) 000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109)
    [ 0.161186] ACPI: SSDT 000000007eec8f18 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109)
    [ 0.161187] ACPI: Dynamic OEM Table Load:
    [ 0.161192] ACPI: SSDT (null) 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109)
    [ 0.161220] ACPI: Interpreter enabled
    [ 0.161220] ACPI: (supports S0 S3 S4 S5)
    [ 0.161220] ACPI: Using IOAPIC for interrupt routing
    [ 0.173742] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.173981] ACPI: No dock devices found.
    [ 0.173988] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.174581] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.175426] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.175431] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.175436] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.175443] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xfebfffff]
    [ 0.175505] PCI host bridge to bus 0000:00
    [ 0.175510] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.175514] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.175518] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.175523] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
    [ 0.175539] pci 0000:00:00.0: [8086:2a00] type 00 class 0x060000
    [ 0.175610] pci 0000:00:02.0: [8086:2a02] type 00 class 0x030000
    [ 0.175631] pci 0000:00:02.0: reg 10: [mem 0x90100000-0x901fffff 64bit]
    [ 0.175645] pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff 64bit pref]
    [ 0.175655] pci 0000:00:02.0: reg 20: [io 0x6110-0x6117]
    [ 0.175712] pci 0000:00:02.1: [8086:2a03] type 00 class 0x038000
    [ 0.175730] pci 0000:00:02.1: reg 10: [mem 0x90200000-0x902fffff 64bit]
    [ 0.175849] pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
    [ 0.175917] pci 0000:00:1a.0: reg 20: [io 0x60c0-0x60df]
    [ 0.175971] pci 0000:00:1a.1: [8086:2835] type 00 class 0x0c0300
    [ 0.176038] pci 0000:00:1a.1: reg 20: [io 0x60a0-0x60bf]
    [ 0.176110] pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
    [ 0.176140] pci 0000:00:1a.7: reg 10: [mem 0x90704c00-0x90704fff]
    [ 0.176140] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
    [ 0.176140] pci 0000:00:1b.0: reg 10: [mem 0x90700000-0x90703fff 64bit]
    [ 0.176140] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
    [ 0.176140] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1c.4: [8086:2847] type 01 class 0x060400
    [ 0.176140] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1c.5: [8086:2849] type 01 class 0x060400
    [ 0.176140] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
    [ 0.176140] pci 0000:00:1d.0: reg 20: [io 0x6080-0x609f]
    [ 0.176140] pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
    [ 0.176140] pci 0000:00:1d.1: reg 20: [io 0x6060-0x607f]
    [ 0.176140] pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
    [ 0.176140] pci 0000:00:1d.2: reg 20: [io 0x6040-0x605f]
    [ 0.176140] pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
    [ 0.176140] pci 0000:00:1d.7: reg 10: [mem 0x90704800-0x90704bff]
    [ 0.176140] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.176140] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.176140] pci 0000:00:1f.0: [8086:2815] type 00 class 0x060100
    [ 0.176140] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
    [ 0.176140] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 1640 (mask 000f)
    [ 0.176140] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 0300 (mask 001f)
    [ 0.176140] pci 0000:00:1f.1: [8086:2850] type 00 class 0x01018f
    [ 0.176140] pci 0000:00:1f.1: reg 10: [io 0x6108-0x610f]
    [ 0.176140] pci 0000:00:1f.1: reg 14: [io 0x6124-0x6127]
    [ 0.176140] pci 0000:00:1f.1: reg 18: [io 0x6100-0x6107]
    [ 0.176140] pci 0000:00:1f.1: reg 1c: [io 0x6120-0x6123]
    [ 0.176140] pci 0000:00:1f.1: reg 20: [io 0x60e0-0x60ef]
    [ 0.176140] pci 0000:00:1f.2: [8086:2828] type 00 class 0x01018f
    [ 0.176140] pci 0000:00:1f.2: reg 10: [io 0x60f8-0x60ff]
    [ 0.176140] pci 0000:00:1f.2: reg 14: [io 0x611c-0x611f]
    [ 0.176140] pci 0000:00:1f.2: reg 18: [io 0x60f0-0x60f7]
    [ 0.176140] pci 0000:00:1f.2: reg 1c: [io 0x6118-0x611b]
    [ 0.176140] pci 0000:00:1f.2: reg 20: [io 0x6020-0x602f]
    [ 0.176140] pci 0000:00:1f.2: reg 24: [io 0x4000-0x400f]
    [ 0.176140] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.176140] pci 0000:00:1f.3: [8086:283e] type 00 class 0x0c0500
    [ 0.176140] pci 0000:00:1f.3: reg 10: [mem 0x90705000-0x907050ff]
    [ 0.176140] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
    [ 0.176140] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.176140] pci 0000:00:1c.0: bridge window [mem 0x90600000-0x906fffff]
    [ 0.176140] pci 0000:02:00.0: [14e4:4328] type 00 class 0x028000
    [ 0.176140] pci 0000:02:00.0: reg 10: [mem 0x90500000-0x90503fff 64bit]
    [ 0.176140] pci 0000:02:00.0: reg 18: [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.176140] pci 0000:02:00.0: supports D1 D2
    [ 0.176140] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.183347] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [ 0.183358] pci 0000:00:1c.4: bridge window [mem 0x90500000-0x905fffff]
    [ 0.183369] pci 0000:00:1c.4: bridge window [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.183595] pci 0000:03:00.0: [11ab:436a] type 00 class 0x020000
    [ 0.183741] pci 0000:03:00.0: reg 10: [mem 0x90400000-0x90403fff 64bit]
    [ 0.183826] pci 0000:03:00.0: reg 18: [io 0x5000-0x50ff]
    [ 0.184121] pci 0000:03:00.0: reg 30: [mem 0xfffe0000-0xffffffff pref]
    [ 0.184581] pci 0000:03:00.0: supports D1 D2
    [ 0.184585] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.184821] pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    [ 0.184828] pci 0000:00:1c.5: bridge window [io 0x5000-0x5fff]
    [ 0.184836] pci 0000:00:1c.5: bridge window [mem 0x90400000-0x904fffff]
    [ 0.184905] pci 0000:04:03.0: [11c1:5811] type 00 class 0x0c0010
    [ 0.184934] pci 0000:04:03.0: reg 10: [mem 0x90300000-0x90300fff]
    [ 0.185056] pci 0000:04:03.0: supports D1 D2
    [ 0.185060] pci 0000:04:03.0: PME# supported from D0 D1 D2 D3hot
    [ 0.185137] pci 0000:00:1e.0: PCI bridge to [bus 04-04] (subtractive decode)
    [ 0.185148] pci 0000:00:1e.0: bridge window [mem 0x90300000-0x903fffff]
    [ 0.185160] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.185165] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.185169] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.185174] pci 0000:00:1e.0: bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
    [ 0.185211] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.185419] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    [ 0.185489] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.185588] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
    [ 0.185829] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.186233] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 0.193405] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.193487] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *7 11 12 14 15)
    [ 0.193565] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    [ 0.193642] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.193720] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    [ 0.193797] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *9
    [ 0.193874] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.193957] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.196686] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.196707] vgaarb: loaded
    [ 0.196709] vgaarb: bridge control possible 0000:00:02.0
    [ 0.196788] PCI: Using ACPI for IRQ routing
    [ 0.197237] PCI: pci_cache_line_size set to 64 bytes
    [ 0.197407] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    [ 0.197411] reserve RAM buffer: 000000007dd31000 - 000000007fffffff
    [ 0.197573] NetLabel: Initializing
    [ 0.197576] NetLabel: domain hash size = 128
    [ 0.197579] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.197601] NetLabel: unlabeled traffic allowed by default
    [ 0.197632] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.197640] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.197648] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.210013] Switching to clocksource hpet
    [ 0.222129] pnp: PnP ACPI init
    [ 0.222158] ACPI: bus type pnp registered
    [ 0.222675] pnp 00:00: [bus 00-ff]
    [ 0.222680] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.222684] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.222688] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.222692] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.222696] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.222700] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.222703] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.222707] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.222711] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.222715] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.222718] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.222723] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.222726] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.222735] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.222739] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.222743] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.222746] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.222750] pnp 00:00: [mem 0x80000000-0xfebfffff window]
    [ 0.222859] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.222989] pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
    [ 0.222993] pnp 00:01: [mem 0xfed14000-0xfed17fff]
    [ 0.222996] pnp 00:01: [mem 0xfed18000-0xfed18fff]
    [ 0.223000] pnp 00:01: [mem 0xfed19000-0xfed19fff]
    [ 0.223003] pnp 00:01: [mem 0xf0000000-0xf3ffffff]
    [ 0.223006] pnp 00:01: [mem 0xfed20000-0xfed3ffff]
    [ 0.223010] pnp 00:01: [mem 0xfed45000-0xfed8ffff]
    [ 0.223109] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.223115] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.223119] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.223124] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.223129] system 00:01: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.223134] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.223138] system 00:01: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.223145] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.223455] pnp 00:02: [io 0x0300-0x031f]
    [ 0.223473] pnp 00:02: [irq 6]
    [ 0.223541] pnp 00:02: Plug and Play ACPI device, IDs APP0001 (active)
    [ 0.223606] pnp 00:03: [io 0x0000-0x001f]
    [ 0.223610] pnp 00:03: [io 0x0081-0x0091]
    [ 0.223614] pnp 00:03: [io 0x0093-0x009f]
    [ 0.223617] pnp 00:03: [io 0x00c0-0x00df]
    [ 0.223621] pnp 00:03: [dma 4]
    [ 0.223695] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.223710] pnp 00:04: [mem 0xff000000-0xffffffff]
    [ 0.223778] pnp 00:04: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.223883] pnp 00:05: [irq 0 disabled]
    [ 0.223893] pnp 00:05: [irq 8]
    [ 0.223897] pnp 00:05: [mem 0xfed00000-0xfed003ff]
    [ 0.224002] system 00:05: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.224009] system 00:05: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.224028] pnp 00:06: [io 0x00f0]
    [ 0.224038] pnp 00:06: [irq 13]
    [ 0.224112] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.224132] pnp 00:07: [io 0x002e-0x002f]
    [ 0.224136] pnp 00:07: [io 0x004e-0x004f]
    [ 0.224139] pnp 00:07: [io 0x0061]
    [ 0.224142] pnp 00:07: [io 0x0063]
    [ 0.224145] pnp 00:07: [io 0x0065]
    [ 0.224149] pnp 00:07: [io 0x0067]
    [ 0.224151] pnp 00:07: [io 0x0070]
    [ 0.224154] pnp 00:07: [io 0x0080]
    [ 0.224157] pnp 00:07: [io 0x0092]
    [ 0.224161] pnp 00:07: [io 0x00b2-0x00b3]
    [ 0.224164] pnp 00:07: [io 0x0680-0x069f]
    [ 0.224167] pnp 00:07: [io 0x0800-0x080f]
    [ 0.224170] pnp 00:07: [io 0x0810-0x0817]
    [ 0.224173] pnp 00:07: [io 0x0400-0x047f]
    [ 0.224177] pnp 00:07: [io 0x0500-0x053f]
    [ 0.224180] pnp 00:07: [io 0x1640-0x164f]
    [ 0.224302] system 00:07: [io 0x0680-0x069f] has been reserved
    [ 0.224307] system 00:07: [io 0x0800-0x080f] has been reserved
    [ 0.224312] system 00:07: [io 0x0810-0x0817] has been reserved
    [ 0.224316] system 00:07: [io 0x0400-0x047f] has been reserved
    [ 0.224320] system 00:07: [io 0x0500-0x053f] has been reserved
    [ 0.224325] system 00:07: [io 0x1640-0x164f] has been reserved
    [ 0.224331] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.224346] pnp 00:08: [io 0x0070-0x0077]
    [ 0.224417] pnp 00:08: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.228737] pnp: PnP ACPI: found 9 devices
    [ 0.228741] ACPI: ACPI bus type pnp unregistered
    [ 0.237540] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 0.237582] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01-01] add_size 1000
    [ 0.237590] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01-01] add_size 200000
    [ 0.237607] pci 0000:00:1c.4: bridge window [io 0x1000-0x0fff] to [bus 02-02] add_size 1000
    [ 0.237623] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x001fffff pref] to [bus 03-03] add_size 200000
    [ 0.237646] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.237652] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x001fffff pref] get_res_add_size add_size 200000
    [ 0.237657] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.237662] pci 0000:00:1c.4: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.237672] pci 0000:00:1c.0: BAR 15: assigned [mem 0x90800000-0x909fffff 64bit pref]
    [ 0.237678] pci 0000:00:1c.5: BAR 15: assigned [mem 0x90a00000-0x90cfffff pref]
    [ 0.237684] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
    [ 0.237689] pci 0000:00:1c.4: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.237694] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.237701] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
    [ 0.237710] pci 0000:00:1c.0: bridge window [mem 0x90600000-0x906fffff]
    [ 0.237718] pci 0000:00:1c.0: bridge window [mem 0x90800000-0x909fffff 64bit pref]
    [ 0.237730] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [ 0.237736] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.237746] pci 0000:00:1c.4: bridge window [mem 0x90500000-0x905fffff]
    [ 0.237754] pci 0000:00:1c.4: bridge window [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.237767] pci 0000:03:00.0: BAR 6: assigned [mem 0x90a00000-0x90a1ffff pref]
    [ 0.237772] pci 0000:00:1c.5: PCI bridge to [bus 03-03]
    [ 0.237777] pci 0000:00:1c.5: bridge window [io 0x5000-0x5fff]
    [ 0.237787] pci 0000:00:1c.5: bridge window [mem 0x90400000-0x904fffff]
    [ 0.237795] pci 0000:00:1c.5: bridge window [mem 0x90a00000-0x90cfffff pref]
    [ 0.237807] pci 0000:00:1e.0: PCI bridge to [bus 04-04]
    [ 0.237816] pci 0000:00:1e.0: bridge window [mem 0x90300000-0x903fffff]
    [ 0.237837] pci 0000:00:1c.0: enabling device (0000 -> 0003)
    [ 0.237918] pci 0000:00:1e.0: power state changed by ACPI to D0
    [ 0.237925] pci 0000:00:1e.0: power state changed by ACPI to D0
    [ 0.237934] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.237942] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.237946] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.237950] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.237954] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
    [ 0.237959] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
    [ 0.237963] pci_bus 0000:01: resource 1 [mem 0x90600000-0x906fffff]
    [ 0.237967] pci_bus 0000:01: resource 2 [mem 0x90800000-0x909fffff 64bit pref]
    [ 0.237972] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 0.237976] pci_bus 0000:02: resource 1 [mem 0x90500000-0x905fffff]
    [ 0.237980] pci_bus 0000:02: resource 2 [mem 0x90000000-0x900fffff 64bit pref]
    [ 0.237984] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
    [ 0.237988] pci_bus 0000:03: resource 1 [mem 0x90400000-0x904fffff]
    [ 0.237992] pci_bus 0000:03: resource 2 [mem 0x90a00000-0x90cfffff pref]
    [ 0.237997] pci_bus 0000:04: resource 1 [mem 0x90300000-0x903fffff]
    [ 0.238001] pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    [ 0.238005] pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    [ 0.238009] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.238013] pci_bus 0000:04: resource 7 [mem 0x80000000-0xfebfffff]
    [ 0.238088] NET: Registered protocol family 2
    [ 0.238250] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    [ 0.239170] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    [ 0.241419] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.241995] TCP: Hash tables configured (established 262144 bind 65536)
    [ 0.241999] TCP: reno registered
    [ 0.242015] UDP hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.242042] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    [ 0.242207] NET: Registered protocol family 1
    [ 0.242239] pci 0000:00:02.0: Boot video device
    [ 0.242578] PCI: CLS mismatch (256 != 64), using 64 bytes
    [ 0.242662] Unpacking initramfs...
    [ 0.452648] Freeing initrd memory: 5820k freed
    [ 0.456693] audit: initializing netlink socket (disabled)
    [ 0.456719] type=2000 audit(1340724146.456:1): initialized
    [ 0.457302] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.460514] VFS: Disk quotas dquot_6.5.2
    [ 0.460597] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.460751] msgmni has been set to 3939
    [ 0.461070] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.461121] io scheduler noop registered
    [ 0.461125] io scheduler deadline registered
    [ 0.461224] io scheduler cfq registered (default)
    [ 0.461477] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.461710] pcieport 0000:00:1c.4: irq 41 for MSI/MSI-X
    [ 0.461950] pcieport 0000:00:1c.5: irq 42 for MSI/MSI-X
    [ 0.462157] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.462166] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.462198] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 0.462203] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.462210] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 0.462242] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
    [ 0.462246] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.462253] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
    [ 0.462369] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.462374] vesafb: scrolling: redraw
    [ 0.462379] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.464035] vesafb: framebuffer at 0x80000000, mapped to 0xffffc90004980000, using 3072k, total 3072k
    [ 0.508030] Console: switching to colour frame buffer device 128x48
    [ 0.551844] fb0: VESA VGA frame buffer device
    [ 0.551863] efifb: dmi detected MacBook4,1 - framebuffer at 0x80000000 (1024x768, stride 4096)
    [ 0.551868] intel_idle: does not run on family 6 model 23
    [ 0.551930] GHES: HEST is not enabled!
    [ 0.552035] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.552762] Linux agpgart interface v0.103
    [ 0.552879] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.553759] i8042: No controller found
    [ 0.553878] mousedev: PS/2 mouse device common for all mice
    [ 0.553966] rtc_cmos 00:08: RTC can wake from S4
    [ 0.554165] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
    [ 0.554204] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.554221] cpuidle: using governor ladder
    [ 0.554225] cpuidle: using governor menu
    [ 0.554454] TCP: cubic registered
    [ 0.554641] NET: Registered protocol family 10
    [ 0.554976] NET: Registered protocol family 17
    [ 0.554983] Registering the dns_resolver key type
    [ 0.555206] PM: Hibernation image not present or could not be loaded.
    [ 0.555216] registered taskstats version 1
    [ 0.556175] rtc_cmos 00:08: setting system clock to 2012-06-26 15:22:26 UTC (1340724146)
    [ 0.556299] Initializing network drop monitor service
    [ 0.558944] Freeing unused kernel memory: 740k freed
    [ 0.559290] Write protecting the kernel read-only data: 8192k
    [ 0.568413] Freeing unused kernel memory: 1588k freed
    [ 0.572710] Freeing unused kernel memory: 640k freed
    [ 0.586045] udevd[40]: starting version 185
    [ 0.590818] [drm] Initialized drm 1.1.0 20060810
    [ 0.592306] agpgart-intel 0000:00:00.0: Intel 965GM Chipset
    [ 0.592621] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    [ 0.594306] agpgart-intel 0000:00:00.0: detected 16384K stolen memory
    [ 0.594543] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
    [ 0.595388] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
    [ 0.595444] ACPI: Lid Switch [LID0]
    [ 0.595539] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 0.595547] ACPI: Power Button [PWRB]
    [ 0.595632] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
    [ 0.595639] ACPI: Sleep Button [SLPB]
    [ 0.595763] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 0.595769] ACPI: Power Button [PWRF]
    [ 0.596508] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 0.596517] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 0.602545] i915 0000:00:02.0: setting latency timer to 64
    [ 0.749351] i915 0000:00:02.0: irq 43 for MSI/MSI-X
    [ 0.749367] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 0.749370] [drm] Driver supports precise vblank timestamp query.
    [ 0.749462] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.117606] [drm] initialized overlay support
    [ 1.299854] checking generic (80000000 300000) vs hw (80000000 10000000)
    [ 1.299860] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 1.299886] Console: switching to colour dummy device 80x25
    [ 1.301293] fbcon: inteldrmfb (fb0) is primary device
    [ 1.430434] Console: switching to colour frame buffer device 160x50
    [ 1.435865] fb0: inteldrmfb frame buffer device
    [ 1.435868] drm: registered panic notifier
    [ 1.435878] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.456696] Refined TSC clocksource calibration: 2393.999 MHz.
    [ 1.456705] Switching to clocksource tsc
    [ 1.821716] usbcore: registered new interface driver usbfs
    [ 1.821753] usbcore: registered new interface driver hub
    [ 1.826806] usbcore: registered new device driver usb
    [ 1.827520] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.827588] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 1.827594] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 1.827633] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 1.827675] ehci_hcd 0000:00:1a.7: debug port 1
    [ 1.831556] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.831587] ehci_hcd 0000:00:1a.7: irq 21, io mem 0x90704c00
    [ 1.842320] SCSI subsystem initialized
    [ 1.845102] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.845354] hub 1-0:1.0: USB hub found
    [ 1.845362] hub 1-0:1.0: 4 ports detected
    [ 1.845549] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 1.845555] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 1.845572] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 1.845613] ehci_hcd 0000:00:1d.7: debug port 1
    [ 1.847254] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.850589] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.850624] ehci_hcd 0000:00:1d.7: irq 20, io mem 0x90704800
    [ 1.851193] libata version 3.00 loaded.
    [ 1.860054] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.860280] hub 2-0:1.0: USB hub found
    [ 1.860289] hub 2-0:1.0: 6 ports detected
    [ 1.860472] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.860478] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.860494] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.860539] uhci_hcd 0000:00:1a.0: irq 20, io base 0x000060c0
    [ 1.860750] hub 3-0:1.0: USB hub found
    [ 1.860757] hub 3-0:1.0: 2 ports detected
    [ 1.860892] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 1.860898] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 1.860912] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 1.860965] uhci_hcd 0000:00:1a.1: irq 16, io base 0x000060a0
    [ 1.861172] hub 4-0:1.0: USB hub found
    [ 1.861178] hub 4-0:1.0: 2 ports detected
    [ 1.861312] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.861318] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.861332] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
    [ 1.861366] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00006080
    [ 1.861578] hub 5-0:1.0: USB hub found
    [ 1.861585] hub 5-0:1.0: 2 ports detected
    [ 1.861717] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.861723] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.861744] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
    [ 1.861795] uhci_hcd 0000:00:1d.1: irq 18, io base 0x00006060
    [ 1.862003] hub 6-0:1.0: USB hub found
    [ 1.862010] hub 6-0:1.0: 2 ports detected
    [ 1.862142] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.862148] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.862165] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
    [ 1.862200] uhci_hcd 0000:00:1d.2: irq 21, io base 0x00006040
    [ 1.862411] hub 7-0:1.0: USB hub found
    [ 1.862417] hub 7-0:1.0: 2 ports detected
    [ 1.862917] ata_piix 0000:00:1f.1: version 2.13
    [ 1.862932] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
    [ 1.862937] ata_piix 0000:00:1f.1: power state changed by ACPI to D0
    [ 1.862993] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 1.869158] scsi0 : ata_piix
    [ 1.874884] scsi1 : ata_piix
    [ 1.875449] ata1: PATA max UDMA/100 cmd 0x6108 ctl 0x6124 bmdma 0x60e0 irq 21
    [ 1.875454] ata2: PATA max UDMA/100 cmd 0x6100 ctl 0x6120 bmdma 0x60e8 irq 21
    [ 1.875665] ata_piix 0000:00:1f.2: MAP [ P0 -- -- -- ]
    [ 1.875722] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 1.881780] scsi2 : ata_piix
    [ 1.887944] scsi3 : ata_piix
    [ 1.888739] ata3: SATA max UDMA/133 cmd 0x60f8 ctl 0x611c bmdma 0x6020 irq 18
    [ 1.888745] ata4: SATA max UDMA/133 cmd 0x60f0 ctl 0x6118 bmdma 0x6028 irq 18
    [ 2.033862] ata1.00: ATAPI: MATSHITADVD-R UJ-867, HB01, max UDMA/66
    [ 2.065117] ata1.00: configured for UDMA/66
    [ 2.065887] ata3.00: ATA-8: Hitachi HTS542516K9SA00, BBCAC3GP, max UDMA/133
    [ 2.065893] ata3.00: 312581808 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 2.067318] scsi 0:0:0:0: CD-ROM MATSHITA DVD-R UJ-867 HB01 PQ: 0 ANSI: 5
    [ 2.077869] ata3.00: configured for UDMA/133
    [ 2.078045] scsi 2:0:0:0: Direct-Access ATA Hitachi HTS54251 BBCA PQ: 0 ANSI: 5
    [ 2.087306] sr0: scsi3-mmc drive: 62x/62x writer cd/rw xa/form2 cdda tray
    [ 2.087313] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.088645] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 2.093226] sd 2:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    [ 2.093312] sd 2:0:0:0: [sda] Write Protect is off
    [ 2.093318] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.093371] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.184704] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
    [ 2.184707] sda3: <bsd:bad subpartition - ignored
    [ 2.184709] bad subpartition - ignored
    [ 2.184710] bad subpartition - ignored
    [ 2.184712] bad subpartition - ignored
    [ 2.184713] >
    [ 2.185557] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 2.260045] usb 2-4: new high-speed USB device number 2 using ehci_hcd
    [ 2.770036] usb 3-1: new full-speed USB device number 2 using uhci_hcd
    [ 2.948125] usbhid 3-1:1.0: couldn't find an input interrupt endpoint
    [ 2.948381] usbcore: registered new interface driver usbhid
    [ 2.948385] usbhid: USB HID core driver
    [ 3.170028] usb 7-1: new low-speed USB device number 2 using uhci_hcd
    [ 3.179293] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.576705] usb 7-2: new full-speed USB device number 3 using uhci_hcd
    [ 5.022890] udevd[198]: starting version 185
    [ 5.426262] applesmc: SIS!ui16\xffffffc0\xffffffa6: read arg fail
    [ 5.562551] applesmc: key=220 fan=1 temp=10 acc=1 lux=0 kbd=0
    [ 5.562558] applesmc: init_smcreg() took 50 ms
    [ 5.584285] input: applesmc as /devices/platform/applesmc.768/input/input5
    [ 5.658889] lib80211: common routines for IEEE802.11 drivers
    [ 5.658894] lib80211_crypt: registered algorithm 'NULL'
    [ 5.711977] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.924357] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 5.924364] Disabling lock debugging due to kernel taint
    [ 5.946193] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 6.001836] lib80211_crypt: registered algorithm 'TKIP'
    [ 6.002152] eth0: Broadcom BCM4328 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 6.084085] Linux media interface: v0.10
    [ 6.133183] iTCO_vendor_support: vendor-support=0
    [ 6.134458] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 6.134601] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x0460)
    [ 6.134703] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 6.156626] ACPI: Battery Slot [BAT0] (battery absent)
    [ 6.163544] ACPI: AC Adapter [ADP1] (on-line)
    [ 6.164216] ACPI: Requesting acpi_cpufreq
    [ 6.173706] Monitor-Mwait will be used to enter C-1 state
    [ 6.178506] Monitor-Mwait will be used to enter C-2 state
    [ 6.183424] Monitor-Mwait will be used to enter C-3 state
    [ 6.183457] Marking TSC unstable due to TSC halts in idle
    [ 6.183507] ACPI: acpi_idle registered with cpuidle
    [ 6.183963] Switching to clocksource hpet
    [ 6.210896] ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
    [ 6.210909] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.242033] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 6.275396] microcode: CPU0 sig=0x10676, pf=0x80, revision=0x60c
    [ 6.338786] Linux video capture interface: v2.00
    [ 6.426865] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8501)
    [ 6.429319] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.
    [ 6.429831] usbcore: registered new interface driver uvcvideo
    [ 6.429835] USB Video Class driver (1.1.1)
    [ 6.496844] firewire_ohci 0000:04:03.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
    [ 6.587003] sky2: driver version 1.30
    [ 6.587217] sky2 0000:03:00.0: Yukon-2 EC Ultra chip revision 3
    [ 6.587761] sky2 0000:03:00.0: irq 44 for MSI/MSI-X
    [ 6.588473] sky2 0000:03:00.0: eth1: addr 00:22:41:21:43:0c
    [ 6.654740] microcode: CPU1 sig=0x10676, pf=0x80, revision=0x60c
    [ 6.655770] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 6.661489] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
    [ 6.700987] udevd[214]: renamed network interface eth0 to wlan0
    [ 6.824841] hda_codec: ALC889A: SKU not ready 0x400000f0
    [ 6.827442] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 6.848101] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 6.850714] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 6.942266] appletouch: Geyser mode initialized.
    [ 6.942380] input: appletouch as /devices/pci0000:00/0000:00:1d.2/usb7/7-2/7-2:1.1/input/input10
    [ 6.942768] usbcore: registered new interface driver appletouch
    [ 6.996893] firewire_core 0000:04:03.0: created device fw0: GUID 002241fffe41d624, S400
    [ 7.131526] apple 0003:05AC:8242.0001: hiddev0,hidraw0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.2-1/input0
    [ 7.135766] input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.2/usb7/7-2/7-2:1.0/input/input11
    [ 7.136230] apple 0003:05AC:0229.0002: input,hidraw1: USB HID v1.11 Keyboard [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.2-2/input0
    [ 7.139354] input: Apple Computer Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1d.2/usb7/7-2/7-2:1.2/input/input12
    [ 7.139526] apple 0003:05AC:0229.0003: input,hidraw2: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard / Trackpad] on usb-0000:00:1d.2-2/input2
    [ 7.423516] usb 3-1: USB disconnect, device number 2
    [ 7.650081] usb 3-1: new full-speed USB device number 3 using uhci_hcd
    [ 8.322211] Bluetooth: Core ver 2.16
    [ 8.322655] NET: Registered protocol family 31
    [ 8.322660] Bluetooth: HCI device and connection manager initialized
    [ 8.322665] Bluetooth: HCI socket layer initialized
    [ 8.322669] Bluetooth: L2CAP socket layer initialized
    [ 8.322680] Bluetooth: SCO socket layer initialized
    [ 8.359817] usbcore: registered new interface driver btusb
    [ 9.183365] EXT4-fs (sda2): re-mounted. Opts: (null)
    [ 9.336886] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
    [ 9.377553] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 9.380170] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 9.497613] Adding 4184928k swap on /dev/sda5. Priority:-1 extents:1 across:4184928k
    [ 11.804445] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
    [ 11.845740] Bluetooth: RFCOMM TTY layer initialized
    [ 11.845751] Bluetooth: RFCOMM socket layer initialized
    [ 11.845755] Bluetooth: RFCOMM ver 1.11
    [ 12.221084] fbsplashd.stati[78]: segfault at 2c ip 000000000040579b sp 00007f2267333d00 error 4 in fbsplashd.static (deleted)[400000+233000]
    [ 24.154605] sky2 0000:03:00.0: eth1: enabling interface
    [ 24.155329] ADDRCONF(NETDEV_UP): eth1: link is not ready
    [ 28.831988] EXT4-fs (sda2): re-mounted. Opts: commit=0
    [ 28.933444] EXT4-fs (sda6): re-mounted. Opts: commit=0
    [ 29.363373] wlan0: no IPv6 routers present
    [ 30.487575] sky2 0000:03:00.0: eth1: disabling interface
    [ 30.500233] sky2 0000:03:00.0: eth1: enabling interface
    [ 30.501015] ADDRCONF(NETDEV_UP): eth1: link is not ready
    [ 40.563473] wlan0: no IPv6 routers present
    [ 45.535875] fuse init (API version 7.18)
    [ 70.827136] ISO 9660 Extensions: Microsoft Joliet Level 3
    [ 70.867639] ISO 9660 Extensions: RRIP_1991A
    [ 398.754336] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 398.776167] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 422.037689] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16396 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 422.311888] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16397 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 422.859975] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16398 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 423.955325] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16399 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 426.147338] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16400 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    [ 430.531638] Inbound IN=wlan0 OUT= MAC=00:21:e9:dc:77:c2:00:16:0a:19:9d:62:08:00 SRC=173.194.70.125 DST=192.168.50.100 LEN=78 TOS=0x00 PREC=0x00 TTL=42 ID=16401 PROTO=TCP SPT=5222 DPT=38798 WINDOW=369 RES=0x00 ACK PSH URGP=0
    00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (secondary) (rev 03)
    00:1a.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)
    00:1a.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)
    00:1a.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
    00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)
    00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 (rev 03)
    00:1c.5 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 6 (rev 03)
    00:1d.0 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)
    00:1d.1 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)
    00:1d.2 USB controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)
    00:1d.7 USB controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
    00:1f.0 ISA bridge: Intel Corporation 82801HM (ICH8M) LPC Interface Controller (rev 03)
    00:1f.1 IDE interface: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)
    00:1f.2 IDE interface: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [IDE mode] (rev 03)
    00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
    02:00.0 Network controller: Broadcom Corporation BCM4321 802.11a/b/g/n (rev 03)
    03:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8058 PCI-E Gigabit Ethernet Controller (rev 13)
    04:03.0 FireWire (IEEE 1394): LSI Corporation FW322/323 [TrueFire] 1394a Controller (rev 61)
    /etc/rc.conf:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # See 'man 5 rc.conf' for more details
    # LOCALIZATION
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/Skopje"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    LOCALE="en_GB.UTF-8"
    DAEMON_LOCALE="yes"
    USECOLOR="yes"
    # HARDWARE
    MODULES=(applesmc wl uvcvideo)
    USEDMRAID="no"
    USEBTRFS="no"
    USELVM="no"
    # NETWORKING
    HOSTNAME=stefan.local
    interface=
    address=
    netmask=
    broadcast=
    gateway=
    NETWORK_PERSIST="no"
    # DAEMONS
    DAEMONS=(syslog-ng sensors dbus network @firestarter @bluetooth crond cmp-daemon gdm @wicd alsa)
    Thanks

    Army wrote:
    This might not help you a lot, but if you want a stable system, try using packages from the repo wherever possible, look at the news before you update your system and don't mess things up (like bad configuration etc.).
    When it comes to performance, you won't gain much by compiling linux by yourself! Just use the linux package from [core] or if you want a bit more performance, install the ck-kernel from
    [repo-ck]
    Server = http://repo-ck.com/$arch
    (this has to go to the bottom of /etc/pacman.conf)
    (use that one which is best for your cpu (in your case this might be the package linux-ck-corex).
    Hmmm, Linux-ck-corex doesn't even load.. I am now trying to install the generic one. Hope it works.
    Edit: I will first try linux-lqx...
    Last edited by exapplegeek (2012-06-26 18:33:31)

  • Nvidia module for custom kernel

    Hi all. I've compiled a custom kernel using abs according to the instructions on the wiki, but I'm having a hard time installing the nvidia module using the instructions on the Nvidia page of the wiki. The install always aborts complaining of not being able to find the kernel source. I do have the kernel-headers installed:
    [root@myhost greg]# pacman -Ss linux-headers
    core/linux-headers 3.1.5-1 [installed]
        Header files and scripts for building modules for linux kernel
    I've also edited the nvidia.install and PKGBUILD files to point to the correct version file:
    [greg@myhost ~]$ cat /lib/modules/3.1.5-1-test/extramodules/version
    3.1.5-1-test
    I've really searched hard, but can find no remedy. Any ideas?
    Thanks in advance.

    From what I can see, the only installable package that was built is linux-test-3.1.5-1-x86_64.pkg.tar.xz. That's with the PKGBUILD file supplied from /var/abs/core/linux as per the wiki.
    Last edited by pressman57 (2011-12-18 21:50:00)

  • Ndiswrapper module fails to load on custom kernel

    Hello All, I just compiled my custom kernel, which boots successfully (yay! after at least 10 hours of constant compiling..), however, the ndiswrapper module does not load. I'm wondering, if there's any shortcut to it without using abs to makepkg another version of it for my kernel.
    I have tried to compile the kernel26 (vanilla arch kernel, replacing my default kernel), and changed the pkgrel number from 3 to 4, but this time, the ndiswrapper module still failed to load, the error message was that the format of the kernel module was different.
    I have also tried to remove the package ndiswrapper, and reinstalling it through pacman, but that didn't work out either. The problem still persists.
    Similar problem also applies to my fglrx kernel module. Any advice is appreciated.

    ndiswrapper needs to be built against the new kernel. Use abs to do that and reinstall your new package via pacman.

  • [SOLVED] Cannot boot custom ZEN-kernel (misconfigured .config)

    Last week I tried to build a custom ZEN kernel for my computer, using GCC 4.5 and Intel Atom optimization (setting CONFIG_MATOM=y) and as few kernel modules and options as possible. I based my settings on the Gentoo Wiki for Asus Eee Box B202 and the already used kernel modules (with stock Arch kernel). Although it built fine, after installation I booted using the new vmlinuz26-zen and the kernel immediately halted, throwing out a lot of messages, ending with many lines looking something like
    [<81245906>] ? 0x81245906
    [<81239e72>] ? 0x81239e72
    As the system hung, I couldn't scroll back to some more useful error message.
    I also tried to compile Kernel26-ZEN using stock GCC 4.4 and more conservative settings and including several debugging options, hoping to get a nicer error message, but to no avail.
    In the end I tried to use the default built ZEN kernel from X-demon's repository. I was surprised it booted fine (I'm using it right now). This makes me think that I misconfigured something, but I can't see what's wrong.
    The last .config settings I used were
    # Automatically generated make config: don't edit
    # Linux kernel version: 2.6.33 "Dust Remover"
    # Mon Mar 15 11:01:18 2010
    # CONFIG_64BIT is not set
    CONFIG_X86_32=y
    # CONFIG_X86_64 is not set
    CONFIG_X86=y
    CONFIG_OUTPUT_FORMAT="elf32-i386"
    CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
    CONFIG_GENERIC_TIME=y
    CONFIG_GENERIC_CMOS_UPDATE=y
    CONFIG_CLOCKSOURCE_WATCHDOG=y
    CONFIG_GENERIC_CLOCKEVENTS=y
    CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
    CONFIG_LOCKDEP_SUPPORT=y
    CONFIG_STACKTRACE_SUPPORT=y
    CONFIG_HAVE_LATENCYTOP_SUPPORT=y
    CONFIG_MMU=y
    CONFIG_ZONE_DMA=y
    CONFIG_GENERIC_ISA_DMA=y
    CONFIG_GENERIC_IOMAP=y
    CONFIG_GENERIC_BUG=y
    CONFIG_GENERIC_HWEIGHT=y
    CONFIG_ARCH_MAY_HAVE_PC_FDC=y
    # CONFIG_RWSEM_GENERIC_SPINLOCK is not set
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    # CONFIG_GENERIC_TIME_VSYSCALL is not set
    CONFIG_ARCH_HAS_CPU_RELAX=y
    CONFIG_ARCH_HAS_DEFAULT_IDLE=y
    CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
    CONFIG_HAVE_SETUP_PER_CPU_AREA=y
    CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
    CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
    # CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set
    CONFIG_ARCH_HIBERNATION_POSSIBLE=y
    CONFIG_ARCH_SUSPEND_POSSIBLE=y
    # CONFIG_ZONE_DMA32 is not set
    CONFIG_ARCH_POPULATES_NODE_MAP=y
    # CONFIG_AUDIT_ARCH is not set
    CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
    CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
    CONFIG_HAVE_INTEL_TXT=y
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_GENERIC_PENDING_IRQ=y
    CONFIG_USE_GENERIC_SMP_HELPERS=y
    CONFIG_X86_32_SMP=y
    CONFIG_X86_HT=y
    CONFIG_X86_TRAMPOLINE=y
    CONFIG_KTIME_SCALAR=y
    CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
    CONFIG_CONSTRUCTORS=y
    # General setup
    CONFIG_SCHED_BFS=y
    # CONFIG_SCHED_CFS is not set
    # CONFIG_SCHED_BFS_AUTOISO is not set
    # CONFIG_ZEN_SERVER is not set
    # CONFIG_ZEN_DEFAULT is not set
    CONFIG_ZEN_DESKTOP=y
    # CONFIG_ZEN_CUSTOM is not set
    CONFIG_EXPERIMENTAL=y
    CONFIG_LOCK_KERNEL=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    CONFIG_LOCALVERSION="-ZEN"
    # CONFIG_LOCALVERSION_AUTO is not set
    CONFIG_HAVE_KERNEL_GZIP=y
    CONFIG_HAVE_KERNEL_BZIP2=y
    CONFIG_HAVE_KERNEL_LZMA=y
    CONFIG_HAVE_KERNEL_LZO=y
    # CONFIG_KERNEL_GZIP is not set
    # CONFIG_KERNEL_BZIP2 is not set
    CONFIG_KERNEL_LZMA=y
    # CONFIG_KERNEL_LZO is not set
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_SYSVIPC_SYSCTL=y
    CONFIG_POSIX_MQUEUE=y
    CONFIG_POSIX_MQUEUE_SYSCTL=y
    CONFIG_BSD_PROCESS_ACCT=y
    CONFIG_BSD_PROCESS_ACCT_V3=y
    CONFIG_TASKSTATS=y
    CONFIG_TASK_DELAY_ACCT=y
    CONFIG_TASK_XACCT=y
    CONFIG_TASK_IO_ACCOUNTING=y
    CONFIG_AUDIT=y
    CONFIG_AUDITSYSCALL=y
    CONFIG_AUDIT_TREE=y
    # RCU Subsystem
    CONFIG_CLASSIC_RCU=y
    # CONFIG_TREE_RCU is not set
    # CONFIG_TREE_PREEMPT_RCU is not set
    # CONFIG_TINY_RCU is not set
    # CONFIG_TREE_RCU_TRACE is not set
    # CONFIG_IKCONFIG is not set
    CONFIG_LOG_BUF_SHIFT=19
    CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
    # CONFIG_CGROUPS is not set
    # CONFIG_SYSFS_DEPRECATED_V2 is not set
    CONFIG_RELAY=y
    # CONFIG_NAMESPACES is not set
    CONFIG_BLK_DEV_INITRD=y
    CONFIG_INITRAMFS_SOURCE=""
    CONFIG_RD_GZIP=y
    # CONFIG_RD_BZIP2 is not set
    # CONFIG_RD_LZMA is not set
    # CONFIG_RD_LZO is not set
    # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
    CONFIG_SYSCTL=y
    CONFIG_ANON_INODES=y
    CONFIG_EMBEDDED=y
    CONFIG_UID16=y
    CONFIG_SYSCTL_SYSCALL=y
    # CONFIG_KALLSYMS is not set
    CONFIG_HOTPLUG=y
    CONFIG_PRINTK=y
    CONFIG_BUG=y
    CONFIG_ELF_CORE=y
    # CONFIG_PCSPKR_PLATFORM is not set
    CONFIG_BASE_FULL=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_SIGNALFD=y
    CONFIG_TIMERFD=y
    CONFIG_EVENTFD=y
    CONFIG_SHMEM=y
    CONFIG_AIO=y
    CONFIG_HAVE_PERF_EVENTS=y
    # Kernel Performance Events And Counters
    CONFIG_PERF_EVENTS=y
    # CONFIG_PERF_COUNTERS is not set
    # CONFIG_DEBUG_PERF_USE_VMALLOC is not set
    CONFIG_VM_EVENT_COUNTERS=y
    CONFIG_PCI_QUIRKS=y
    # CONFIG_COMPAT_BRK is not set
    # CONFIG_SLAB is not set
    # CONFIG_SLUB is not set
    CONFIG_SLQB=y
    # CONFIG_SLOB is not set
    # CONFIG_PROFILING is not set
    CONFIG_HAVE_OPROFILE=y
    CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
    CONFIG_HAVE_IOREMAP_PROT=y
    CONFIG_HAVE_KPROBES=y
    CONFIG_HAVE_KRETPROBES=y
    CONFIG_HAVE_ARCH_TRACEHOOK=y
    CONFIG_HAVE_DMA_ATTRS=y
    CONFIG_HAVE_DMA_API_DEBUG=y
    CONFIG_HAVE_HW_BREAKPOINT=y
    CONFIG_HAVE_USER_RETURN_NOTIFIER=y
    # GCOV-based kernel profiling
    # CONFIG_SLOW_WORK is not set
    CONFIG_HAVE_GENERIC_DMA_COHERENT=y
    CONFIG_SLABINFO=y
    CONFIG_RT_MUTEXES=y
    CONFIG_BASE_SMALL=0
    CONFIG_MODULES=y
    CONFIG_MODULE_FORCE_LOAD=y
    CONFIG_MODULE_UNLOAD=y
    CONFIG_MODULE_FORCE_UNLOAD=y
    # CONFIG_MODVERSIONS is not set
    # CONFIG_MODULE_SRCVERSION_ALL is not set
    CONFIG_STOP_MACHINE=y
    CONFIG_BLOCK=y
    # CONFIG_LBDAF is not set
    CONFIG_BLK_DEV_BSG=y
    # CONFIG_BLK_DEV_INTEGRITY is not set
    # IO Schedulers
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_DEADLINE=y
    CONFIG_IOSCHED_CFQ=y
    CONFIG_IOSCHED_SIO=m
    # CONFIG_DEFAULT_DEADLINE is not set
    CONFIG_DEFAULT_CFQ=y
    # CONFIG_DEFAULT_SIO is not set
    # CONFIG_DEFAULT_NOOP is not set
    CONFIG_DEFAULT_IOSCHED="cfq"
    # CONFIG_INLINE_SPIN_TRYLOCK is not set
    # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set
    # CONFIG_INLINE_SPIN_LOCK is not set
    # CONFIG_INLINE_SPIN_LOCK_BH is not set
    # CONFIG_INLINE_SPIN_LOCK_IRQ is not set
    # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set
    # CONFIG_INLINE_SPIN_UNLOCK is not set
    # CONFIG_INLINE_SPIN_UNLOCK_BH is not set
    # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set
    # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set
    # CONFIG_INLINE_READ_TRYLOCK is not set
    # CONFIG_INLINE_READ_LOCK is not set
    # CONFIG_INLINE_READ_LOCK_BH is not set
    # CONFIG_INLINE_READ_LOCK_IRQ is not set
    # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set
    # CONFIG_INLINE_READ_UNLOCK is not set
    # CONFIG_INLINE_READ_UNLOCK_BH is not set
    # CONFIG_INLINE_READ_UNLOCK_IRQ is not set
    # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set
    # CONFIG_INLINE_WRITE_TRYLOCK is not set
    # CONFIG_INLINE_WRITE_LOCK is not set
    # CONFIG_INLINE_WRITE_LOCK_BH is not set
    # CONFIG_INLINE_WRITE_LOCK_IRQ is not set
    # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set
    # CONFIG_INLINE_WRITE_UNLOCK is not set
    # CONFIG_INLINE_WRITE_UNLOCK_BH is not set
    # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set
    # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set
    CONFIG_MUTEX_SPIN_ON_OWNER=y
    CONFIG_FREEZER=y
    # Processor type and features
    CONFIG_TICK_ONESHOT=y
    CONFIG_NO_HZ=y
    CONFIG_HIGH_RES_TIMERS=y
    CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
    CONFIG_SMP=y
    # CONFIG_SPARSE_IRQ is not set
    CONFIG_X86_MPPARSE=y
    # CONFIG_X86_BIGSMP is not set
    # CONFIG_X86_EXTENDED_PLATFORM is not set
    CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
    CONFIG_SCHED_OMIT_FRAME_POINTER=y
    # CONFIG_PARAVIRT_GUEST is not set
    # CONFIG_MEMTEST is not set
    # CONFIG_M386 is not set
    # CONFIG_M486 is not set
    # CONFIG_M586 is not set
    # CONFIG_M586TSC is not set
    # CONFIG_M586MMX is not set
    CONFIG_M686=y
    # CONFIG_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    # CONFIG_MPENTIUMM is not set
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    # CONFIG_MK7 is not set
    # CONFIG_MK8 is not set
    # CONFIG_MK10 is not set
    # CONFIG_MCRUSOE is not set
    # CONFIG_MEFFICEON is not set
    # CONFIG_MWINCHIPC6 is not set
    # CONFIG_MWINCHIP3D is not set
    # CONFIG_MGEODEGX1 is not set
    # CONFIG_MGEODE_LX is not set
    # CONFIG_MCYRIXIII is not set
    # CONFIG_MVIAC3_2 is not set
    # CONFIG_MVIAC7 is not set
    # CONFIG_MPSC is not set
    # CONFIG_MCORE2 is not set
    # CONFIG_MATOM is not set
    # CONFIG_GENERIC_CPU is not set
    CONFIG_X86_GENERIC=y
    # CONFIG_X86_MARCH_NATIVE is not set
    CONFIG_X86_CPU=y
    CONFIG_X86_INTERNODE_CACHE_SHIFT=6
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_L1_CACHE_SHIFT=6
    CONFIG_X86_XADD=y
    # CONFIG_X86_PPRO_FENCE is not set
    CONFIG_X86_WP_WORKS_OK=y
    CONFIG_X86_INVLPG=y
    CONFIG_X86_BSWAP=y
    CONFIG_X86_POPAD_OK=y
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_X86_TSC=y
    CONFIG_X86_CMPXCHG64=y
    CONFIG_X86_CMOV=y
    CONFIG_X86_MINIMUM_CPU_FAMILY=5
    CONFIG_X86_DEBUGCTLMSR=y
    CONFIG_PROCESSOR_SELECT=y
    CONFIG_CPU_SUP_INTEL=y
    # CONFIG_CPU_SUP_CYRIX_32 is not set
    # CONFIG_CPU_SUP_AMD is not set
    # CONFIG_CPU_SUP_CENTAUR is not set
    # CONFIG_CPU_SUP_TRANSMETA_32 is not set
    # CONFIG_CPU_SUP_UMC_32 is not set
    # CONFIG_X86_DS is not set
    CONFIG_HPET_TIMER=y
    CONFIG_HPET_EMULATE_RTC=y
    CONFIG_DMI=y
    # CONFIG_IOMMU_HELPER is not set
    CONFIG_IOMMU_API=y
    CONFIG_NR_CPUS=2
    CONFIG_SCHED_SMT=y
    CONFIG_SCHED_MC=y
    # CONFIG_PREEMPT_NONE is not set
    # CONFIG_PREEMPT_VOLUNTARY is not set
    CONFIG_PREEMPT=y
    CONFIG_X86_LOCAL_APIC=y
    CONFIG_X86_IO_APIC=y
    CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
    CONFIG_X86_MCE=y
    CONFIG_X86_MCE_INTEL=y
    # CONFIG_X86_MCE_AMD is not set
    # CONFIG_X86_ANCIENT_MCE is not set
    CONFIG_X86_MCE_THRESHOLD=y
    # CONFIG_X86_MCE_INJECT is not set
    CONFIG_X86_THERMAL_VECTOR=y
    CONFIG_VM86=y
    # CONFIG_TOSHIBA is not set
    # CONFIG_I8K is not set
    # CONFIG_X86_REBOOTFIXUPS is not set
    CONFIG_MICROCODE=m
    CONFIG_MICROCODE_INTEL=y
    # CONFIG_MICROCODE_AMD is not set
    CONFIG_MICROCODE_OLD_INTERFACE=y
    CONFIG_X86_MSR=m
    CONFIG_X86_CPUID=m
    # CONFIG_NOHIGHMEM is not set
    CONFIG_HIGHMEM4G=y
    # CONFIG_HIGHMEM64G is not set
    # CONFIG_VMSPLIT_3G is not set
    # CONFIG_VMSPLIT_3G_OPT is not set
    CONFIG_VMSPLIT_2G=y
    # CONFIG_VMSPLIT_2G_OPT is not set
    # CONFIG_VMSPLIT_1G is not set
    CONFIG_PAGE_OFFSET=0x80000000
    CONFIG_HIGHMEM=y
    # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
    CONFIG_ARCH_FLATMEM_ENABLE=y
    CONFIG_ARCH_SPARSEMEM_ENABLE=y
    CONFIG_ARCH_SELECT_MEMORY_MODEL=y
    CONFIG_ILLEGAL_POINTER_VALUE=0
    CONFIG_SELECT_MEMORY_MODEL=y
    CONFIG_FLATMEM_MANUAL=y
    # CONFIG_DISCONTIGMEM_MANUAL is not set
    # CONFIG_SPARSEMEM_MANUAL is not set
    CONFIG_FLATMEM=y
    CONFIG_FLAT_NODE_MEM_MAP=y
    CONFIG_SPARSEMEM_STATIC=y
    CONFIG_PAGEFLAGS_EXTENDED=y
    CONFIG_SPLIT_PTLOCK_CPUS=4
    # CONFIG_PHYS_ADDR_T_64BIT is not set
    CONFIG_ZONE_DMA_FLAG=1
    CONFIG_BOUNCE=y
    CONFIG_VIRT_TO_BUS=y
    CONFIG_KSM=y
    CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
    CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
    CONFIG_MEMORY_FAILURE=y
    # CONFIG_HWPOISON_INJECT is not set
    # CONFIG_HIGHPTE is not set
    CONFIG_X86_CHECK_BIOS_CORRUPTION=y
    CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
    CONFIG_X86_RESERVE_LOW_64K=y
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    CONFIG_MTRR_SANITIZER=y
    CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
    CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
    CONFIG_X86_PAT=y
    CONFIG_ARCH_USES_PG_UNCACHED=y
    # CONFIG_EFI is not set
    CONFIG_SECCOMP=y
    CONFIG_CC_STACKPROTECTOR=y
    # CONFIG_HZ_100 is not set
    # CONFIG_HZ_250_NODEFAULT is not set
    # CONFIG_HZ_300 is not set
    CONFIG_HZ_1000=y
    # CONFIG_HZ_1500 is not set
    # CONFIG_HZ_2000 is not set
    # CONFIG_HZ_3000 is not set
    # CONFIG_HZ_4000 is not set
    # CONFIG_HZ_5000 is not set
    # CONFIG_HZ_7500 is not set
    # CONFIG_HZ_10000 is not set
    CONFIG_HZ=1000
    CONFIG_SCHED_HRTICK=y
    # CONFIG_KEXEC is not set
    # CONFIG_CRASH_DUMP is not set
    CONFIG_PHYSICAL_START=0x1000000
    # CONFIG_RELOCATABLE is not set
    CONFIG_PHYSICAL_ALIGN=0x100000
    CONFIG_HOTPLUG_CPU=y
    # CONFIG_COMPAT_VDSO is not set
    # CONFIG_CMDLINE_BOOL is not set
    CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
    # Power management and ACPI options
    CONFIG_PM=y
    # CONFIG_PM_DEBUG is not set
    CONFIG_PM_SLEEP_SMP=y
    CONFIG_PM_SLEEP=y
    CONFIG_SUSPEND=y
    CONFIG_SUSPEND_FREEZER=y
    # CONFIG_HIBERNATION is not set
    CONFIG_PM_RUNTIME=y
    CONFIG_ACPI=y
    CONFIG_ACPI_SLEEP=y
    CONFIG_ACPI_PROCFS=y
    CONFIG_ACPI_PROCFS_POWER=y
    CONFIG_ACPI_POWER_METER=m
    CONFIG_ACPI_SYSFS_POWER=y
    CONFIG_ACPI_PROC_EVENT=y
    # CONFIG_ACPI_AC is not set
    # CONFIG_ACPI_BATTERY is not set
    CONFIG_ACPI_BUTTON=y
    CONFIG_ACPI_VIDEO=y
    CONFIG_ACPI_FAN=m
    CONFIG_ACPI_DOCK=y
    CONFIG_ACPI_PROCESSOR=m
    CONFIG_ACPI_HOTPLUG_CPU=y
    CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
    CONFIG_ACPI_THERMAL=m
    # CONFIG_ACPI_CUSTOM_DSDT is not set
    # CONFIG_ACPI_CUSTOM_DSDT_INITRD is not set
    CONFIG_ACPI_BLACKLIST_YEAR=0
    # CONFIG_ACPI_DEBUG is not set
    CONFIG_ACPI_PCI_SLOT=m
    CONFIG_X86_PM_TIMER=y
    CONFIG_ACPI_CONTAINER=m
    # CONFIG_ACPI_SBS is not set
    # CONFIG_SFI is not set
    # CONFIG_APM is not set
    # CPU Frequency scaling
    CONFIG_CPU_FREQ=y
    CONFIG_CPU_FREQ_TABLE=m
    # CONFIG_CPU_FREQ_DEBUG is not set
    # CONFIG_CPU_FREQ_STAT is not set
    CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    CONFIG_CPU_FREQ_GOV_POWERSAVE=m
    CONFIG_CPU_FREQ_GOV_USERSPACE=m
    CONFIG_CPU_FREQ_GOV_ONDEMAND=m
    CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m
    # CPUFreq processor drivers
    CONFIG_X86_ACPI_CPUFREQ=m
    # CONFIG_X86_POWERNOW_K6 is not set
    # CONFIG_X86_POWERNOW_K7 is not set
    # CONFIG_X86_POWERNOW_K8 is not set
    # CONFIG_X86_GX_SUSPMOD is not set
    # CONFIG_X86_SPEEDSTEP_CENTRINO is not set
    CONFIG_X86_SPEEDSTEP_ICH=m
    CONFIG_X86_SPEEDSTEP_SMI=m
    # CONFIG_X86_P4_CLOCKMOD is not set
    # CONFIG_X86_CPUFREQ_NFORCE2 is not set
    # CONFIG_X86_LONGRUN is not set
    # CONFIG_X86_LONGHAUL is not set
    # CONFIG_X86_E_POWERSAVER is not set
    CONFIG_X86_CPUFREQ_EEEPC900=m
    # shared options
    CONFIG_X86_SPEEDSTEP_LIB=m
    CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y
    CONFIG_CPU_IDLE=y
    CONFIG_CPU_IDLE_GOV_LADDER=y
    CONFIG_CPU_IDLE_GOV_MENU=y
    # Bus options (PCI etc.)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_GOMMCONFIG is not set
    # CONFIG_PCI_GODIRECT is not set
    # CONFIG_PCI_GOOLPC is not set
    CONFIG_PCI_GOANY=y
    CONFIG_PCI_BIOS=y
    CONFIG_PCI_DIRECT=y
    CONFIG_PCI_MMCONFIG=y
    CONFIG_PCI_DOMAINS=y
    CONFIG_DMAR=y
    # CONFIG_DMAR_DEFAULT_ON is not set
    CONFIG_DMAR_FLOPPY_WA=y
    CONFIG_PCIEPORTBUS=y
    CONFIG_PCIEAER=y
    # CONFIG_PCIE_ECRC is not set
    # CONFIG_PCIEAER_INJECT is not set
    # CONFIG_PCIEASPM is not set
    CONFIG_ARCH_SUPPORTS_MSI=y
    CONFIG_PCI_MSI=y
    CONFIG_PCI_LEGACY=y
    # CONFIG_PCI_DEBUG is not set
    # CONFIG_PCI_STUB is not set
    CONFIG_HT_IRQ=y
    # CONFIG_PCI_IOV is not set
    CONFIG_PCI_IOAPIC=y
    CONFIG_ISA_DMA_API=y
    # CONFIG_ISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    # CONFIG_OLPC is not set
    # CONFIG_PCCARD is not set
    # CONFIG_HOTPLUG_PCI is not set
    # Executable file formats / Emulations
    CONFIG_BINFMT_ELF=y
    # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
    CONFIG_HAVE_AOUT=y
    CONFIG_BINFMT_AOUT=m
    CONFIG_BINFMT_MISC=m
    CONFIG_HAVE_ATOMIC_IOMAP=y
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    CONFIG_PACKET_MMAP=y
    CONFIG_UNIX=y
    CONFIG_XFRM=y
    CONFIG_XFRM_USER=m
    # CONFIG_XFRM_SUB_POLICY is not set
    # CONFIG_XFRM_MIGRATE is not set
    # CONFIG_XFRM_STATISTICS is not set
    CONFIG_XFRM_IPCOMP=y
    CONFIG_NET_KEY=m
    # CONFIG_NET_KEY_MIGRATE is not set
    CONFIG_INET=y
    # CONFIG_IP_MULTICAST is not set
    # CONFIG_IP_ADVANCED_ROUTER is not set
    CONFIG_IP_FIB_HASH=y
    # CONFIG_IP_PNP is not set
    CONFIG_NET_IPIP=m
    CONFIG_NET_IPGRE=m
    # CONFIG_ARPD is not set
    CONFIG_SYN_COOKIES=y
    CONFIG_INET_AH=m
    CONFIG_INET_ESP=m
    CONFIG_INET_IPCOMP=m
    CONFIG_INET_XFRM_TUNNEL=m
    CONFIG_INET_TUNNEL=m
    CONFIG_INET_XFRM_MODE_TRANSPORT=m
    CONFIG_INET_XFRM_MODE_TUNNEL=m
    CONFIG_INET_XFRM_MODE_BEET=m
    CONFIG_INET_LRO=y
    CONFIG_INET_DIAG=y
    CONFIG_INET_TCP_DIAG=y
    # CONFIG_TCP_CONG_ADVANCED is not set
    CONFIG_TCP_CONG_CUBIC=y
    CONFIG_DEFAULT_TCP_CONG="cubic"
    # CONFIG_TCP_MD5SIG is not set
    CONFIG_IPV6=y
    CONFIG_IPV6_PRIVACY=y
    CONFIG_IPV6_ROUTER_PREF=y
    CONFIG_IPV6_ROUTE_INFO=y
    CONFIG_IPV6_OPTIMISTIC_DAD=y
    CONFIG_INET6_AH=y
    CONFIG_INET6_ESP=y
    CONFIG_INET6_IPCOMP=y
    # CONFIG_IPV6_MIP6 is not set
    CONFIG_INET6_XFRM_TUNNEL=y
    CONFIG_INET6_TUNNEL=y
    CONFIG_INET6_XFRM_MODE_TRANSPORT=y
    CONFIG_INET6_XFRM_MODE_TUNNEL=y
    CONFIG_INET6_XFRM_MODE_BEET=y
    CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
    CONFIG_IPV6_SIT=m
    CONFIG_IPV6_SIT_6RD=y
    CONFIG_IPV6_NDISC_NODETYPE=y
    CONFIG_IPV6_TUNNEL=m
    CONFIG_IPV6_MULTIPLE_TABLES=y
    CONFIG_IPV6_SUBTREES=y
    # CONFIG_IPV6_MROUTE is not set
    CONFIG_NETWORK_SECMARK=y
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    CONFIG_NETFILTER_ADVANCED=y
    # Core Netfilter Configuration
    CONFIG_NETFILTER_NETLINK=m
    CONFIG_NETFILTER_NETLINK_QUEUE=m
    CONFIG_NETFILTER_NETLINK_LOG=m
    CONFIG_NF_CONNTRACK=m
    CONFIG_NF_CT_ACCT=y
    CONFIG_NF_CONNTRACK_MARK=y
    CONFIG_NF_CONNTRACK_SECMARK=y
    CONFIG_NF_CONNTRACK_EVENTS=y
    CONFIG_NF_CT_PROTO_DCCP=m
    CONFIG_NF_CT_PROTO_GRE=m
    CONFIG_NF_CT_PROTO_SCTP=m
    CONFIG_NF_CT_PROTO_UDPLITE=m
    CONFIG_NF_CONNTRACK_AMANDA=m
    CONFIG_NF_CONNTRACK_FTP=m
    CONFIG_NF_CONNTRACK_H323=m
    CONFIG_NF_CONNTRACK_IRC=m
    CONFIG_NF_CONNTRACK_NETBIOS_NS=m
    CONFIG_NF_CONNTRACK_PPTP=m
    CONFIG_NF_CONNTRACK_SANE=m
    CONFIG_NF_CONNTRACK_SIP=m
    CONFIG_NF_CONNTRACK_TFTP=m
    CONFIG_NF_CT_NETLINK=m
    CONFIG_NETFILTER_TPROXY=m
    CONFIG_NETFILTER_XTABLES=m
    CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
    CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
    CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
    CONFIG_NETFILTER_XT_TARGET_DSCP=m
    CONFIG_NETFILTER_XT_TARGET_HL=m
    CONFIG_NETFILTER_XT_TARGET_MARK=m
    CONFIG_NETFILTER_XT_TARGET_NFLOG=m
    CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
    CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
    CONFIG_NETFILTER_XT_TARGET_RATEEST=m
    CONFIG_NETFILTER_XT_TARGET_TPROXY=m
    CONFIG_NETFILTER_XT_TARGET_TRACE=m
    CONFIG_NETFILTER_XT_TARGET_SECMARK=m
    CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
    CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m
    CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
    CONFIG_NETFILTER_XT_MATCH_COMMENT=m
    CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
    CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
    CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
    CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
    CONFIG_NETFILTER_XT_MATCH_DCCP=m
    CONFIG_NETFILTER_XT_MATCH_DSCP=m
    CONFIG_NETFILTER_XT_MATCH_ESP=m
    CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
    CONFIG_NETFILTER_XT_MATCH_HELPER=m
    CONFIG_NETFILTER_XT_MATCH_HL=m
    CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
    CONFIG_NETFILTER_XT_MATCH_LENGTH=m
    CONFIG_NETFILTER_XT_MATCH_LIMIT=m
    CONFIG_NETFILTER_XT_MATCH_MAC=m
    CONFIG_NETFILTER_XT_MATCH_MARK=m
    CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
    CONFIG_NETFILTER_XT_MATCH_OWNER=m
    CONFIG_NETFILTER_XT_MATCH_POLICY=m
    CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
    CONFIG_NETFILTER_XT_MATCH_QUOTA=m
    CONFIG_NETFILTER_XT_MATCH_RATEEST=m
    CONFIG_NETFILTER_XT_MATCH_REALM=m
    CONFIG_NETFILTER_XT_MATCH_RECENT=m
    CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT=y
    CONFIG_NETFILTER_XT_MATCH_SCTP=m
    CONFIG_NETFILTER_XT_MATCH_SOCKET=m
    CONFIG_NETFILTER_XT_MATCH_STATE=m
    CONFIG_NETFILTER_XT_MATCH_LAYER7=m
    # CONFIG_NETFILTER_XT_MATCH_LAYER7_DEBUG is not set
    CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
    CONFIG_NETFILTER_XT_MATCH_STRING=m
    CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
    CONFIG_NETFILTER_XT_MATCH_TIME=m
    CONFIG_NETFILTER_XT_MATCH_U32=m
    CONFIG_NETFILTER_XT_MATCH_OSF=m
    # CONFIG_IP_VS is not set
    # IP: Netfilter Configuration
    CONFIG_NF_DEFRAG_IPV4=m
    CONFIG_NF_CONNTRACK_IPV4=m
    CONFIG_NF_CONNTRACK_PROC_COMPAT=y
    CONFIG_IP_NF_QUEUE=m
    CONFIG_IP_NF_IPTABLES=m
    CONFIG_IP_NF_MATCH_ADDRTYPE=m
    CONFIG_IP_NF_MATCH_AH=m
    CONFIG_IP_NF_MATCH_ECN=m
    CONFIG_IP_NF_MATCH_TTL=m
    CONFIG_IP_NF_FILTER=m
    CONFIG_IP_NF_TARGET_REJECT=m
    CONFIG_IP_NF_TARGET_LOG=m
    CONFIG_IP_NF_TARGET_ULOG=m
    CONFIG_NF_NAT=m
    CONFIG_NF_NAT_NEEDED=y
    CONFIG_IP_NF_TARGET_MASQUERADE=m
    CONFIG_IP_NF_TARGET_NETMAP=m
    CONFIG_IP_NF_TARGET_REDIRECT=m
    CONFIG_NF_NAT_SNMP_BASIC=m
    CONFIG_NF_NAT_PROTO_DCCP=m
    CONFIG_NF_NAT_PROTO_GRE=m
    CONFIG_NF_NAT_PROTO_UDPLITE=m
    CONFIG_NF_NAT_PROTO_SCTP=m
    CONFIG_NF_NAT_FTP=m
    CONFIG_NF_NAT_IRC=m
    CONFIG_NF_NAT_TFTP=m
    CONFIG_NF_NAT_AMANDA=m
    CONFIG_NF_NAT_PPTP=m
    CONFIG_NF_NAT_H323=m
    CONFIG_NF_NAT_SIP=m
    CONFIG_IP_NF_MANGLE=m
    CONFIG_IP_NF_TARGET_CLUSTERIP=m
    CONFIG_IP_NF_TARGET_ECN=m
    CONFIG_IP_NF_TARGET_TTL=m
    CONFIG_IP_NF_RAW=m
    CONFIG_IP_NF_ARPTABLES=m
    CONFIG_IP_NF_ARPFILTER=m
    CONFIG_IP_NF_ARP_MANGLE=m
    # IPv6: Netfilter Configuration
    CONFIG_NF_CONNTRACK_IPV6=m
    CONFIG_IP6_NF_QUEUE=m
    CONFIG_IP6_NF_IPTABLES=m
    CONFIG_IP6_NF_MATCH_AH=m
    CONFIG_IP6_NF_MATCH_EUI64=m
    CONFIG_IP6_NF_MATCH_FRAG=m
    CONFIG_IP6_NF_MATCH_OPTS=m
    CONFIG_IP6_NF_MATCH_HL=m
    CONFIG_IP6_NF_MATCH_IPV6HEADER=m
    CONFIG_IP6_NF_MATCH_MH=m
    CONFIG_IP6_NF_MATCH_RT=m
    CONFIG_IP6_NF_TARGET_HL=m
    CONFIG_IP6_NF_TARGET_LOG=m
    CONFIG_IP6_NF_FILTER=m
    CONFIG_IP6_NF_TARGET_REJECT=m
    CONFIG_IP6_NF_MANGLE=m
    CONFIG_IP6_NF_RAW=m
    CONFIG_IP_DCCP=m
    CONFIG_INET_DCCP_DIAG=m
    # DCCP CCIDs Configuration (EXPERIMENTAL)
    # CONFIG_IP_DCCP_CCID2_DEBUG is not set
    CONFIG_IP_DCCP_CCID3=y
    # CONFIG_IP_DCCP_CCID3_DEBUG is not set
    CONFIG_IP_DCCP_CCID3_RTO=100
    CONFIG_IP_DCCP_TFRC_LIB=y
    # DCCP Kernel Hacking
    # CONFIG_IP_DCCP_DEBUG is not set
    CONFIG_IP_SCTP=m
    # CONFIG_SCTP_DBG_MSG is not set
    # CONFIG_SCTP_DBG_OBJCNT is not set
    # CONFIG_SCTP_HMAC_NONE is not set
    CONFIG_SCTP_HMAC_SHA1=y
    # CONFIG_SCTP_HMAC_MD5 is not set
    CONFIG_RDS=m
    CONFIG_RDS_TCP=m
    # CONFIG_RDS_DEBUG is not set
    # CONFIG_TIPC is not set
    # CONFIG_ATM is not set
    # CONFIG_BRIDGE is not set
    # CONFIG_NET_DSA is not set
    # CONFIG_VLAN_8021Q is not set
    # CONFIG_DECNET is not set
    CONFIG_LLC=m
    CONFIG_LLC2=m
    # CONFIG_IPX is not set
    # CONFIG_ATALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    # CONFIG_ECONET is not set
    # CONFIG_WAN_ROUTER is not set
    # CONFIG_PHONET is not set
    # CONFIG_IEEE802154 is not set
    CONFIG_NET_SCHED=y
    # Queueing/Scheduling
    CONFIG_NET_SCH_CBQ=m
    CONFIG_NET_SCH_HTB=m
    CONFIG_NET_SCH_HFSC=m
    CONFIG_NET_SCH_PRIO=m
    CONFIG_NET_SCH_MULTIQ=m
    CONFIG_NET_SCH_RED=m
    CONFIG_NET_SCH_SFQ=m
    CONFIG_NET_SCH_TEQL=m
    CONFIG_NET_SCH_TBF=m
    CONFIG_NET_SCH_GRED=m
    CONFIG_NET_SCH_DSMARK=m
    CONFIG_NET_SCH_NETEM=m
    CONFIG_NET_SCH_DRR=m
    CONFIG_NET_SCH_INGRESS=m
    # Classification
    CONFIG_NET_CLS=y
    CONFIG_NET_CLS_BASIC=m
    CONFIG_NET_CLS_TCINDEX=m
    CONFIG_NET_CLS_ROUTE4=m
    CONFIG_NET_CLS_ROUTE=y
    CONFIG_NET_CLS_FW=m
    CONFIG_NET_CLS_U32=m
    # CONFIG_CLS_U32_PERF is not set
    # CONFIG_CLS_U32_MARK is not set
    CONFIG_NET_CLS_RSVP=m
    CONFIG_NET_CLS_RSVP6=m
    CONFIG_NET_CLS_FLOW=m
    # CONFIG_NET_EMATCH is not set
    CONFIG_NET_CLS_ACT=y
    CONFIG_NET_ACT_POLICE=m
    CONFIG_NET_ACT_GACT=m
    CONFIG_GACT_PROB=y
    CONFIG_NET_ACT_MIRRED=m
    CONFIG_NET_ACT_IPT=m
    CONFIG_NET_ACT_NAT=m
    CONFIG_NET_ACT_PEDIT=m
    CONFIG_NET_ACT_SIMP=m
    CONFIG_NET_ACT_SKBEDIT=m
    CONFIG_NET_CLS_IND=y
    CONFIG_NET_SCH_FIFO=y
    # CONFIG_DCB is not set
    # Network testing
    # CONFIG_NET_PKTGEN is not set
    # CONFIG_HAMRADIO is not set
    # CONFIG_CAN is not set
    # CONFIG_IRDA is not set
    # CONFIG_BT is not set
    # CONFIG_AF_RXRPC is not set
    CONFIG_FIB_RULES=y
    # CONFIG_WIRELESS is not set
    # CONFIG_WIMAX is not set
    # CONFIG_RFKILL is not set
    # CONFIG_NET_9P is not set
    # Device Drivers
    # Generic Driver Options
    CONFIG_UEVENT_HELPER_PATH=""
    CONFIG_STANDALONE=y
    CONFIG_PREVENT_FIRMWARE_BUILD=y
    CONFIG_FW_LOADER=y
    CONFIG_FIRMWARE_IN_KERNEL=y
    CONFIG_EXTRA_FIRMWARE=""
    # CONFIG_DEBUG_DRIVER is not set
    # CONFIG_DEBUG_DEVRES is not set
    # CONFIG_SYS_HYPERVISOR is not set
    # CONFIG_CONNECTOR is not set
    # CONFIG_MTD is not set
    # CONFIG_PARPORT is not set
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG_MESSAGES is not set
    # Protocols
    CONFIG_PNPACPI=y
    CONFIG_BLK_DEV=y
    # CONFIG_BLK_DEV_FD is not set
    # CONFIG_BLK_CPQ_DA is not set
    # CONFIG_BLK_CPQ_CISS_DA is not set
    # CONFIG_BLK_DEV_DAC960 is not set
    # CONFIG_BLK_DEV_UMEM is not set
    # CONFIG_BLK_DEV_COW_COMMON is not set
    CONFIG_BLK_DEV_LOOP=m
    # CONFIG_BLK_DEV_CRYPTOLOOP is not set
    # DRBD disabled because PROC_FS, INET or CONNECTOR not selected
    # CONFIG_BLK_DEV_NBD is not set
    # CONFIG_BLK_DEV_SX8 is not set
    # CONFIG_BLK_DEV_UB is not set
    # CONFIG_BLK_DEV_RAM is not set
    # CONFIG_CDROM_PKTCDVD is not set
    # CONFIG_ATA_OVER_ETH is not set
    # CONFIG_BLK_DEV_HD is not set
    # CONFIG_MISC_DEVICES is not set
    CONFIG_HAVE_IDE=y
    # CONFIG_IDE is not set
    # SCSI device support
    # CONFIG_RAID_ATTRS is not set
    CONFIG_SCSI=y
    CONFIG_SCSI_DMA=y
    # CONFIG_SCSI_TGT is not set
    CONFIG_SCSI_NETLINK=y
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    # CONFIG_BLK_DEV_SR is not set
    CONFIG_CHR_DEV_SG=m
    # CONFIG_CHR_DEV_SCH is not set
    CONFIG_SCSI_MULTI_LUN=y
    # CONFIG_SCSI_CONSTANTS is not set
    # CONFIG_SCSI_LOGGING is not set
    # CONFIG_SCSI_SCAN_ASYNC is not set
    CONFIG_SCSI_WAIT_SCAN=m
    # SCSI Transports
    CONFIG_SCSI_SPI_ATTRS=m
    CONFIG_SCSI_FC_ATTRS=m
    CONFIG_SCSI_ISCSI_ATTRS=m
    CONFIG_SCSI_SAS_ATTRS=m
    CONFIG_SCSI_SAS_LIBSAS=m
    CONFIG_SCSI_SAS_ATA=y
    CONFIG_SCSI_SAS_HOST_SMP=y
    # CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set
    CONFIG_SCSI_SRP_ATTRS=m
    # CONFIG_SCSI_LOWLEVEL is not set
    # CONFIG_SCSI_DH is not set
    # CONFIG_SCSI_OSD_INITIATOR is not set
    CONFIG_ATA=y
    # CONFIG_ATA_NONSTANDARD is not set
    CONFIG_ATA_VERBOSE_ERROR=y
    CONFIG_ATA_ACPI=y
    # CONFIG_SATA_PMP is not set
    # CONFIG_SATA_AHCI is not set
    # CONFIG_SATA_SIL24 is not set
    CONFIG_ATA_SFF=y
    # CONFIG_SATA_SVW is not set
    CONFIG_ATA_PIIX=y
    # CONFIG_SATA_MV is not set
    # CONFIG_SATA_NV is not set
    # CONFIG_PDC_ADMA is not set
    # CONFIG_SATA_QSTOR is not set
    # CONFIG_SATA_PROMISE is not set
    # CONFIG_SATA_SX4 is not set
    # CONFIG_SATA_SIL is not set
    # CONFIG_SATA_SIS is not set
    # CONFIG_SATA_ULI is not set
    # CONFIG_SATA_VIA is not set
    # CONFIG_SATA_VITESSE is not set
    # CONFIG_SATA_INIC162X is not set
    # CONFIG_PATA_ACPI is not set
    # CONFIG_PATA_ALI is not set
    # CONFIG_PATA_AMD is not set
    # CONFIG_PATA_ARTOP is not set
    # CONFIG_PATA_ATP867X is not set
    # CONFIG_PATA_ATIIXP is not set
    # CONFIG_PATA_CMD640_PCI is not set
    # CONFIG_PATA_CMD64X is not set
    # CONFIG_PATA_CS5520 is not set
    # CONFIG_PATA_CS5530 is not set
    # CONFIG_PATA_CS5535 is not set
    # CONFIG_PATA_CS5536 is not set
    # CONFIG_PATA_CYPRESS is not set
    # CONFIG_PATA_EFAR is not set
    # CONFIG_ATA_GENERIC is not set
    # CONFIG_PATA_HPT366 is not set
    # CONFIG_PATA_HPT37X is not set
    # CONFIG_PATA_HPT3X2N is not set
    # CONFIG_PATA_HPT3X3 is not set
    # CONFIG_PATA_IT821X is not set
    # CONFIG_PATA_IT8213 is not set
    # CONFIG_PATA_JMICRON is not set
    # CONFIG_PATA_TRIFLEX is not set
    # CONFIG_PATA_MARVELL is not set
    # CONFIG_PATA_MPIIX is not set
    # CONFIG_PATA_OLDPIIX is not set
    # CONFIG_PATA_NETCELL is not set
    # CONFIG_PATA_NINJA32 is not set
    # CONFIG_PATA_NS87410 is not set
    # CONFIG_PATA_NS87415 is not set
    # CONFIG_PATA_OPTI is not set
    # CONFIG_PATA_OPTIDMA is not set
    # CONFIG_PATA_PDC2027X is not set
    # CONFIG_PATA_PDC_OLD is not set
    # CONFIG_PATA_RADISYS is not set
    # CONFIG_PATA_RDC is not set
    # CONFIG_PATA_RZ1000 is not set
    # CONFIG_PATA_SC1200 is not set
    # CONFIG_PATA_SERVERWORKS is not set
    # CONFIG_PATA_SIL680 is not set
    # CONFIG_PATA_SIS is not set
    # CONFIG_PATA_TOSHIBA is not set
    # CONFIG_PATA_VIA is not set
    # CONFIG_PATA_WINBOND is not set
    # CONFIG_PATA_PLATFORM is not set
    # CONFIG_PATA_SCH is not set
    # CONFIG_MD is not set
    # CONFIG_FUSION is not set
    # IEEE 1394 (FireWire) support
    # You can enable one or both FireWire driver stacks.
    # The newer stack is recommended.
    # CONFIG_FIREWIRE is not set
    # CONFIG_IEEE1394 is not set
    # CONFIG_I2O is not set
    # CONFIG_MACINTOSH_DRIVERS is not set
    CONFIG_NETDEVICES=y
    # CONFIG_IFB is not set
    CONFIG_DUMMY=m
    # CONFIG_BONDING is not set
    # CONFIG_MACVLAN is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_TUN is not set
    # CONFIG_VETH is not set
    # CONFIG_NET_SB1000 is not set
    # CONFIG_ARCNET is not set
    CONFIG_PHYLIB=m
    # MII PHY device drivers
    # CONFIG_MARVELL_PHY is not set
    # CONFIG_DAVICOM_PHY is not set
    # CONFIG_QSEMI_PHY is not set
    # CONFIG_LXT_PHY is not set
    # CONFIG_CICADA_PHY is not set
    # CONFIG_VITESSE_PHY is not set
    # CONFIG_SMSC_PHY is not set
    # CONFIG_BROADCOM_PHY is not set
    # CONFIG_ICPLUS_PHY is not set
    CONFIG_REALTEK_PHY=m
    # CONFIG_NATIONAL_PHY is not set
    # CONFIG_STE10XP is not set
    # CONFIG_LSI_ET1011C_PHY is not set
    # CONFIG_MDIO_BITBANG is not set
    CONFIG_NET_ETHERNET=y
    CONFIG_MII=y
    # CONFIG_HAPPYMEAL is not set
    # CONFIG_SUNGEM is not set
    # CONFIG_CASSINI is not set
    # CONFIG_NET_VENDOR_3COM is not set
    # CONFIG_ETHOC is not set
    # CONFIG_DNET is not set
    # CONFIG_NET_TULIP is not set
    # CONFIG_HP100 is not set
    # CONFIG_IBM_NEW_EMAC_ZMII is not set
    # CONFIG_IBM_NEW_EMAC_RGMII is not set
    # CONFIG_IBM_NEW_EMAC_TAH is not set
    # CONFIG_IBM_NEW_EMAC_EMAC4 is not set
    # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set
    # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
    # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
    # CONFIG_NET_PCI is not set
    # CONFIG_B44 is not set
    # CONFIG_KS8842 is not set
    # CONFIG_KS8851_MLL is not set
    # CONFIG_ATL2 is not set
    CONFIG_NETDEV_1000=y
    # CONFIG_ACENIC is not set
    # CONFIG_DL2K is not set
    # CONFIG_E1000 is not set
    # CONFIG_E1000E is not set
    # CONFIG_IP1000 is not set
    # CONFIG_IGB is not set
    # CONFIG_IGBVF is not set
    # CONFIG_NS83820 is not set
    # CONFIG_HAMACHI is not set
    # CONFIG_YELLOWFIN is not set
    CONFIG_R8169=m
    # CONFIG_SIS190 is not set
    # CONFIG_SKGE is not set
    # CONFIG_SKY2 is not set
    # CONFIG_VIA_VELOCITY is not set
    # CONFIG_TIGON3 is not set
    # CONFIG_BNX2 is not set
    # CONFIG_CNIC is not set
    # CONFIG_QLA3XXX is not set
    # CONFIG_ATL1 is not set
    # CONFIG_ATL1E is not set
    # CONFIG_ATL1C is not set
    # CONFIG_JME is not set
    # CONFIG_NETDEV_10000 is not set
    # CONFIG_TR is not set
    # CONFIG_WLAN is not set
    # Enable WiMAX (Networking options) to see the WiMAX drivers
    # USB Network Adapters
    # CONFIG_USB_CATC is not set
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_RTL8150 is not set
    # CONFIG_USB_USBNET is not set
    # CONFIG_WAN is not set
    # CONFIG_FDDI is not set
    # CONFIG_HIPPI is not set
    # CONFIG_PPP is not set
    # CONFIG_SLIP is not set
    # CONFIG_NET_FC is not set
    # CONFIG_NETCONSOLE is not set
    # CONFIG_NETPOLL is not set
    # CONFIG_NET_POLL_CONTROLLER is not set
    # CONFIG_VMXNET3 is not set
    # CONFIG_ISDN is not set
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    # CONFIG_INPUT_FF_MEMLESS is not set
    # CONFIG_INPUT_POLLDEV is not set
    # CONFIG_INPUT_SPARSEKMAP is not set
    # Userland interfaces
    CONFIG_INPUT_MOUSEDEV=y
    # CONFIG_INPUT_MOUSEDEV_PSAUX is not set
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1024
    # CONFIG_INPUT_JOYDEV is not set
    CONFIG_INPUT_EVDEV=m
    # CONFIG_INPUT_EVBUG is not set
    # Input Device Drivers
    # CONFIG_INPUT_KEYBOARD is not set
    # CONFIG_INPUT_MOUSE is not set
    # CONFIG_INPUT_JOYSTICK is not set
    # CONFIG_INPUT_TABLET is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    # CONFIG_INPUT_LIRC is not set
    # CONFIG_INPUT_MISC is not set
    # Hardware I/O ports
    # CONFIG_SERIO is not set
    # CONFIG_GAMEPORT is not set
    # Character devices
    CONFIG_VT=y
    CONFIG_CONSOLE_TRANSLATIONS=y
    CONFIG_VT_CONSOLE=y
    CONFIG_NR_TTY_DEVICES=63
    # CONFIG_VT_CKO is not set
    CONFIG_HW_CONSOLE=y
    CONFIG_VT_HW_CONSOLE_BINDING=y
    # CONFIG_DEVKMEM is not set
    # CONFIG_SERIAL_NONSTANDARD is not set
    # CONFIG_NOZOMI is not set
    # Serial drivers
    # CONFIG_SERIAL_8250 is not set
    CONFIG_FIX_EARLYCON_MEM=y
    # Non-8250 serial port support
    # CONFIG_SERIAL_JSM is not set
    CONFIG_UNIX98_PTYS=y
    # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
    # CONFIG_LEGACY_PTYS is not set
    # CONFIG_IPMI_HANDLER is not set
    # CONFIG_HW_RANDOM is not set
    # CONFIG_NVRAM is not set
    # CONFIG_R3964 is not set
    # CONFIG_APPLICOM is not set
    # CONFIG_SONYPI is not set
    # CONFIG_MWAVE is not set
    # CONFIG_PC8736x_GPIO is not set
    # CONFIG_NSC_GPIO is not set
    # CONFIG_CS5535_GPIO is not set
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_HPET is not set
    # CONFIG_HANGCHECK_TIMER is not set
    # CONFIG_TCG_TPM is not set
    # CONFIG_TELCLOCK is not set
    CONFIG_DEVPORT=y
    CONFIG_I2C=y
    CONFIG_I2C_BOARDINFO=y
    # CONFIG_I2C_COMPAT is not set
    # CONFIG_I2C_CHARDEV is not set
    # CONFIG_I2C_HELPER_AUTO is not set
    # I2C Algorithms
    CONFIG_I2C_ALGOBIT=y
    # CONFIG_I2C_ALGOPCF is not set
    # CONFIG_I2C_ALGOPCA is not set
    # I2C Hardware Bus support
    # PC SMBus host controller drivers
    # CONFIG_I2C_ALI1535 is not set
    # CONFIG_I2C_ALI1563 is not set
    # CONFIG_I2C_ALI15X3 is not set
    # CONFIG_I2C_AMD756 is not set
    # CONFIG_I2C_AMD8111 is not set
    CONFIG_I2C_I801=y
    # CONFIG_I2C_ISCH is not set
    # CONFIG_I2C_PIIX4 is not set
    # CONFIG_I2C_NFORCE2 is not set
    # CONFIG_I2C_SIS5595 is not set
    # CONFIG_I2C_SIS630 is not set
    # CONFIG_I2C_SIS96X is not set
    # CONFIG_I2C_VIA is not set
    # CONFIG_I2C_VIAPRO is not set
    # ACPI drivers
    # CONFIG_I2C_SCMI is not set
    # I2C system bus drivers (mostly embedded / system-on-chip)
    # CONFIG_I2C_OCORES is not set
    # CONFIG_I2C_SIMTEC is not set
    # External I2C/SMBus adapter drivers
    # CONFIG_I2C_PARPORT_LIGHT is not set
    # CONFIG_I2C_TAOS_EVM is not set
    # CONFIG_I2C_TINY_USB is not set
    # Other I2C/SMBus bus drivers
    # CONFIG_I2C_PCA_PLATFORM is not set
    # CONFIG_I2C_STUB is not set
    # CONFIG_SCx200_ACB is not set
    # Miscellaneous I2C Chip support
    # CONFIG_SENSORS_TSL2550 is not set
    # CONFIG_I2C_DEBUG_CORE is not set
    # CONFIG_I2C_DEBUG_ALGO is not set
    # CONFIG_I2C_DEBUG_BUS is not set
    # CONFIG_I2C_DEBUG_CHIP is not set
    # CONFIG_SPI is not set
    # PPS support
    # CONFIG_PPS is not set
    CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
    # CONFIG_GPIOLIB is not set
    # CONFIG_W1 is not set
    CONFIG_POWER_SUPPLY=y
    # CONFIG_POWER_SUPPLY_DEBUG is not set
    # CONFIG_PDA_POWER is not set
    # CONFIG_BATTERY_DS2760 is not set
    # CONFIG_BATTERY_DS2782 is not set
    # CONFIG_BATTERY_BQ27x00 is not set
    # CONFIG_BATTERY_MAX17040 is not set
    CONFIG_HWMON=m
    CONFIG_HWMON_VID=m
    # CONFIG_HWMON_DEBUG_CHIP is not set
    # Native drivers
    # CONFIG_SENSORS_ABITUGURU is not set
    # CONFIG_SENSORS_ABITUGURU3 is not set
    # CONFIG_SENSORS_AD7414 is not set
    # CONFIG_SENSORS_AD7418 is not set
    # CONFIG_SENSORS_ADM1021 is not set
    # CONFIG_SENSORS_ADM1025 is not set
    # CONFIG_SENSORS_ADM1026 is not set
    # CONFIG_SENSORS_ADM1029 is not set
    # CONFIG_SENSORS_ADM1031 is not set
    # CONFIG_SENSORS_ADM9240 is not set
    # CONFIG_SENSORS_ADT7462 is not set
    # CONFIG_SENSORS_ADT7470 is not set
    # CONFIG_SENSORS_ADT7473 is not set
    # CONFIG_SENSORS_ADT7475 is not set
    # CONFIG_SENSORS_K8TEMP is not set
    # CONFIG_SENSORS_K10TEMP is not set
    # CONFIG_SENSORS_ASB100 is not set
    # CONFIG_SENSORS_ATXP1 is not set
    # CONFIG_SENSORS_DS1621 is not set
    # CONFIG_SENSORS_I5K_AMB is not set
    # CONFIG_SENSORS_F71805F is not set
    # CONFIG_SENSORS_F71882FG is not set
    # CONFIG_SENSORS_F75375S is not set
    # CONFIG_SENSORS_FSCHMD is not set
    # CONFIG_SENSORS_G760A is not set
    # CONFIG_SENSORS_GL518SM is not set
    # CONFIG_SENSORS_GL520SM is not set
    CONFIG_SENSORS_CORETEMP=m
    # CONFIG_SENSORS_IT87 is not set
    # CONFIG_SENSORS_LM63 is not set
    # CONFIG_SENSORS_LM73 is not set
    # CONFIG_SENSORS_LM75 is not set
    # CONFIG_SENSORS_LM77 is not set
    # CONFIG_SENSORS_LM78 is not set
    # CONFIG_SENSORS_LM80 is not set
    # CONFIG_SENSORS_LM83 is not set
    # CONFIG_SENSORS_LM85 is not set
    # CONFIG_SENSORS_LM87 is not set
    # CONFIG_SENSORS_LM90 is not set
    # CONFIG_SENSORS_LM92 is not set
    # CONFIG_SENSORS_LM93 is not set
    # CONFIG_SENSORS_LTC4215 is not set
    # CONFIG_SENSORS_LTC4245 is not set
    # CONFIG_SENSORS_LM95241 is not set
    # CONFIG_SENSORS_MAX1619 is not set
    # CONFIG_SENSORS_MAX6650 is not set
    # CONFIG_SENSORS_PC87360 is not set
    # CONFIG_SENSORS_PC87427 is not set
    # CONFIG_SENSORS_PCF8591 is not set
    # CONFIG_SENSORS_SIS5595 is not set
    # CONFIG_SENSORS_DME1737 is not set
    # CONFIG_SENSORS_SMSC47M1 is not set
    # CONFIG_SENSORS_SMSC47M192 is not set
    # CONFIG_SENSORS_SMSC47B397 is not set
    # CONFIG_SENSORS_ADS7828 is not set
    # CONFIG_SENSORS_AMC6821 is not set
    # CONFIG_SENSORS_THMC50 is not set
    # CONFIG_SENSORS_TMP401 is not set
    # CONFIG_SENSORS_TMP421 is not set
    # CONFIG_SENSORS_VIA_CPUTEMP is not set
    # CONFIG_SENSORS_VIA686A is not set
    # CONFIG_SENSORS_VT1211 is not set
    # CONFIG_SENSORS_VT8231 is not set
    # CONFIG_SENSORS_W83781D is not set
    # CONFIG_SENSORS_W83791D is not set
    # CONFIG_SENSORS_W83792D is not set
    # CONFIG_SENSORS_W83793 is not set
    # CONFIG_SENSORS_W83L785TS is not set
    # CONFIG_SENSORS_W83L786NG is not set
    # CONFIG_SENSORS_W83627HF is not set
    CONFIG_SENSORS_W83627EHF=m
    # CONFIG_SENSORS_HDAPS is not set
    # CONFIG_SENSORS_LIS3_I2C is not set
    # CONFIG_SENSORS_APPLESMC is not set
    # ACPI drivers
    # CONFIG_SENSORS_ATK0110 is not set
    # CONFIG_SENSORS_LIS3LV02D is not set
    CONFIG_THERMAL=y
    # CONFIG_WATCHDOG is not set
    CONFIG_SSB_POSSIBLE=y
    # Sonics Silicon Backplane
    # CONFIG_SSB is not set
    # Multifunction device drivers
    # CONFIG_MFD_CORE is not set
    # CONFIG_MFD_SM501 is not set
    # CONFIG_HTC_PASIC3 is not set
    # CONFIG_TWL4030_CORE is not set
    # CONFIG_MFD_TMIO is not set
    # CONFIG_PMIC_DA903X is not set
    # CONFIG_PMIC_ADP5520 is not set
    # CONFIG_MFD_WM8400 is not set
    # CONFIG_MFD_WM831X is not set
    # CONFIG_MFD_WM8350_I2C is not set
    # CONFIG_MFD_PCF50633 is not set
    # CONFIG_AB3100_CORE is not set
    # CONFIG_MFD_88PM8607 is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_MEDIA_SUPPORT is not set
    # Graphics support
    CONFIG_AGP=y
    # CONFIG_AGP_ALI is not set
    # CONFIG_AGP_ATI is not set
    # CONFIG_AGP_AMD is not set
    # CONFIG_AGP_AMD64 is not set
    CONFIG_AGP_INTEL=y
    # CONFIG_AGP_NVIDIA is not set
    # CONFIG_AGP_SIS is not set
    # CONFIG_AGP_SWORKS is not set
    # CONFIG_AGP_VIA is not set
    # CONFIG_AGP_EFFICEON is not set
    CONFIG_VGA_ARB=y
    CONFIG_DRM=y
    CONFIG_DRM_KMS_HELPER=y
    # CONFIG_DRM_TDFX is not set
    # CONFIG_DRM_R128 is not set
    # CONFIG_DRM_RADEON is not set
    # CONFIG_DRM_I810 is not set
    # CONFIG_DRM_I830 is not set
    CONFIG_DRM_I915=y
    CONFIG_DRM_I915_KMS=y
    # CONFIG_DRM_MGA is not set
    # CONFIG_DRM_SIS is not set
    # CONFIG_DRM_VIA is not set
    # CONFIG_DRM_SAVAGE is not set
    # CONFIG_VGASTATE is not set
    CONFIG_VIDEO_OUTPUT_CONTROL=y
    CONFIG_FB=y
    # CONFIG_FIRMWARE_EDID is not set
    # CONFIG_FB_DDC is not set
    # CONFIG_FB_BOOT_VESA_SUPPORT is not set
    CONFIG_FB_CFB_FILLRECT=y
    CONFIG_FB_CFB_COPYAREA=y
    CONFIG_FB_CFB_IMAGEBLIT=y
    # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
    # CONFIG_FB_SYS_FILLRECT is not set
    # CONFIG_FB_SYS_COPYAREA is not set
    # CONFIG_FB_SYS_IMAGEBLIT is not set
    # CONFIG_FB_FOREIGN_ENDIAN is not set
    # CONFIG_FB_SYS_FOPS is not set
    # CONFIG_FB_SVGALIB is not set
    # CONFIG_FB_MACMODES is not set
    # CONFIG_FB_BACKLIGHT is not set
    # CONFIG_FB_MODE_HELPERS is not set
    # CONFIG_FB_TILEBLITTING is not set
    # Frame buffer hardware drivers
    # CONFIG_FB_CIRRUS is not set
    # CONFIG_FB_PM2 is not set
    # CONFIG_FB_CYBER2000 is not set
    # CONFIG_FB_ARC is not set
    # CONFIG_FB_ASILIANT is not set
    # CONFIG_FB_IMSTT is not set
    # CONFIG_FB_VGA16 is not set
    # CONFIG_FB_VESA is not set
    # CONFIG_FB_N411 is not set
    # CONFIG_FB_HGA is not set
    # CONFIG_FB_S1D13XXX is not set
    # CONFIG_FB_NVIDIA is not set
    # CONFIG_FB_RIVA is not set
    # CONFIG_FB_I810 is not set
    # CONFIG_FB_LE80578 is not set
    # CONFIG_FB_MATROX is not set
    # CONFIG_FB_RADEON is not set
    # CONFIG_FB_ATY128 is not set
    # CONFIG_FB_ATY is not set
    # CONFIG_FB_S3 is not set
    # CONFIG_FB_SAVAGE is not set
    # CONFIG_FB_SIS is not set
    # CONFIG_FB_VIA is not set
    # CONFIG_FB_NEOMAGIC is not set
    # CONFIG_FB_KYRO is not set
    # CONFIG_FB_3DFX is not set
    # CONFIG_FB_VOODOO1 is not set
    # CONFIG_FB_VT8623 is not set
    # CONFIG_FB_TRIDENT is not set
    # CONFIG_FB_ARK is not set
    # CONFIG_FB_PM3 is not set
    # CONFIG_FB_CARMINE is not set
    # CONFIG_FB_GEODE is not set
    # CONFIG_FB_VIRTUAL is not set
    # CONFIG_FB_METRONOME is not set
    # CONFIG_FB_MB862XX is not set
    # CONFIG_FB_BROADSHEET is not set
    # CONFIG_BACKLIGHT_LCD_SUPPORT is not set
    CONFIG_BACKLIGHT_CLASS_DEVICE=y
    # CONFIG_BACKLIGHT_GENERIC is not set
    # CONFIG_BACKLIGHT_PROGEAR is not set
    # CONFIG_BACKLIGHT_MBP_NVIDIA is not set
    # CONFIG_BACKLIGHT_SAHARA is not set
    # Display device support
    # CONFIG_DISPLAY_SUPPORT is not set
    # Console display driver support
    CONFIG_VGA_CONSOLE=y
    # CONFIG_VGACON_SOFT_SCROLLBACK is not set
    CONFIG_DUMMY_CONSOLE=y
    CONFIG_FRAMEBUFFER_CONSOLE=y
    # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
    # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
    # CONFIG_FB_CON_DECOR is not set
    CONFIG_FONTS=y
    # CONFIG_FONT_8x8 is not set
    # CONFIG_FONT_8x16 is not set
    # CONFIG_FONT_6x11 is not set
    # CONFIG_FONT_7x14 is not set
    # CONFIG_FONT_PEARL_8x8 is not set
    # CONFIG_FONT_ACORN_8x8 is not set
    # CONFIG_FONT_MINI_4x6 is not set
    # CONFIG_FONT_SUN8x16 is not set
    # CONFIG_FONT_SUN12x22 is not set
    CONFIG_FONT_10x18=y
    CONFIG_LOGO=y
    # CONFIG_LOGO_RANDOM is not set
    # Available logos
    CONFIG_LOGO_ZEN_CLUT224=y
    # CONFIG_LOGO_LINUX_MONO is not set
    # CONFIG_LOGO_LINUX_VGA16 is not set
    # CONFIG_LOGO_LINUX_CLUT224 is not set
    # CONFIG_LOGO_OLDZEN_CLUT224 is not set
    # CONFIG_LOGO_ARCH_CLUT224 is not set
    # CONFIG_LOGO_GENTOO_CLUT224 is not set
    # CONFIG_LOGO_EXHERBO_CLUT224 is not set
    # CONFIG_LOGO_SLACKWARE_CLUT224 is not set
    # CONFIG_LOGO_DEBIAN_CLUT224 is not set
    # CONFIG_LOGO_SIDUX_CLUT224 is not set
    # CONFIG_LOGO_FEDORASIMPLE_CLUT224 is not set
    # CONFIG_LOGO_FEDORAGLOSSY_CLUT224 is not set
    # CONFIG_LOGO_TITS_CLUT224 is not set
    # CONFIG_LOGO_BSD_CLUT224 is not set
    # CONFIG_LOGO_FBSD_CLUT224 is not set
    CONFIG_SOUND=m
    CONFIG_SOUND_OSS_CORE=y
    CONFIG_SOUND_OSS_CORE_PRECLAIM=y
    CONFIG_SND=m
    CONFIG_SND_TIMER=m
    CONFIG_SND_PCM=m
    CONFIG_SND_HWDEP=m
    CONFIG_SND_JACK=y
    CONFIG_SND_SEQUENCER=m
    CONFIG_SND_SEQ_DUMMY=m
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=m
    CONFIG_SND_PCM_OSS=m
    CONFIG_SND_PCM_OSS_PLUGINS=y
    CONFIG_SND_SEQUENCER_OSS=y
    CONFIG_SND_HRTIMER=m
    CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
    # CONFIG_SND_DYNAMIC_MINORS is not set
    # CONFIG_SND_SUPPORT_OLD_API is not set
    # CONFIG_SND_VERBOSE_PROCFS is not set
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    CONFIG_SND_VMASTER=y
    CONFIG_SND_DMA_SGBUF=y
    # CONFIG_SND_RAWMIDI_SEQ is not set
    # CONFIG_SND_OPL3_LIB_SEQ is not set
    # CONFIG_SND_OPL4_LIB_SEQ is not set
    # CONFIG_SND_SBAWE_SEQ is not set
    # CONFIG_SND_EMU10K1_SEQ is not set
    # CONFIG_SND_DRIVERS is not set
    CONFIG_SND_PCI=y
    # CONFIG_SND_AD1889 is not set
    # CONFIG_SND_ALS300 is not set
    # CONFIG_SND_ALS4000 is not set
    # CONFIG_SND_ALI5451 is not set
    # CONFIG_SND_ATIIXP is not set
    # CONFIG_SND_ATIIXP_MODEM is not set
    # CONFIG_SND_AU8810 is not set
    # CONFIG_SND_AU8820 is not set
    # CONFIG_SND_AU8830 is not set
    # CONFIG_SND_AW2 is not set
    # CONFIG_SND_AZT3328 is not set
    # CONFIG_SND_BT87X is not set
    # CONFIG_SND_CA0106 is not set
    # CONFIG_SND_CMIPCI is not set
    # CONFIG_SND_OXYGEN is not set
    # CONFIG_SND_CS4281 is not set
    # CONFIG_SND_CS46XX is not set
    # CONFIG_SND_CS5530 is not set
    # CONFIG_SND_CS5535AUDIO is not set
    # CONFIG_SND_CTXFI is not set
    # CONFIG_SND_DARLA20 is not set
    # CONFIG_SND_GINA20 is not set
    # CONFIG_SND_LAYLA20 is not set
    # CONFIG_SND_DARLA24 is not set
    # CONFIG_SND_GINA24 is not set
    # CONFIG_SND_LAYLA24 is not set
    # CONFIG_SND_MONA is not set
    # CONFIG_SND_MIA is not set
    # CONFIG_SND_ECHO3G is not set
    # CONFIG_SND_INDIGO is not set
    # CONFIG_SND_INDIGOIO is not set
    # CONFIG_SND_INDIGODJ is not set
    # CONFIG_SND_INDIGOIOX is not set
    # CONFIG_SND_INDIGODJX is not set
    # CONFIG_SND_EMU10K1 is not set
    # CONFIG_SND_EMU10K1X is not set
    # CONFIG_SND_ENS1370 is not set
    # CONFIG_SND_ENS1371 is not set
    # CONFIG_SND_ES1938 is not set
    # CONFIG_SND_ES1968 is not set
    # CONFIG_SND_FM801 is not set
    CONFIG_SND_HDA_INTEL=m
    CONFIG_SND_HDA_HWDEP=y
    CONFIG_SND_HDA_RECONFIG=y
    # CONFIG_SND_HDA_INPUT_BEEP is not set
    CONFIG_SND_HDA_INPUT_JACK=y
    CONFIG_SND_HDA_PATCH_LOADER=y
    CONFIG_SND_HDA_CODEC_REALTEK=y
    # CONFIG_SND_HDA_CODEC_ANALOG is not set
    # CONFIG_SND_HDA_CODEC_SIGMATEL is not set
    # CONFIG_SND_HDA_CODEC_VIA is not set
    # CONFIG_SND_HDA_CODEC_ATIHDMI is not set
    # CONFIG_SND_HDA_CODEC_NVHDMI is not set
    # CONFIG_SND_HDA_CODEC_INTELHDMI is not set
    # CONFIG_SND_HDA_CODEC_CIRRUS is not set
    # CONFIG_SND_HDA_CODEC_CONEXANT is not set
    # CONFIG_SND_HDA_CODEC_CA0110 is not set
    # CONFIG_SND_HDA_CODEC_CMEDIA is not set
    # CONFIG_SND_HDA_CODEC_SI3054 is not set
    CONFIG_SND_HDA_GENERIC=y
    # CONFIG_SND_HDA_POWER_SAVE is not set
    # CONFIG_SND_HDSP is not set
    # CONFIG_SND_HDSPM is not set
    # CONFIG_SND_HIFIER is not set
    # CONFIG_SND_ICE1712 is not set
    # CONFIG_SND_ICE1724 is not set
    # CONFIG_SND_INTEL8X0 is not set
    # CONFIG_SND_INTEL8X0M is not set
    # CONFIG_SND_KORG1212 is not set
    # CONFIG_SND_LX6464ES is not set
    # CONFIG_SND_MAESTRO3 is not set
    # CONFIG_SND_MIXART is not set
    # CONFIG_SND_NM256 is not set
    # CONFIG_SND_PCXHR is not set
    # CONFIG_SND_RIPTIDE is not set
    # CONFIG_SND_RME32 is not set
    # CONFIG_SND_RME96 is not set
    # CONFIG_SND_RME9652 is not set
    # CONFIG_SND_SIS7019 is not set
    # CONFIG_SND_SONICVIBES is not set
    # CONFIG_SND_TRIDENT is not set
    # CONFIG_SND_VIA82XX is not set
    # CONFIG_SND_VIA82XX_MODEM is not set
    # CONFIG_SND_VIRTUOSO is not set
    # CONFIG_SND_VX222 is not set
    # CONFIG_SND_YMFPCI is not set
    # CONFIG_SND_USB is not set
    # CONFIG_SND_SOC is not set
    # CONFIG_SOUND_PRIME is not set
    CONFIG_HID_SUPPORT=y
    CONFIG_HID=y
    CONFIG_HIDRAW=y
    # USB Input Devices
    CONFIG_USB_HID=y
    # CONFIG_USB_HID_MOUSE_POLLING is not set
    # CONFIG_HID_PID is not set
    # CONFIG_USB_HIDDEV is not set
    # Special HID drivers
    # CONFIG_HID_A4TECH is not set
    # CONFIG_HID_APPLE is not set
    # CONFIG_HID_BELKIN is not set
    # CONFIG_HID_CHERRY is not set
    # CONFIG_HID_CHICONY is not set
    # CONFIG_HID_CYPRESS is not set
    # CONFIG_HID_DRAGONRISE is not set
    # CONFIG_HID_EZKEY is not set
    # CONFIG_HID_KYE is not set
    # CONFIG_HID_GYRATION is not set
    # CONFIG_HID_TWINHAN is not set
    # CONFIG_HID_KENSINGTON is not set
    # CONFIG_HID_LOGITECH is not set
    # CONFIG_HID_MICROSOFT is not set
    # CONFIG_HID_MONTEREY is not set
    # CONFIG_HID_NTRIG is not set
    # CONFIG_HID_PANTHERLORD is not set
    # CONFIG_HID_PETALYNX is not set
    # CONFIG_HID_SAMSUNG is not set
    # CONFIG_HID_SONY is not set
    # CONFIG_HID_SUNPLUS is not set
    # CONFIG_HID_GREENASIA is not set
    # CONFIG_HID_SMARTJOYPLUS is not set
    # CONFIG_HID_TOPSEED is not set
    # CONFIG_HID_THRUSTMASTER is not set
    # CONFIG_HID_ZEROPLUS is not set
    CONFIG_USB_SUPPORT=y
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB_ARCH_HAS_OHCI=y
    CONFIG_USB_ARCH_HAS_EHCI=y
    CONFIG_USB=y
    # CONFIG_USB_DEBUG is not set
    # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
    # Miscellaneous USB options
    # CONFIG_USB_DEVICEFS is not set
    # CONFIG_USB_DEVICE_CLASS is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    CONFIG_USB_SUSPEND=y
    # CONFIG_USB_OTG is not set
    # CONFIG_USB_OTG_WHITELIST is not set
    # CONFIG_USB_OTG_BLACKLIST_HUB is not set
    # CONFIG_USB_MON is not set
    # CONFIG_USB_WUSB is not set
    # CONFIG_USB_WUSB_CBAF is not set
    # USB Host Controller Drivers
    # CONFIG_USB_C67X00_HCD is not set
    # CONFIG_USB_XHCI_HCD is not set
    CONFIG_USB_EHCI_HCD=y
    CONFIG_USB_EHCI_ROOT_HUB_TT=y
    # CONFIG_USB_EHCI_TT_NEWSCHED is not set
    # CONFIG_USB_OXU210HP_HCD is not set
    # CONFIG_USB_ISP116X_HCD is not set
    # CONFIG_USB_ISP1760_HCD is not set
    # CONFIG_USB_ISP1362_HCD is not set
    # CONFIG_USB_OHCI_HCD is not set
    CONFIG_USB_UHCI_HCD=y
    # CONFIG_USB_SL811_HCD is not set
    # CONFIG_USB_R8A66597_HCD is not set
    # CONFIG_USB_WHCI_HCD is not set
    # CONFIG_USB_HWA_HCD is not set
    # USB Device Class drivers
    # CONFIG_USB_ACM is not set
    CONFIG_USB_PRINTER=m
    # CONFIG_USB_WDM is not set
    # CONFIG_USB_TMC is not set
    # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
    # also be needed; see USB_STORAGE Help for more info
    CONFIG_USB_STORAGE=m
    # CONFIG_USB_STORAGE_DEBUG is not set
    # CONFIG_USB_STORAGE_DATAFAB is not set
    # CONFIG_USB_STORAGE_FREECOM is not set
    # CONFIG_USB_STORAGE_ISD200 is not set
    # CONFIG_USB_STORAGE_USBAT is not set
    # CONFIG_USB_STORAGE_SDDR09 is not set
    # CONFIG_USB_STORAGE_SDDR55 is not set
    # CONFIG_USB_STORAGE_JUMPSHOT is not set
    # CONFIG_USB_STORAGE_ALAUDA is not set
    # CONFIG_USB_STORAGE_ONETOUCH is not set
    # CONFIG_USB_STORAGE_KARMA is not set
    # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
    # CONFIG_USB_LIBUSUAL is not set
    # USB Imaging devices
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USB_MICROTEK is not set
    # USB port drivers
    # CONFIG_USB_SERIAL is not set
    # USB Miscellaneous drivers
    # CONFIG_USB_EMI62 is not set
    # CONFIG_USB_EMI26 is not set
    # CONFIG_USB_ADUTUX is not set
    # CONFIG_USB_SEVSEG is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_BERRY_CHARGE is not set
    # CONFIG_USB_LED is not set
    # CONFIG_USB_CYPRESS_CY7C63 is not set
    # CONFIG_USB_CYTHERM is not set
    # CONFIG_USB_IDMOUSE is not set
    # CONFIG_USB_FTDI_ELAN is not set
    # CONFIG_USB_APPLEDISPLAY is not set
    # CONFIG_USB_SISUSBVGA is not set
    # CONFIG_USB_LD is not set
    # CONFIG_USB_TRANCEVIBRATOR is not set
    # CONFIG_USB_IOWARRIOR is not set
    # CONFIG_USB_TEST is not set
    # CONFIG_USB_ISIGHTFW is not set
    # CONFIG_USB_VST is not set
    # CONFIG_USB_GADGET is not set
    # OTG and related infrastructure
    # CONFIG_NOP_USB_XCEIV is not set
    # CONFIG_UWB is not set
    # CONFIG_MMC is not set
    # CONFIG_MEMSTICK is not set
    # CONFIG_NEW_LEDS is not set
    # CONFIG_ACCESSIBILITY is not set
    # CONFIG_INFINIBAND is not set
    # CONFIG_EDAC is not set
    CONFIG_RTC_LIB=y
    CONFIG_RTC_CLASS=y
    CONFIG_RTC_HCTOSYS=y
    CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
    # CONFIG_RTC_DEBUG is not set
    # RTC interfaces
    CONFIG_RTC_INTF_SYSFS=y
    CONFIG_RTC_INTF_PROC=y
    CONFIG_RTC_INTF_DEV=y
    CONFIG_RTC_INTF_DEV_UIE_EMUL=y
    # CONFIG_RTC_DRV_TEST is not set
    # I2C RTC drivers
    # CONFIG_RTC_DRV_DS1307 is not set
    # CONFIG_RTC_DRV_DS1374 is not set
    # CONFIG_RTC_DRV_DS1672 is not set
    # CONFIG_RTC_DRV_MAX6900 is not set
    # CONFIG_RTC_DRV_RS5C372 is not set
    # CONFIG_RTC_DRV_ISL1208 is not set
    # CONFIG_RTC_DRV_X1205 is not set
    # CONFIG_RTC_DRV_PCF8563 is not set
    # CONFIG_RTC_DRV_PCF8583 is not set
    # CONFIG_RTC_DRV_M41T80 is not set
    # CONFIG_RTC_DRV_BQ32K is not set
    # CONFIG_RTC_DRV_S35390A is not set
    # CONFIG_RTC_DRV_FM3130 is not set
    # CONFIG_RTC_DRV_RX8581 is not set
    # CONFIG_RTC_DRV_RX8025 is not set
    # SPI RTC drivers
    # Platform RTC drivers
    CONFIG_RTC_DRV_CMOS=y
    # CONFIG_RTC_DRV_DS1286 is not set
    # CONFIG_RTC_DRV_DS1511 is not set
    # CONFIG_RTC_DRV_DS1553 is not set
    # CONFIG_RTC_DRV_DS1742 is not set
    # CONFIG_RTC_DRV_STK17TA8 is not set
    # CONFIG_RTC_DRV_M48T86 is not set
    # CONFIG_RTC_DRV_M48T35 is not set
    # CONFIG_RTC_DRV_M48T59 is not set
    # CONFIG_RTC_DRV_MSM6242 is not set
    # CONFIG_RTC_DRV_BQ4802 is not set
    # CONFIG_RTC_DRV_RP5C01 is not set
    # CONFIG_RTC_DRV_V3020 is not set
    # on-CPU RTC drivers
    # CONFIG_DMADEVICES is not set
    # CONFIG_AUXDISPLAY is not set
    # CONFIG_UIO is not set
    # TI VLYNQ
    # CONFIG_STAGING is not set
    # CONFIG_X86_PLATFORM_DEVICES is not set
    # Firmware Drivers
    # CONFIG_EDD is not set
    CONFIG_FIRMWARE_MEMMAP=y
    # CONFIG_DELL_RBU is not set
    # CONFIG_DCDBAS is not set
    # CONFIG_DMIID is not set
    # CONFIG_ISCSI_IBFT_FIND is not set
    # File systems
    CONFIG_EXT2_FS=y
    CONFIG_EXT2_FS_XATTR=y
    CONFIG_EXT2_FS_POSIX_ACL=y
    CONFIG_EXT2_FS_SECURITY=y
    # CONFIG_EXT2_FS_XIP is not set
    CONFIG_EXT3_FS=y
    CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
    CONFIG_EXT3_FS_XATTR=y
    CONFIG_EXT3_FS_POSIX_ACL=y
    CONFIG_EXT3_FS_SECURITY=y
    # CONFIG_EXT4_FS is not set
    CONFIG_JBD=y
    CONFIG_FS_MBCACHE=y
    # CONFIG_REISERFS_FS is not set
    # CONFIG_REISER4_FS is not set
    CONFIG_JFS_FS=y
    CONFIG_JFS_POSIX_ACL=y
    CONFIG_JFS_SECURITY=y
    # CONFIG_JFS_DEBUG is not set
    # CONFIG_JFS_STATISTICS is not set
    CONFIG_FS_POSIX_ACL=y
    CONFIG_XFS_FS=y
    # CONFIG_XFS_QUOTA is not set
    CONFIG_XFS_POSIX_ACL=y
    # CONFIG_XFS_RT is not set
    # CONFIG_XFS_DEBUG is not set
    # CONFIG_OCFS2_FS is not set
    # CONFIG_BTRFS_FS is not set
    # CONFIG_NILFS2_FS is not set
    CONFIG_FILE_LOCKING=y
    CONFIG_FSNOTIFY=y
    CONFIG_DNOTIFY=y
    CONFIG_INOTIFY=y
    CONFIG_INOTIFY_USER=y
    # CONFIG_QUOTA is not set
    # CONFIG_AUTOFS_FS is not set
    # CONFIG_AUTOFS4_FS is not set
    CONFIG_FUSE_FS=m
    # CONFIG_CUSE is not set
    # Caches
    # CONFIG_FSCACHE is not set
    # CD-ROM/DVD Filesystems
    CONFIG_ISO9660_FS=m
    CONFIG_JOLIET=y
    CONFIG_ZISOFS=y
    # CONFIG_UDF_FS is not set
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=m
    # CONFIG_MSDOS_FS is not set
    CONFIG_VFAT_FS=m
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    # CONFIG_NTFS_FS is not set
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_PROC_SYSCTL=y
    CONFIG_PROC_PAGE_MONITOR=y
    CONFIG_SYSFS=y
    # CONFIG_TMPFS is not set
    CONFIG_RAMFS=y
    # CONFIG_HUGETLBFS is not set
    # CONFIG_HUGETLB_PAGE is not set
    CONFIG_CONFIGFS_FS=m
    CONFIG_MISC_FILESYSTEMS=y
    # CONFIG_ADFS_FS is not set
    # CONFIG_AFFS_FS is not set
    # CONFIG_DAZUKOFS_FS is not set
    # CONFIG_HFS_FS is not set
    # CONFIG_HFSPLUS_FS is not set
    # CONFIG_BEFS_FS is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    # CONFIG_CRAMFS is not set
    CONFIG_SQUASHFS=m
    CONFIG_SQUASHFS_LZMA=y
    # CONFIG_SQUASHFS_EMBEDDED is not set
    CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
    # CONFIG_VXFS_FS is not set
    # CONFIG_MINIX_FS is not set
    # CONFIG_OMFS_FS is not set
    # CONFIG_HPFS_FS is not set
    # CONFIG_QNX4FS_FS is not set
    # CONFIG_ROMFS_FS is not set
    # CONFIG_SYSV_FS is not set
    # CONFIG_UFS_FS is not set
    # CONFIG_AUFS_FS is not set
    # CONFIG_NETWORK_FILESYSTEMS is not set
    CONFIG_EXPORTFS=y
    # Partition Types
    CONFIG_PARTITION_ADVANCED=y
    # CONFIG_ACORN_PARTITION is not set
    # CONFIG_OSF_PARTITION is not set
    # CONFIG_AMIGA_PARTITION is not set
    # CONFIG_ATARI_PARTITION is not set
    # CONFIG_MAC_PARTITION is not set
    CONFIG_MSDOS_PARTITION=y
    # CONFIG_BSD_DISKLABEL is not set
    # CONFIG_MINIX_SUBPARTITION is not set
    # CONFIG_SOLARIS_X86_PARTITION is not set
    # CONFIG_UNIXWARE_DISKLABEL is not set
    # CONFIG_LDM_PARTITION is not set
    # CONFIG_SGI_PARTITION is not set
    # CONFIG_ULTRIX_PARTITION is not set
    # CONFIG_SUN_PARTITION is not set
    # CONFIG_KARMA_PARTITION is not set
    # CONFIG_EFI_PARTITION is not set
    # CONFIG_SYSV68_PARTITION is not set
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="iso8859-1"
    CONFIG_NLS_CODEPAGE_437=m
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    CONFIG_NLS_CODEPAGE_850=m
    # CONFIG_NLS_CODEPAGE_852 is not set
    # CONFIG_NLS_CODEPAGE_855 is not set
    # CONFIG_NLS_CODEPAGE_857 is not set
    # CONFIG_NLS_CODEPAGE_860 is not set
    # CONFIG_NLS_CODEPAGE_861 is not set
    # CONFIG_NLS_CODEPAGE_862 is not set
    # CONFIG_NLS_CODEPAGE_863 is not set
    # CONFIG_NLS_CODEPAGE_864 is not set
    # CONFIG_NLS_CODEPAGE_865 is not set
    # CONFIG_NLS_CODEPAGE_866 is not set
    # CONFIG_NLS_CODEPAGE_869 is not set
    # CONFIG_NLS_CODEPAGE_936 is not set
    # CONFIG_NLS_CODEPAGE_950 is not set
    # CONFIG_NLS_CODEPAGE_932 is not set
    # CONFIG_NLS_CODEPAGE_949 is not set
    # CONFIG_NLS_CODEPAGE_874 is not set
    # CONFIG_NLS_ISO8859_8 is not set
    # CONFIG_NLS_CODEPAGE_1250 is not set
    # CONFIG_NLS_CODEPAGE_1251 is not set
    CONFIG_NLS_ASCII=m
    CONFIG_NLS_ISO8859_1=y
    # CONFIG_NLS_ISO8859_2 is not set
    # CONFIG_NLS_ISO8859_3 is not set
    # CONFIG_NLS_ISO8859_4 is not set
    # CONFIG_NLS_ISO8859_5 is not set
    # CONFIG_NLS_ISO8859_6 is not set
    # CONFIG_NLS_ISO8859_7 is not set
    # CONFIG_NLS_ISO8859_9 is not set
    # CONFIG_NLS_ISO8859_13 is not set
    # CONFIG_NLS_ISO8859_14 is not set
    CONFIG_NLS_ISO8859_15=m
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    CONFIG_NLS_UTF8=m
    # CONFIG_DLM is not set
    # Kernel hacking
    CONFIG_TRACE_IRQFLAGS_SUPPORT=y
    # CONFIG_PRINTK_TIME is not set
    CONFIG_ENABLE_WARN_DEPRECATED=y
    # CONFIG_ENABLE_MUST_CHECK is not set
    CONFIG_FRAME_WARN=1024
    CONFIG_MAGIC_SYSRQ=y
    CONFIG_STRIP_ASM_SYMS=y
    # CONFIG_UNUSED_SYMBOLS is not set
    # CONFIG_DEBUG_FS is not set
    CONFIG_HEADERS_CHECK=y
    CONFIG_DEBUG_KERNEL=y
    # CONFIG_DEBUG_SHIRQ is not set
    CONFIG_DETECT_SOFTLOCKUP=y
    # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
    CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
    CONFIG_DETECT_HUNG_TASK=y
    # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
    CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
    CONFIG_SCHED_DEBUG=y
    # CONFIG_SCHEDSTATS is not set
    # CONFIG_TIMER_STATS is not set
    # CONFIG_DEBUG_OBJECTS is not set
    # CONFIG_SLQB_DEBUG is not set
    # CONFIG_SLQB_SYSFS is not set
    # CONFIG_DEBUG_KMEMLEAK is not set
    CONFIG_DEBUG_PREEMPT=y
    # CONFIG_DEBUG_RT_MUTEXES is not set
    # CONFIG_RT_MUTEX_TESTER is not set
    # CONFIG_DEBUG_SPINLOCK is not set
    # CONFIG_DEBUG_MUTEXES is not set
    # CONFIG_DEBUG_LOCK_ALLOC is not set
    # CONFIG_PROVE_LOCKING is not set
    # CONFIG_LOCK_STAT is not set
    # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
    # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
    # CONFIG_DEBUG_KOBJECT is not set
    # CONFIG_DEBUG_HIGHMEM is not set
    CONFIG_DEBUG_BUGVERBOSE=y
    CONFIG_DEBUG_INFO=y
    # CONFIG_DEBUG_VM is not set
    # CONFIG_DEBUG_VIRTUAL is not set
    # CONFIG_DEBUG_WRITECOUNT is not set
    # CONFIG_DEBUG_MEMORY_INIT is not set
    # CONFIG_DEBUG_LIST is not set
    # CONFIG_DEBUG_SG is not set
    # CONFIG_DEBUG_NOTIFIERS is not set
    # CONFIG_DEBUG_CREDENTIALS is not set
    CONFIG_ARCH_WANT_FRAME_POINTERS=y
    # CONFIG_FRAME_POINTER is not set
    # CONFIG_BOOT_PRINTK_DELAY is not set
    # CONFIG_BACKTRACE_SELF_TEST is not set
    # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
    # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
    # CONFIG_FAULT_INJECTION is not set
    # CONFIG_LATENCYTOP is not set
    CONFIG_SYSCTL_SYSCALL_CHECK=y
    # CONFIG_DEBUG_PAGEALLOC is not set
    CONFIG_USER_STACKTRACE_SUPPORT=y
    CONFIG_HAVE_FUNCTION_TRACER=y
    CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
    CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
    CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
    CONFIG_HAVE_DYNAMIC_FTRACE=y
    CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
    CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
    CONFIG_TRACING_SUPPORT=y
    # CONFIG_FTRACE is not set
    # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
    # CONFIG_BUILD_DOCSRC is not set
    # CONFIG_DMA_API_DEBUG is not set
    # CONFIG_SAMPLES is not set
    CONFIG_HAVE_ARCH_KGDB=y
    # CONFIG_KGDB is not set
    CONFIG_HAVE_ARCH_KMEMCHECK=y
    CONFIG_STRICT_DEVMEM=y
    CONFIG_X86_VERBOSE_BOOTUP=y
    # CONFIG_EARLY_PRINTK is not set
    # CONFIG_DEBUG_STACKOVERFLOW is not set
    # CONFIG_DEBUG_STACK_USAGE is not set
    # CONFIG_DEBUG_PER_CPU_MAPS is not set
    # CONFIG_X86_PTDUMP is not set
    CONFIG_DEBUG_RODATA=y
    CONFIG_DEBUG_RODATA_TEST=y
    # CONFIG_DEBUG_NX_TEST is not set
    # CONFIG_4KSTACKS is not set
    CONFIG_DOUBLEFAULT=y
    # CONFIG_IOMMU_STRESS is not set
    CONFIG_HAVE_MMIOTRACE_SUPPORT=y
    CONFIG_IO_DELAY_TYPE_0X80=0
    CONFIG_IO_DELAY_TYPE_0XED=1
    CONFIG_IO_DELAY_TYPE_UDELAY=2
    CONFIG_IO_DELAY_TYPE_NONE=3
    CONFIG_IO_DELAY_0X80=y
    # CONFIG_IO_DELAY_0XED is not set
    # CONFIG_IO_DELAY_UDELAY is not set
    # CONFIG_IO_DELAY_NONE is not set
    CONFIG_DEFAULT_IO_DELAY_TYPE=0
    # CONFIG_CPA_DEBUG is not set
    # CONFIG_OPTIMIZE_INLINING is not set
    # CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
    # Security options
    # CONFIG_KEYS is not set
    # CONFIG_SECURITY is not set
    # CONFIG_SECURITYFS is not set
    # CONFIG_INTEL_TXT is not set
    # CONFIG_DEFAULT_SECURITY_SELINUX is not set
    # CONFIG_DEFAULT_SECURITY_SMACK is not set
    # CONFIG_DEFAULT_SECURITY_TOMOYO is not set
    CONFIG_DEFAULT_SECURITY_DAC=y
    CONFIG_DEFAULT_SECURITY=""
    CONFIG_CRYPTO=y
    # Crypto core or helper
    CONFIG_CRYPTO_FIPS=y
    CONFIG_CRYPTO_ALGAPI=y
    CONFIG_CRYPTO_ALGAPI2=y
    CONFIG_CRYPTO_AEAD=y
    CONFIG_CRYPTO_AEAD2=y
    CONFIG_CRYPTO_BLKCIPHER=y
    CONFIG_CRYPTO_BLKCIPHER2=y
    CONFIG_CRYPTO_HASH=y
    CONFIG_CRYPTO_HASH2=y
    CONFIG_CRYPTO_RNG=m
    CONFIG_CRYPTO_RNG2=y
    CONFIG_CRYPTO_PCOMP=y
    CONFIG_CRYPTO_MANAGER=y
    CONFIG_CRYPTO_MANAGER2=y
    CONFIG_CRYPTO_GF128MUL=m
    CONFIG_CRYPTO_NULL=m
    CONFIG_CRYPTO_WORKQUEUE=y
    CONFIG_CRYPTO_CRYPTD=m
    CONFIG_CRYPTO_AUTHENC=y
    CONFIG_CRYPTO_TEST=m
    # Authenticated Encryption with Associated Data
    CONFIG_CRYPTO_CCM=m
    CONFIG_CRYPTO_GCM=m
    CONFIG_CRYPTO_SEQIV=m
    # Block modes
    CONFIG_CRYPTO_CBC=y
    CONFIG_CRYPTO_CTR=m
    CONFIG_CRYPTO_CTS=m
    CONFIG_CRYPTO_ECB=m
    CONFIG_CRYPTO_LRW=m
    CONFIG_CRYPTO_PCBC=m
    CONFIG_CRYPTO_XTS=m
    # Hash modes
    CONFIG_CRYPTO_HMAC=y
    CONFIG_CRYPTO_XCBC=m
    CONFIG_CRYPTO_VMAC=m
    # Digest
    CONFIG_CRYPTO_CRC32C=m
    CONFIG_CRYPTO_CRC32C_INTEL=m
    CONFIG_CRYPTO_GHASH=m
    CONFIG_CRYPTO_MD4=m
    CONFIG_CRYPTO_MD5=y
    CONFIG_CRYPTO_MICHAEL_MIC=m
    CONFIG_CRYPTO_RMD128=m
    CONFIG_CRYPTO_RMD160=m
    CONFIG_CRYPTO_RMD256=m
    CONFIG_CRYPTO_RMD320=m
    CONFIG_CRYPTO_SHA1=y
    CONFIG_CRYPTO_SHA256=m
    CONFIG_CRYPTO_SHA512=m
    CONFIG_CRYPTO_TGR192=m
    CONFIG_CRYPTO_WP512=m
    # Ciphers
    CONFIG_CRYPTO_AES=m
    CONFIG_CRYPTO_AES_586=m
    CONFIG_CRYPTO_ANUBIS=m
    CONFIG_CRYPTO_ARC4=m
    CONFIG_CRYPTO_BLOWFISH=m
    CONFIG_CRYPTO_CAMELLIA=m
    CONFIG_CRYPTO_CAST5=m
    CONFIG_CRYPTO_CAST6=m
    CONFIG_CRYPTO_DES=y
    CONFIG_CRYPTO_FCRYPT=m
    CONFIG_CRYPTO_KHAZAD=m
    CONFIG_CRYPTO_SALSA20=m
    CONFIG_CRYPTO_SALSA20_586=m
    CONFIG_CRYPTO_SEED=m
    CONFIG_CRYPTO_SERPENT=m
    CONFIG_CRYPTO_TEA=m
    CONFIG_CRYPTO_TWOFISH=m
    CONFIG_CRYPTO_TWOFISH_COMMON=m
    CONFIG_CRYPTO_TWOFISH_586=m
    # Compression
    CONFIG_CRYPTO_DEFLATE=y
    CONFIG_CRYPTO_ZLIB=m
    CONFIG_CRYPTO_LZO=m
    CONFIG_CRYPTO_LZF=m
    # Random Number Generation
    CONFIG_CRYPTO_ANSI_CPRNG=m
    # CONFIG_CRYPTO_HW is not set
    CONFIG_HAVE_KVM=y
    # CONFIG_VIRTUALIZATION is not set
    # CONFIG_BINARY_PRINTF is not set
    # Library routines
    CONFIG_BITREVERSE=y
    CONFIG_GENERIC_FIND_FIRST_BIT=y
    CONFIG_GENERIC_FIND_NEXT_BIT=y
    CONFIG_GENERIC_FIND_LAST_BIT=y
    CONFIG_CRC_CCITT=m
    CONFIG_CRC16=m
    CONFIG_CRC_T10DIF=m
    CONFIG_CRC_ITU_T=m
    CONFIG_CRC32=y
    CONFIG_CRC7=m
    CONFIG_LIBCRC32C=m
    CONFIG_AUDIT_GENERIC=y
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_LZO_COMPRESS=m
    CONFIG_LZO_DECOMPRESS=m
    CONFIG_DECOMPRESS_GZIP=y
    CONFIG_DECOMPRESS_LZMA=m
    CONFIG_DECOMPRESS_LZMA_NEEDED=y
    CONFIG_TEXTSEARCH=y
    CONFIG_TEXTSEARCH_KMP=m
    CONFIG_TEXTSEARCH_BM=m
    CONFIG_TEXTSEARCH_FSM=m
    CONFIG_HAS_IOMEM=y
    CONFIG_HAS_IOPORT=y
    CONFIG_HAS_DMA=y
    CONFIG_NLATTR=y
    For clarity purposes, I also made a diff of the currently used working config (gained using zcat /proc/config.gz) against this one above.
    Last edited by Marcel- (2010-08-09 15:46:27)

    This time I tried to build kernel26-zen without changing anything in the AUR package (just to see if my build environment is borked one way or another) and the system booted (like using the package in X-demon's repo). Then I tried to build the kernel with the same config, but using GCC 4.5 via a little patch and the kernel panicked again, also when using the fallback image. Both times I got exactly the same error message:
    31 c0 eb 04 19 c0 0c 01 8b 34 24 8b 7c
    EIP: [<8117577e>] strcomp+0xe/0x30 SS:ESP 0068:bf03ff5c
    CR2: 0000000000000000
    ---[ end trace 93d72a36b9146f22 ]---
    Kernel panic - not syncing: Attempted to kill init!
    Pid: 1 comm: swapper Tainted: G D 2.6.33-ZEN #1
    Call Trace:
    [<812b192e>] ? panic+0x4c/0xff
    [<8103a575>] ? do_exit+0x705/0x730
    [<810381b1>] ? kmsg_dump+0x71/0x120
    [<81006a6c>] ? oops_end+0x8c/0xd0
    [<810262e0>] ? no_context+0xc0/0x150
    [<810267b0>] ? do_page_fault+0x0/0x300
    [<810264df>] ? bad_area_nosemaphore+0xf/0x20
    [<812b5583>] ? error_code+0x73/0x78
    [<812b00d8>] ? end_local_APIC_setup+0xa9/0x119
    [<8117577c>] ? strcomp+0xe/0x30
    [<810a409c>] ? event_create_dir+0x1c/0x410
    [<813fcd47>] ? event_trace_init+0x0/0x1c9
    [<813fcc8d>] ? event_trace_init+0x146/0x1c9
    [<8100125f>] ? do_one_install+0x2f/0x190
    [<813e687c>] ? kernel_init+0x11f/0x175
    [<813e675d>] ? kernel_init+0x0/0x175
    [<81003bfe>] ? kernel_thread_helper+0x6/0x18
    I searched the forums, but I have no clue which problem could be related to this. Is there a way to read the error message above the trace? Perhaps linking the KMS stuff in the kernel, so it's available immediately after the kernel is loaded (so my console will be larger)?
    EDIT: I got these messages during mkinitcpio:
    ==> Building image "default"
    ==> Running command: /sbin/mkinitcpio -k 2.6.33-ZEN -c /etc/mkinitcpio-zen.conf -g /boot/kernel26-zen.img
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [autodetect]
    error: /dev/sdb: No medium found
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    lzma: Adjusted LZMA1 dictionary size from 64 MiB to 35 MiB to not exceed the memory usage limit of 400 MiB
    :: Generating image '/boot/kernel26-zen.img'...SUCCESS
    ==> SUCCESS
    ==> Building image "fallback"
    ==> Running command: /sbin/mkinitcpio -k 2.6.33-ZEN -c /etc/mkinitcpio-zen.conf -g /boot/kernel26-zen-fallback.img
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [autodetect]
    error: /dev/sdb: No medium found
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    lzma: Adjusted LZMA1 dictionary size from 64 MiB to 35 MiB to not exceed the memory usage limit of 400 MiB
    :: Generating image '/boot/kernel26-zen-fallback.img'...SUCCESS
    ==> SUCCESS
    I don't think this is related (the "no medium found" error is related to FS#18585), but just being as exhaustive as possible.
    For the record: my /boot resides on an ext2 partition.
    Last edited by Marcel- (2010-03-16 23:35:45)

Maybe you are looking for