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.

Similar Messages

  • [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)

  • Strange error compiling rox-session

    Using thegnu's PKGBUILD, updated to download the latest version of rox-session:
    gcc -march=i686 -O2 -pipe -Wl,-O1 -Wall -Wmissing-prototypes -I/usr/X11R6/include `pkg-config --cflags gtk+-2.0 libxml-2.0 dbus-1 dbus-glib-1` -I. -c -o dbus.o dbus.c
    dbus.c: In function `connect_to_bus':
    dbus.c:298: warning: implicit declaration of function `dbus_bus_service_exists'
    dbus.c:311: warning: implicit declaration of function `dbus_bus_acquire_service'
    dbus.c:325: error: `DBUS_PATH_ORG_FREEDESKTOP_LOCAL' undeclared (first use in this function)
    dbus.c:325: error: (Each undeclared identifier is reported only once
    dbus.c:325: error: for each function it appears in.)
    dbus.c:326: error: `DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL' undeclared (first use in this function)
    make: *** [dbus.o] Error 1
    Compile failed
    Press Return...
    (Bizarrely, ABS will create a package even if the compile fails, and install it if the -i option is used. :? )

    Euphoric Nightmare wrote:is it possible that you don't have all the deps installed?
    Nope, checked, and used the -s option.
    Penguin wrote:could you post the PKGBUILD? maybe appending || return 1 to make install would have stopped it from completing the build after the error...
    # $Id$
    # Contributor: Nathan Curry <[email protected]>
    pkgname=rox-session
    pkgver=0.1.25
    pkgrel=1
    groups=('rox-desktop')
    pkgdesc="Session manager for the ROX desktop environment"
    url="http://dl.sourceforge.net/sourceforge/rox/$_srcname-$pkgver.tgz"
    depends=('rox-lib' 'glib2>=2.4' 'dbus' 'python')
    source=(http://dl.sourceforge.net/sourceforge/rox/ROX-Session-$pkgver.tgz)
    build() {
    cd $startdir/src/ROX-Session-$pkgver/ROX-Session
    ./AppRun --compile
    cd ..
    mkdir -p $startdir/pkg/usr/apps/
    cp -rp ROX-Session $startdir/pkg/usr/apps/
    mkdir -p $startdir/pkg/usr/bin
    echo "#!/bin/sh" > "$startdir/pkg/usr/bin/$pkgname"
    echo "exec /usr/apps/ROX-Session/AppRun "$@"" >> "$startdir/pkg/usr/bin/$pkgname"
    chmod a+x $startdir/pkg/usr/bin/$pkgname

  • Strange Error - Compiling, but no changes show up...

    I've compiled my client/server application more than a dozen times - removed it in its entirety on tomcat and on netscape and ie, but STILL, when I make changes to the source and compile, the change will NOT show up... ? SOME changes will show up to certain .java files, but other ones just won't. I checked the .class files to make sure they were the newly created ones and they sure seem to be... but how does that happen? Has this happened to anybody else? I'm not even really sure what to look up anymore!! (I've tried, but haven't found anything related to this...) =) Thanks to anybody who knows anything about this problem!!

    Not only have I done that, I've restarted my whole computer a couple of times. I cleaned out all the temporary internet files, all cookies and anything in the cache... but still the same weird problem. Like I said though, changes to CERTAIN files will work, but not others... (unfortunately it's the others that I need!)

  • 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

  • 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.

  • 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)

  • 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

  • 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] Custom kernel & nvidia

    Hello.
    So i wanted to learn about kernel building for a while and finally decided to jump in. (also i am a new Archlinux user)
    I read the wiki and wanted to try the "traditional" way first so i grabbed the 3.10.0 vanilla tarball and thanks to the wiki, successully compiled and booted it. (i didn't bother trying to start X at this point).
    Then i wanted to use the Arch "abs" way because i wanted to build my custom kernel from the same Arch stable kernel sources (nothing in the 3.10 gives me a boner and the stable arch sources are enough "bleeding edge" for me).
    I followed the wiki procedure and built my linux-3.9.9-1-custom.tar.xz package, then i installed it without any issue. Finally i updated GRUB2 and booted this kernel to make sure it was working.
    Well, it was.
    At this point i knew i had to build a custom nvidia package to make X working so i followed the wiki procedure to build it.
    Here is my PKGBUILD:
    # $Id: PKGBUILD 189199 2013-06-29 10:08:46Z foutrelis $
    # Maintainer : Thomas Baechler <[email protected]>
    pkgname=nvidia-custom
    pkgver=319.32
    _extramodules=extramodules-3.9-custom
    pkgrel=2
    pkgdesc="NVIDIA drivers for linux"
    arch=('i686' 'x86_64')
    url="http://www.nvidia.com/"
    depends=('linux>=3.9' 'linux<3.10' "nvidia-libgl" "nvidia-utils=${pkgver}")
    makedepends=('linux-headers>=3.9' 'linux-headers<3.10')
    conflicts=('nvidia-96xx' 'nvidia-173xx')
    license=('custom')
    install=nvidia.install
    options=(!strip)
    if [ "$CARCH" = "i686" ]; then
    _arch='x86'
    _pkg="NVIDIA-Linux-${_arch}-${pkgver}"
    source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
    md5sums=('978339ff37c3207f3a39d3952721dcdb')
    elif [ "$CARCH" = "x86_64" ]; then
    _arch='x86_64'
    _pkg="NVIDIA-Linux-${_arch}-${pkgver}-no-compat32"
    source=("ftp://download.nvidia.com/XFree86/Linux-${_arch}/${pkgver}/${_pkg}.run")
    md5sums=('d181d856768868823df3bda4607a5315')
    fi
    build() {
    _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
    echo $_kernver
    cd "${srcdir}"
    sh "${_pkg}.run" --extract-only
    cd "${_pkg}/kernel"
    make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
    package() {
    install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
    "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
    install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
    #echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
    sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" "${startdir}/nvidia.install"
    gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
    However when i tried to run makepkg, i got the following error:
    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. ***
    After messing around for quite some time, i discovered nvidia was expecting stuff in the follwing directory:
    /usr/lib/modules/3.9.9-1-custom/build/
    But the build dir did not exist. I looked into the 3.9.9-1-ARCH and found that the build dir was indeed present in the stock kernel directory.
    Since i was stuck i tried the following:
    ln -s /usr/lib/modules/3.9.9-1-ARCH/build /usr/lib/modules/3.9.9-1-custom/build
    and ran makepkg again: it built the package with no issue, so I installed the package.
    I rebooted my machine thinking this ugly hack solved my problem.
    I was wrong...
    When i tried to start X i got this error (using the custom kernel):
    modprobe: ERROR: could not insert 'nvidia': Exec format error
    Here's the full output:
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.9.7-1-ARCH x86_64
    Current Operating System: Linux msytux666 3.9.9-1-custom #2 SMP PREEMPT Sat Jul 6 21:52:16 CEST 2013 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-custom root=UUID=a6b3e912-4bd4-47dc-810e-4d69667b21f9 ro quiet
    Build Date: 01 July 2013 10:48:42AM
    Current version of pixman: 0.30.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jul 6 23:02:47 2013
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    nitializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    modprobe: ERROR: could not insert 'nvidia': Exec format error
    (EE)
    Fatal server error:
    (EE) no screens found(EE)
    (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    (EE)
    (EE) Server terminated with error (1). Closing log file.
    xinit: giving up
    xinit: unable to connect to X server: Connection refused
    xinit: server error
    Not sure what to do next.
    Thank you for reading
    PS: my stock kernel is still fine and running X with no issue (did not break anything, that's one good thing at least!)
    Last edited by BGK (2013-07-06 23:12:54)

    Did you install the kernel headers when you build the custom package?  You need something to build against, and that /usr/modules/3.9.9-1-ARCH/build is a symlink that is owned by linux-headers.  It points to /usr/src/linux-3.9.9-1-ARCH.  So by symlinking that "build" from ARCH to custom, you are effectively building the module against the wrong headers. 
    Check to make sure that you have installed the headers as well as the kernel.  The PKGBUILD for linux will build multiple packages (linux, linux-headers, and linux-docs).  I like to have all three, since the docs package contains some amazing information and is totally worth the ~16MB of space.  Do you have a directory set for storing built packages?  It is probably a good idea, so that you can keep them around.
    BTW, installing headers using the "traditional method" would include issuing the "make headers-install" command as root (from the source directory of course).  Did you do that?
    Last edited by WonderWoofy (2013-07-06 22:49:30)

  • [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?

  • 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)

  • 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)

  • 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)

  • 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!!!

Maybe you are looking for

  • Purchase Order Screen Missing some screens/ tabs during PO creation

    Hi Experts, We have done Upgrade project from 4.6 to Ecc 6 . When we try to create STO in the new system, three tabs are missing viz. Shipping , Condition control and Delivery Address Similarly In Standard PO Creation, in ME21N transaction, delivery

  • Contact Apple Host for a research purpose

    Hello the Apple Host, I am a postgraduate student at Old Dominion University and currently working on a research focusing on online forums/discussion boards. I plan to conduct a study in Apple Discussions. I need to contact Apple Host to see if Apple

  • External Table Application

    Trying to install the External_Table_Simple_0.9 application but I am receiving errors. I installed the application but it could not see the flat file, so I de-installed and on re-install I got these errors. report error: ORA-29913: error in executing

  • Which bootcamp version works with windows xp and can I download it?

    which version of bootcamp do I use for windows XP, and where can Idownload it, all I can find is updaters. I am using lion, which assmes windows 7, but I have windows XP

  • Travel Issue

    Hi Travel Experts, I am recieving an issue while creating trips in T-code PR05 for the currency BYR, when i enter is, system is generating error, "Conversion from BYR to GBP is not possible ", i understand system conversion rates are not maintained ,