Mkinitcpio fglrx hook

I recently installed the proprietary amd drivers and a new hook was placed in my mkinitcpio. Is it safe to remove the hook and what does it do?
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES="piix ide_disk reiserfs"
MODULES="ahci sd_mod ext4"
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES="fsck fsck.ext4"
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
FILES=""
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No raid, lvm2, or encrypted root is needed.
# HOOKS="base"
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS="base udev autodetect block filesystems"
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS="base udev block filesystems"
## This setup assembles a pata mdadm array with an encrypted root FS.
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
# HOOKS="base udev block mdadm encrypt filesystems"
## This setup loads an lvm2 volume group on a usb device.
# HOOKS="base udev block lvm2 filesystems"
## NOTE: If you have /usr on a separate partition, you MUST include the
# usr, fsck and shutdown hooks.
HOOKS="base modconf fglrx"
# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
COMPRESSION=cat
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""
Last edited by fawaz (2013-09-21 15:26:30)

When i updated my mkinitcpio systemd-remount-fs.service started(never used to start) and its dramtically increased my boot time.
Last edited by fawaz (2013-09-21 15:25:43)

Similar Messages

  • Using the mkinitcpio net hook confuses netcfg

    Hello everybody.
    I am currently trying to build a headless Linux home server, and I decided to try out Arch.
    The server has an encrypted root file system by means of having a plain-text /boot 1st partition and having the / file system on a 2nd LUKS partition.
    For starters I used the mkinitcpio hooks "keymap keyboard encrypt", with the appropriate "cryptdevice=..." and "root=..." kernel parameters to make the server prompt me for the pass phrase in early user space, which works nicely.
    As this thing is supposed to become a headless system I then tried to set it up in a way that enables me to open an SSH connection into the early user space and supply the pass phrase from there, using dropbear_initrd_encrypt. And it works! This is great stuff.
    Unfortunately doing this broke the then-running server's network connection.
    I have a static IP address netcfg profile that is loaded from systemd on server start-up (systemctl enable netcfg; the profile is set in the "NETWORKS=..." variable in "/etc/conf.d/netcfg").
    The ethernet device is called "enp2s0".
    This worked flawlessly until I started using the "net" mkinitcpio hook to get a network connection in early user space for the remote unlocking.
    The net hook's corresponding kernel parameter looks like "ip=<ip>:::<netmask>:::none"
    When I use this hook, the system boots up without having the "enp2s0" ethernet device, causing netcfg to bail out.
    It does however gain the same network device as "eth0" instead, which is apparently how early user space calls it. This "eth0" ethernet device appears to retain the settings it has been set up with by the net hook.
    Unfortunately the net hook does not supply things like a default gateway or DNS servers, so while the server technically is reachable from the local network, it cannot access the internet, which it definitely needs to be able to do.
    After tracking this down I figured "Whatever. I can live with the ethernet device being called eth0."
    So I made a second identical netcfg profile, exchanging "enp2s0" for "eth0", and set the server to load that one instead when booting.
    That unfortunately did not work either, because netcfg is cautious and aborts when it is told to set up a network adapter that is already active in some way unknown to netcfg.
    What also didn't help was specifying the "enp2s0" ethernet device name in the "ip=..." kernel parameter for the net hook, because indeed the early user space only knows the device as "eth0".
    So for now I'm stumped. Anyone experienced this issue and managed to solve it?
    A solution might be another "disablenet" mkinitcpio hook that deconfigures the network adapters configured by "net", so that the renaming from "eth0" to "enp2s0" during boot, which I assume fails on account of "eth0" being active, works again.
    Thanks for any help,
    eomanis
    Edit: Changed "netctl" to "netcfg" in the thread subject
    Last edited by eomanis (2013-04-18 08:45:21)

    tomk wrote:You could try including the appropriate command to bring down your interface in your profile's PRE_UP field.
    Okay, I tried that.
    I put both netcfg profiles into the "NETWORKS=..." variable in "/etc/conf.d/netcfg", and added this to both of them:
    # Clear leftover state from mkinitcpio net hook
    PRE_UP="ip link set <device> down || true"
    where <device> is eth0 or enp2s0, respectively.
    After a reboot with remote decryption the server's network was down completely. Looks like the "ip link set ... down" command worked all right, but the rest didn't go as planned.
    Here's what systemctl says about that:
    [root@hserver autologin]# systemctl status netcfg
    netcfg.service - Netcfg multi-profile daemon
    Loaded: loaded (/usr/lib/systemd/system/netcfg.service; enabled)
    Active: failed (Result: exit-code) since Thu 2013-04-18 22:35:38 CEST; 26min ago
    Process: 340 ExecStart=/usr/bin/netcfg-daemon start (code=exited, status=1/FAILURE)
    Apr 18 22:35:35 hserver netcfg-daemon[340]: :: static_enp2s0 up Cannot find device "enp2s0"
    Apr 18 22:35:35 hserver netcfg-daemon[340]: Interface enp2s0 does not exist
    Apr 18 22:35:35 hserver netcfg-daemon[340]: [fail]
    Apr 18 22:35:38 hserver netcfg-daemon[340]: :: static_eth0 up RTNETLINK answers: File exists
    Apr 18 22:35:38 hserver netcfg-daemon[340]: Could not configure interface
    Apr 18 22:35:38 hserver netcfg-daemon[340]: [fail]
    Apr 18 22:35:38 hserver systemd[1]: netcfg.service: main process exited, code=exited, status=1/FAILURE
    Apr 18 22:35:38 hserver systemd[1]: Failed to start Netcfg multi-profile daemon.
    Apr 18 22:35:38 hserver systemd[1]: Unit netcfg.service entered failed state
    As before, device "enp2s0" is missing, but "eth0" doesn't come up either, even after being downed manually beforehand :-(
    Strangely enough, if I do "netcfg -u static_eth0" after that, eth0 does come up. What?!
    @falconindy: Applying a udev rule in early user space would require to make a custom initcpio hook, wouldn't it?
    In that case I'd rather try to figure out what the "net" hook does and undo it, seeing that I have to write a custom hook anyway and that "eth0" doesn't come up no matter what.
    Having an "enp2s0" ethernet device that doesn't come up either isn't going to do me much good ;-)
    Thanks for the suggestions,
    eomanis

  • Mkinitcpio net hook broken?

    Hi
    I'm trying to upgrade my diskless PXE system, but it seems like the mkinitcpio "net" hook is broken?
    # mkinitcpio -p kernel26
    ==> Building image "default"
    ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [net]
    which: no ipconfig in (/lib/initcpio)
    ERROR: '/lib/initcpio/ipconfig' is not a file
    which: no nfsmount in (/lib/initcpio)
    ERROR: '/lib/initcpio/nfsmount' is not a file
    :: Parsing hook [udev]
    :: Parsing hook [autodetect]
    error: /dev/sr0: No medium found
    :: Parsing hook [pata]
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    :: Generating image '/boot/kernel26.img'...SUCCESS
    ==> SUCCESS
    ==> Building image "fallback"
    ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [net]
    which: no ipconfig in (/lib/initcpio)
    ERROR: '/lib/initcpio/ipconfig' is not a file
    which: no nfsmount in (/lib/initcpio)
    ERROR: '/lib/initcpio/nfsmount' is not a file
    :: Parsing hook [udev]
    :: Parsing hook [pata]
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    ==> SUCCESS
    The two errors in the net-hook, makes my system unbootable:
    /init: line 113: nfsmount: not found
    ERROR: Failed to mount the real root device.
    Bailing out, you are on your own. Good luck.
    /bin/sh: can't access tty; job control turned off
    [ramfs /]#
    The system gets stuck now and doesn't accept any input from my keyboard.
    I'm using the following hooks within my mkinitcpio.conf:
    MODULES="nfs"
    HOOKS="base net udev autodetect pata scsi sata filesystems"
    System is up to date as of today:
    # pacman -Q kernel26 mkinitcpio
    kernel26 2.6.32.9-1
    mkinitcpio 0.6.3-1
    # pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    local database is up to date
    Anyone?

    djgera wrote:You need mkinitcpio-nfs-utils
    Thanks, I missed that one in the news...
    Problem solved

  • Mkinitcpio FATAL: Hook 'udev' can not be found after an update[SOLVED]

    Hi
    Yesterday i just try to upgrade my archlinux,
    Unfortunately something goes wrong: after reboot: grub cannot find the vmlinuz file.
    Therefore, i boot using the arch installation cdrom, try a mkinitcpio after chrooted to "/"
    Finally i got this error:
    Fatal: Hook 'udev' can not be found.
    I have a look to find a similar issue without success.
    I hope that somebody can help me.
    Thanks.
    Last edited by jhoga (2009-04-14 11:52:08)

    Finally, i find how to fix it.
    I just reinstall klibc-udev and it works
    Hope it will help!

  • Mkinitcpio fails on pata hook: unbootable system - upgrade to 2.6.39

    Ran pacman -Syu this morning. Got the following errors:
    [2011-06-13 11:38] ==> Running command: /sbin/mkinitcpio -k 2.6.39-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2011-06-13 11:38] :: Begin build
    [2011-06-13 11:38] :: Parsing hook [base]
    [2011-06-13 11:38] :: Parsing hook [udev]
    [2011-06-13 11:38] :: Parsing hook [autodetect]
    [2011-06-13 11:38] :: Parsing hook [pata]
    [2011-06-13 11:38] grep: Unmatched [ or [^
    [2011-06-13 11:38] grep: Unmatched [ or [^
    [2011-06-13 11:38] grep: Unmatched [ or [^
    (many more follows, the same errors for hooks [scsi] and [sata]).
    Now the system fails to boot (in normal or fallback modes) with the error:
    Root device '<disk_uuid>' doesn't exist.
    This is x86_64. A somewhat similar system upgraded without any errors. What can I do about it? Any help would be greatly appreciated.
    Last edited by jasonwryan (2011-06-13 21:16:13)

    My mkinitcpio.conf is default one:
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES=""
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run first, so it may be used to
    # override the actual binaries used in a given hook.
    # (Existing files are NOT overwritten if already added)
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options
    # like so:
    # FILES="/etc/modprobe.d/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ## No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    ## This setup will autodetect all modules for your system and should
    ## work as a sane default
    # HOOKS="base udev autodetect pata scsi sata filesystems"
    ## This is identical to the above, except the old ide subsystem is
    ## used for IDE devices instead of the new pata subsystem.
    # HOOKS="base udev autodetect ide scsi sata filesystems"
    ## This setup will generate a 'full' image which supports most systems.
    ## No autodetection is done.
    # HOOKS="base udev pata scsi sata usb filesystems"
    ## This setup assembles a pata raid array with an encrypted root FS.
    ## Note: See 'mkinitcpio -H raid' for more information on raid devices.
    # HOOKS="base udev pata raid encrypt filesystems"
    ## This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev usb lvm2 filesystems"
    HOOKS="base udev autodetect pata scsi sata filesystems"
    # COMPRESSION
    # Use this to compress the initramfs image. With kernels earlier than
    # 2.6.30, only gzip is supported, which is also the default. Newer kernels
    # support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
    # compression.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    Here is the output from running mkinitcpio command:
    ==> Building image "default"
    ==> Running command: /sbin/mkinitcpio -v -k 2.6.39-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    :: Begin build
    :: Parsing hook [base]
    adding dir /proc
    adding dir /sys
    adding dir /dev
    adding dir /bin
    adding dir /sbin
    adding dir /lib
    adding dir /usr
    adding dir /usr/bin
    adding dir /usr/lib
    adding dir /usr/sbin
    adding dir /run
    adding node /dev/null
    adding node /dev/zero
    adding node /dev/console
    adding node /dev/mem
    adding file /bin/busybox
    adding link /lib/libc.so.6 -> /lib/libc-2.13.so
    adding file /lib/libc-2.13.so
    adding link /lib/ld-linux-x86-64.so.2 -> /lib/ld-2.13.so
    adding file /lib/ld-2.13.so
    adding file /sbin/modprobe
    adding file /sbin/blkid
    adding link /lib/libblkid.so.1 -> /lib/libblkid.so.1.1.0
    adding file /lib/libblkid.so.1.1.0
    adding link /lib/libuuid.so.1 -> /lib/libuuid.so.1.3.0
    adding file /lib/libuuid.so.1.3.0
    adding file /init_functions
    adding file /init
    adding file /config
    adding dir /etc
    adding dir /etc/modprobe.d
    adding file /etc/modprobe.d/usb-load-ehci-first.conf
    :: Parsing hook [udev]
    adding file /sbin/udevd
    adding link /lib/librt.so.1 -> /lib/librt-2.13.so
    adding file /lib/librt-2.13.so
    adding link /lib/libpthread.so.0 -> /lib/libpthread-2.13.so
    adding file /lib/libpthread-2.13.so
    adding file /sbin/udevadm
    adding dir /lib/udev
    adding dir /lib/udev/rules.d
    adding file /lib/udev/rules.d/50-firmware.rules
    adding file /lib/udev/rules.d/50-udev-default.rules
    adding file /lib/udev/rules.d/60-persistent-storage.rules
    adding file /lib/udev/rules.d/80-drivers.rules
    adding file /lib/udev/firmware
    adding file /lib/udev/ata_id
    adding file /lib/udev/path_id
    adding file /lib/udev/scsi_id
    adding file /lib/udev/usb_id
    adding dir /etc/udev
    adding file /etc/udev/udev.conf
    adding dir /hooks
    adding file /hooks/udev
    :: Parsing hook [autodetect]
    :: Parsing hook [pata]
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    :: Parsing hook [scsi]
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    :: Parsing hook [sata]
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    grep: Unmatched [ or [^
    :: Parsing hook [filesystems]
    adding module mbcache
    adding dir /lib/modules
    adding dir /lib/modules/2.6.39-ARCH
    adding dir /lib/modules/2.6.39-ARCH/kernel
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/mbcache.ko.gz
    adding module jbd2
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/jbd2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/jbd2/jbd2.ko.gz
    adding module crc16
    adding dir /lib/modules/2.6.39-ARCH/kernel/lib
    adding file /lib/modules/2.6.39-ARCH/kernel/lib/crc16.ko.gz
    adding module ext4
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ext4
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ext4/ext4.ko.gz
    :: Generating module dependencies
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/mbcache.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/jbd2/jbd2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/lib/crc16.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ext4/ext4.ko.gz': No such file or directory
    WARNING: Couldn't open directory /tmp/mkinitcpio.1arId8/lib/modules/2.6.39-ARCH: No such file or directory
    FATAL: Could not open /tmp/mkinitcpio.1arId8/lib/modules/2.6.39-ARCH/modules.dep.temp for writing: No such file or directory
    ERROR: file '/tmp/mkinitcpio.1arId8/lib/modules/2.6.39-ARCH/modules.dep' does not exist
    ERROR: file '/tmp/mkinitcpio.1arId8/lib/modules/2.6.39-ARCH/modules.alias' does not exist
    ERROR: file '/tmp/mkinitcpio.1arId8/lib/modules/2.6.39-ARCH/modules.symbols' does not exist
    :: Generating image '/boot/kernel26.img'
    :: Image generation successful
    ==> SUCCESS
    ==> Building image "fallback"
    ==> Running command: /sbin/mkinitcpio -v -k 2.6.39-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    :: Begin build
    :: Parsing hook [base]
    adding dir /proc
    adding dir /sys
    adding dir /dev
    adding dir /bin
    adding dir /sbin
    adding dir /lib
    adding dir /usr
    adding dir /usr/bin
    adding dir /usr/lib
    adding dir /usr/sbin
    adding dir /run
    adding node /dev/null
    adding node /dev/zero
    adding node /dev/console
    adding node /dev/mem
    adding file /bin/busybox
    adding link /lib/libc.so.6 -> /lib/libc-2.13.so
    adding file /lib/libc-2.13.so
    adding link /lib/ld-linux-x86-64.so.2 -> /lib/ld-2.13.so
    adding file /lib/ld-2.13.so
    adding file /sbin/modprobe
    adding file /sbin/blkid
    adding link /lib/libblkid.so.1 -> /lib/libblkid.so.1.1.0
    adding file /lib/libblkid.so.1.1.0
    adding link /lib/libuuid.so.1 -> /lib/libuuid.so.1.3.0
    adding file /lib/libuuid.so.1.3.0
    adding file /init_functions
    adding file /init
    adding file /config
    adding dir /etc
    adding dir /etc/modprobe.d
    adding file /etc/modprobe.d/usb-load-ehci-first.conf
    :: Parsing hook [udev]
    adding file /sbin/udevd
    adding link /lib/librt.so.1 -> /lib/librt-2.13.so
    adding file /lib/librt-2.13.so
    adding link /lib/libpthread.so.0 -> /lib/libpthread-2.13.so
    adding file /lib/libpthread-2.13.so
    adding file /sbin/udevadm
    adding dir /lib/udev
    adding dir /lib/udev/rules.d
    adding file /lib/udev/rules.d/50-firmware.rules
    adding file /lib/udev/rules.d/50-udev-default.rules
    adding file /lib/udev/rules.d/60-persistent-storage.rules
    adding file /lib/udev/rules.d/80-drivers.rules
    adding file /lib/udev/firmware
    adding file /lib/udev/ata_id
    adding file /lib/udev/path_id
    adding file /lib/udev/scsi_id
    adding file /lib/udev/usb_id
    adding dir /etc/udev
    adding file /etc/udev/udev.conf
    adding dir /hooks
    adding file /hooks/udev
    :: Parsing hook [pata]
    ERROR: module 'pata_acpi' not found
    ERROR: module 'pata_ali' not found
    ERROR: module 'pata_amd' not found
    ERROR: module 'pata_arasan_cf' not found
    ERROR: module 'pata_artop' not found
    ERROR: module 'pata_atiixp' not found
    ERROR: module 'pata_atp867x' not found
    ERROR: module 'pata_cmd640' not found
    ERROR: module 'pata_cmd64x' not found
    ERROR: module 'pata_cs5520' not found
    ERROR: module 'pata_cs5530' not found
    ERROR: module 'pata_cs5536' not found
    ERROR: module 'pata_cypress' not found
    ERROR: module 'pata_efar' not found
    ERROR: module 'pata_hpt366' not found
    ERROR: module 'pata_hpt37x' not found
    ERROR: module 'pata_hpt3x2n' not found
    ERROR: module 'pata_hpt3x3' not found
    ERROR: module 'pata_it8213' not found
    ERROR: module 'pata_it821x' not found
    ERROR: module 'pata_jmicron' not found
    ERROR: module 'pata_legacy' not found
    ERROR: module 'pata_marvell' not found
    ERROR: module 'pata_mpiix' not found
    ERROR: module 'pata_netcell' not found
    ERROR: module 'pata_ninja32' not found
    ERROR: module 'pata_ns87410' not found
    ERROR: module 'pata_ns87415' not found
    ERROR: module 'pata_oldpiix' not found
    ERROR: module 'pata_optidma' not found
    ERROR: module 'pata_opti' not found
    ERROR: module 'pata_pcmcia' not found
    ERROR: module 'pata_pdc2027x' not found
    ERROR: module 'pata_pdc202xx_old' not found
    ERROR: module 'pata_piccolo' not found
    ERROR: module 'pata_radisys' not found
    ERROR: module 'pata_rdc' not found
    ERROR: module 'pata_rz1000' not found
    ERROR: module 'pata_sc1200' not found
    ERROR: module 'pata_sch' not found
    ERROR: module 'pata_serverworks' not found
    ERROR: module 'pata_sil680' not found
    ERROR: module 'pata_sis' not found
    ERROR: module 'pata_sl82c105' not found
    ERROR: module 'pata_triflex' not found
    ERROR: module 'pata_via' not found
    ERROR: module 'ata_generic' not found
    ERROR: module 'ata_piix' not found
    adding module scsi[-_]mod
    adding dir /lib/modules
    adding dir /lib/modules/2.6.39-ARCH
    adding dir /lib/modules/2.6.39-ARCH/kernel
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/scsi_mod.ko.gz
    adding module sd[-_]mod
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/sd_mod.ko.gz
    :: Parsing hook [scsi]
    ERROR: module '3w_9xxx' not found
    ERROR: module '3w_sas' not found
    ERROR: module '3w_xxxx' not found
    ERROR: module 'a100u2w' not found
    module scsi_mod was already added
    adding module aacraid
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/aacraid
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/aacraid/aacraid.ko.gz
    ERROR: module 'advansys' not found
    module scsi_mod was already added
    module scsi_mod was already added
    adding module scsi[-_]transport[-_]spi
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/scsi_transport_spi.ko.gz
    adding module aic79xx
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/aic7xxx
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/aic7xxx/aic79xx.ko.gz
    module scsi_mod was already added
    module scsi_transport_spi was already added
    adding module aic7xxx
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/aic7xxx/aic7xxx.ko.gz
    module scsi_mod was already added
    adding module libata
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/ata
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/ata/libata.ko.gz
    module scsi_mod was already added
    adding module scsi[-_]transport[-_]sas
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/scsi_transport_sas.ko.gz
    module scsi_mod was already added
    adding module libsas
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/libsas
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/libsas/libsas.ko.gz
    module scsi_mod was already added
    module scsi_transport_sas was already added
    adding module aic94xx
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/aic94xx
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/aic94xx/aic94xx.ko.gz
    module scsi_mod was already added
    adding module arcmsr
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/arcmsr
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/arcmsr/arcmsr.ko.gz
    ERROR: module 'atp870u' not found
    module scsi_mod was already added
    adding module scsi[-_]transport[-_]iscsi
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
    module scsi_mod was already added
    adding module libiscsi
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/libiscsi.ko.gz
    adding module iscsi[-_]boot[-_]sysfs
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
    module scsi_transport_iscsi was already added
    module scsi_mod was already added
    adding module be2iscsi
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/be2iscsi
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/be2iscsi/be2iscsi.ko.gz
    module scsi_mod was already added
    module scsi_mod was already added
    adding module scsi[-_]transport[-_]fc
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/scsi_transport_fc.ko.gz
    adding module bfa
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/bfa
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/bfa/bfa.ko.gz
    module scsi_mod was already added
    module scsi_transport_fc was already added
    adding module libfc
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/libfc
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/libfc/libfc.ko.gz
    adding module libfcoe
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/fcoe
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
    module libfc was already added
    module scsi_mod was already added
    module scsi_transport_fc was already added
    adding module uio
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/uio
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/uio/uio.ko.gz
    adding module ipv6
    adding dir /lib/modules/2.6.39-ARCH/kernel/net
    adding dir /lib/modules/2.6.39-ARCH/kernel/net/ipv6
    adding file /lib/modules/2.6.39-ARCH/kernel/net/ipv6/ipv6.ko.gz
    adding module cnic
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/net
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/net/cnic.ko.gz
    adding module bnx2fc
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/bnx2fc
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/bnx2fc/bnx2fc.ko.gz
    module scsi_transport_iscsi was already added
    module libiscsi was already added
    module scsi_mod was already added
    module cnic was already added
    adding module bnx2i
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/bnx2i
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/bnx2i/bnx2i.ko.gz
    ERROR: module 'BusLogic' not found
    ERROR: module 'ch' not found
    module libiscsi was already added
    module scsi_transport_iscsi was already added
    module libiscsi was already added
    module libiscsi was already added
    adding module libiscsi[-_]tcp
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/libiscsi_tcp.ko.gz
    module scsi_mod was already added
    adding module libcxgbi
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/cxgbi
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/cxgbi/libcxgbi.ko.gz
    module libiscsi_tcp was already added
    adding dir /lib/firmware
    adding dir /lib/firmware/cxgb3
    adding file /lib/firmware/cxgb3/ael2020_twx_edc.bin
    adding file /lib/firmware/cxgb3/ael2005_twx_edc.bin
    adding file /lib/firmware/cxgb3/ael2005_opt_edc.bin
    adding file /lib/firmware/cxgb3/t3c_psram-1.1.0.bin
    adding file /lib/firmware/cxgb3/t3b_psram-1.1.0.bin
    adding file /lib/firmware/cxgb3/t3fw-7.10.0.bin
    adding module mdio
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/net/mdio.ko.gz
    adding module cxgb3
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/net/cxgb3
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/net/cxgb3/cxgb3.ko.gz
    adding module cxgb3i
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/cxgbi/cxgb3i
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/cxgbi/cxgb3i/cxgb3i.ko.gz
    module libiscsi was already added
    module libcxgbi was already added
    module libiscsi_tcp was already added
    adding dir /lib/firmware/cxgb4
    adding file /lib/firmware/cxgb4/t4fw.bin
    adding module cxgb4
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/net/cxgb4
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/net/cxgb4/cxgb4.ko.gz
    adding module cxgb4i
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/cxgbi/cxgb4i
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/cxgbi/cxgb4i/cxgb4i.ko.gz
    module libcxgbi was already added
    ERROR: module 'dc395x' not found
    module scsi_mod was already added
    adding module scsi[-_]dh
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/device_handler
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/device_handler/scsi_dh.ko.gz
    module scsi_mod was already added
    adding module scsi[-_]dh[-_]alua
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/device_handler/scsi_dh_alua.ko.gz
    module scsi_dh was already added
    module scsi_mod was already added
    adding module scsi[-_]dh[-_]emc
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/device_handler/scsi_dh_emc.ko.gz
    module scsi_dh was already added
    module scsi_mod was already added
    adding module scsi[-_]dh[-_]hp[-_]sw
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/device_handler/scsi_dh_hp_sw.ko.gz
    module scsi_dh was already added
    module scsi_dh was already added
    module scsi_mod was already added
    adding module scsi[-_]dh[-_]rdac
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/device_handler/scsi_dh_rdac.ko.gz
    ERROR: module 'dmx3191d' not found
    ERROR: module 'dpt_i2o' not found
    module libfc was already added
    module libfcoe was already added
    module scsi_transport_fc was already added
    module scsi_mod was already added
    adding module fcoe
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/fcoe/fcoe.ko.gz
    module libfcoe was already added
    ERROR: module 'fdomain' not found
    module libfcoe was already added
    module scsi_mod was already added
    module libfc was already added
    module scsi_transport_fc was already added
    adding module fnic
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/fnic
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/fnic/fnic.ko.gz
    ERROR: module 'gdth' not found
    ERROR: module 'hpsa' not found
    ERROR: module 'hptiop' not found
    ERROR: module 'initio' not found
    ERROR: module 'ipr' not found
    ERROR: module 'ips' not found
    ERROR: module 'iscsi_boot_sysfs' not found
    ERROR: module 'iscsi_tcp' not found
    module libfc was already added
    ERROR: module 'libiscsi' not found
    ERROR: module 'libiscsi_tcp' not found
    module libsas was already added
    ERROR: module 'libsrp' not found
    module scsi_mod was already added
    module scsi_transport_fc was already added
    adding module lpfc
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/lpfc
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/lpfc/lpfc.ko.gz
    ERROR: module 'megaraid' not found
    module scsi_mod was already added
    adding module megaraid[-_]mm
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/megaraid
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/megaraid/megaraid_mm.ko.gz
    adding module megaraid[-_]mbox
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/megaraid/megaraid_mbox.ko.gz
    module megaraid_mm was already added
    module scsi_mod was already added
    adding module megaraid[-_]sas
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/megaraid/megaraid_sas.ko.gz
    module scsi_mod was already added
    module scsi_transport_sas was already added
    module scsi_mod was already added
    adding module raid[-_]class
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/raid_class.ko.gz
    adding module mpt2sas
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/mpt2sas
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/mpt2sas/mpt2sas.ko.gz
    module libsas was already added
    module scsi_mod was already added
    module scsi_transport_sas was already added
    adding module mvsas
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/mvsas
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/mvsas/mvsas.ko.gz
    adding module libosd
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/osd
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/osd/libosd.ko.gz
    module libosd was already added
    module scsi_mod was already added
    adding module osd
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/osd/osd.ko.gz
    ERROR: module 'osst' not found
    module libsas was already added
    module scsi_mod was already added
    module scsi_transport_sas was already added
    adding module pm8001
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/pm8001
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/pm8001/pm8001.ko.gz
    ERROR: module 'pmcraid' not found
    ERROR: module 'ppa' not found
    ERROR: module 'qla1280' not found
    adding file /lib/firmware/ql2500_fw.bin
    adding file /lib/firmware/ql2400_fw.bin
    adding file /lib/firmware/ql2322_fw.bin
    adding file /lib/firmware/ql2300_fw.bin
    adding file /lib/firmware/ql2200_fw.bin
    adding file /lib/firmware/ql2100_fw.bin
    module scsi_mod was already added
    module scsi_transport_fc was already added
    adding module qla2xxx
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/qla2xxx
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/qla2xxx/qla2xxx.ko.gz
    module scsi_transport_iscsi was already added
    module scsi_mod was already added
    adding module qla4xxx
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/qla4xxx
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/qla4xxx/qla4xxx.ko.gz
    ERROR: module 'qlogicfas408' not found
    ERROR: module 'raid_class' not found
    ERROR: module 'scsi_mod' not found
    ERROR: module 'scsi_tgt' not found
    ERROR: module 'scsi_transport_fc' not found
    ERROR: module 'scsi_transport_iscsi' not found
    ERROR: module 'scsi_transport_sas' not found
    ERROR: module 'scsi_transport_spi' not found
    ERROR: module 'scsi_transport_srp' not found
    ERROR: module 'scsi_wait_scan' not found
    ERROR: module 'sd_mod' not found
    ERROR: module 'ses' not found
    ERROR: module 'sg' not found
    ERROR: module 'sr_mod' not found
    ERROR: module 'stex' not found
    ERROR: module 'st' not found
    module scsi_transport_spi was already added
    module scsi_mod was already added
    adding module sym53c8xx
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/sym53c8xx_2
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/scsi/sym53c8xx_2/sym53c8xx.ko.gz
    ERROR: module 'tmscsim' not found
    ERROR: module 'vmw_pvscsi' not found
    ERROR: module 'cciss' not found
    ERROR: module 'cpqarray' not found
    ERROR: module 'DAC960' not found
    ERROR: module 'mptbase' not found
    ERROR: module 'mptctl' not found
    ERROR: module 'mptfc' not found
    ERROR: module 'mptsas' not found
    ERROR: module 'mptscsih' not found
    ERROR: module 'mptspi' not found
    module sd_mod was already added
    :: Parsing hook [sata]
    ERROR: module 'eata' not found
    ERROR: module 'sx8' not found
    ERROR: module 'sata_inic162x' not found
    ERROR: module 'sata_mv' not found
    ERROR: module 'sata_nv' not found
    ERROR: module 'sata_promise' not found
    ERROR: module 'sata_qstor' not found
    ERROR: module 'sata_sil24' not found
    ERROR: module 'sata_sil' not found
    ERROR: module 'sata_sis' not found
    ERROR: module 'sata_svw' not found
    ERROR: module 'sata_sx4' not found
    ERROR: module 'sata_uli' not found
    ERROR: module 'sata_via' not found
    ERROR: module 'sata_vsc' not found
    ERROR: module 'ahci' not found
    ERROR: module 'ahci_platform' not found
    ERROR: module 'pdc_adma' not found
    ERROR: module 'ata_piix' not found
    module sd_mod was already added
    :: Parsing hook [filesystems]
    adding module fscache
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/fscache
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/fscache/fscache.ko.gz
    adding module 9pnet
    adding dir /lib/modules/2.6.39-ARCH/kernel/net/9p
    adding file /lib/modules/2.6.39-ARCH/kernel/net/9p/9pnet.ko.gz
    adding module 9p
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/9p
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/9p/9p.ko.gz
    adding module affs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/affs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/affs/affs.ko.gz
    module fscache was already added
    adding module af[-_]rxrpc
    adding dir /lib/modules/2.6.39-ARCH/kernel/net/rxrpc
    adding file /lib/modules/2.6.39-ARCH/kernel/net/rxrpc/af-rxrpc.ko.gz
    adding module kafs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/afs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/afs/kafs.ko.gz
    adding module autofs4
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/autofs4
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/autofs4/autofs4.ko.gz
    adding module befs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/befs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/befs/befs.ko.gz
    adding module libcrc32c
    adding dir /lib/modules/2.6.39-ARCH/kernel/lib
    adding file /lib/modules/2.6.39-ARCH/kernel/lib/libcrc32c.ko.gz
    adding module crc32c
    adding dir /lib/modules/2.6.39-ARCH/kernel/crypto
    adding file /lib/modules/2.6.39-ARCH/kernel/crypto/crc32c.ko.gz
    adding module crc32c[-_]intel
    adding dir /lib/modules/2.6.39-ARCH/kernel/arch
    adding dir /lib/modules/2.6.39-ARCH/kernel/arch/x86
    adding dir /lib/modules/2.6.39-ARCH/kernel/arch/x86/crypto
    adding file /lib/modules/2.6.39-ARCH/kernel/arch/x86/crypto/crc32c-intel.ko.gz
    adding module zlib[-_]deflate
    adding dir /lib/modules/2.6.39-ARCH/kernel/lib/zlib_deflate
    adding file /lib/modules/2.6.39-ARCH/kernel/lib/zlib_deflate/zlib_deflate.ko.gz
    adding module btrfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/btrfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/btrfs/btrfs.ko.gz
    module fscache was already added
    adding module cachefiles
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/cachefiles
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/cachefiles/cachefiles.ko.gz
    module libcrc32c was already added
    adding module libceph
    adding dir /lib/modules/2.6.39-ARCH/kernel/net/ceph
    adding file /lib/modules/2.6.39-ARCH/kernel/net/ceph/libceph.ko.gz
    adding module ceph
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ceph
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ceph/ceph.ko.gz
    module fscache was already added
    adding module cifs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/cifs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/cifs/cifs.ko.gz
    adding module coda
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/coda
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/coda/coda.ko.gz
    adding module configfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/configfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/configfs/configfs.ko.gz
    adding module cramfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/cramfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/cramfs/cramfs.ko.gz
    module configfs was already added
    adding module dlm
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/dlm
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/dlm/dlm.ko.gz
    adding module ecryptfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ecryptfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ecryptfs/ecryptfs.ko.gz
    module osd was already added
    module libosd was already added
    adding module exofs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/exofs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/exofs/exofs.ko.gz
    adding module mbcache
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/mbcache.ko.gz
    adding module ext2
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ext2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ext2/ext2.ko.gz
    module mbcache was already added
    adding module jbd
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/jbd
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/jbd/jbd.ko.gz
    adding module ext3
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ext3
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ext3/ext3.ko.gz
    module mbcache was already added
    adding module jbd2
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/jbd2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/jbd2/jbd2.ko.gz
    adding module crc16
    adding file /lib/modules/2.6.39-ARCH/kernel/lib/crc16.ko.gz
    adding module ext4
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ext4
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ext4/ext4.ko.gz
    adding module fat
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/fat
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/fat/fat.ko.gz
    adding module nls[-_]cp437
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/nls
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/nls/nls_cp437.ko.gz
    module fat was already added
    adding module msdos
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/fat/msdos.ko.gz
    module fat was already added
    adding module vfat
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/fat/vfat.ko.gz
    module fscache was already added
    adding module fuse
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/fuse
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/fuse/fuse.ko.gz
    adding module cuse
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/fuse/cuse.ko.gz
    module fuse was already added
    module dlm was already added
    adding module gfs2
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/gfs2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/gfs2/gfs2.ko.gz
    adding module hfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/hfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/hfs/hfs.ko.gz
    adding module hfsplus
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/hfsplus
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/hfsplus/hfsplus.ko.gz
    adding module isofs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/isofs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/isofs/isofs.ko.gz
    module jbd2 was already added
    module jbd was already added
    module zlib_deflate was already added
    adding module mtd
    adding dir /lib/modules/2.6.39-ARCH/kernel/drivers/mtd
    adding file /lib/modules/2.6.39-ARCH/kernel/drivers/mtd/mtd.ko.gz
    adding module jffs2
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/jffs2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/jffs2/jffs2.ko.gz
    adding module jfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/jfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/jfs/jfs.ko.gz
    adding module sunrpc
    adding dir /lib/modules/2.6.39-ARCH/kernel/net/sunrpc
    adding file /lib/modules/2.6.39-ARCH/kernel/net/sunrpc/sunrpc.ko.gz
    adding module lockd
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/lockd
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/lockd/lockd.ko.gz
    module zlib_deflate was already added
    adding module logfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/logfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/logfs/logfs.ko.gz
    module mbcache was already added
    adding module ncpfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ncpfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ncpfs/ncpfs.ko.gz
    module sunrpc was already added
    adding module nfs[-_]acl
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/nfs_common
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/nfs_common/nfs_acl.ko.gz
    module sunrpc was already added
    adding module auth[-_]rpcgss
    adding dir /lib/modules/2.6.39-ARCH/kernel/net/sunrpc/auth_gss
    adding file /lib/modules/2.6.39-ARCH/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko.gz
    module sunrpc was already added
    module lockd was already added
    module nfs_acl was already added
    adding module nfsd
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/nfsd
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/nfsd/nfsd.ko.gz
    module fscache was already added
    module sunrpc was already added
    module lockd was already added
    module auth_rpcgss was already added
    module nfs_acl was already added
    adding module nfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/nfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/nfs/nfs.ko.gz
    adding module nilfs2
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/nilfs2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/nilfs2/nilfs2.ko.gz
    adding module ntfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ntfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ntfs/ntfs.ko.gz
    module configfs was already added
    adding module ocfs2[-_]nodemanager
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/cluster
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/cluster/ocfs2_nodemanager.ko.gz
    adding module ocfs2[-_]stackglue
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/ocfs2_stackglue.ko.gz
    module ocfs2_nodemanager was already added
    adding module ocfs2[-_]dlmfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/dlmfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/dlmfs/ocfs2_dlmfs.ko.gz
    module ocfs2_nodemanager was already added
    adding module ocfs2[-_]dlm
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/dlm
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/dlm/ocfs2_dlm.ko.gz
    module jbd2 was already added
    module ocfs2_stackglue was already added
    adding module quota[-_]tree
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/quota
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/quota/quota_tree.ko.gz
    module ocfs2_nodemanager was already added
    adding module ocfs2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/ocfs2.ko.gz
    module configfs was already added
    module ocfs2_stackglue was already added
    module ocfs2_dlm was already added
    module ocfs2_nodemanager was already added
    module ocfs2_stackglue was already added
    adding module ocfs2[-_]stack[-_]o2cb
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/ocfs2_stack_o2cb.ko.gz
    module dlm was already added
    module ocfs2_stackglue was already added
    adding module ocfs2[-_]stack[-_]user
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ocfs2/ocfs2_stack_user.ko.gz
    adding module crc[-_]itu[-_]t
    adding file /lib/modules/2.6.39-ARCH/kernel/lib/crc-itu-t.ko.gz
    adding module omfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/omfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/omfs/omfs.ko.gz
    module quota_tree was already added
    adding module quota[-_]v1
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/quota/quota_v1.ko.gz
    module quota_tree was already added
    adding module quota[-_]v2
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/quota/quota_v2.ko.gz
    adding module reiserfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/reiserfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/reiserfs/reiserfs.ko.gz
    adding module squashfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/squashfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/squashfs/squashfs.ko.gz
    module crc_itu_t was already added
    adding module udf
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/udf
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/udf/udf.ko.gz
    adding module ufs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/ufs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/ufs/ufs.ko.gz
    adding module xfs
    adding dir /lib/modules/2.6.39-ARCH/kernel/fs/xfs
    adding file /lib/modules/2.6.39-ARCH/kernel/fs/xfs/xfs.ko.gz
    :: Generating module dependencies
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/scsi_mod.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/sd_mod.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/aacraid/aacraid.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/scsi_transport_spi.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/aic7xxx/aic79xx.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/aic7xxx/aic7xxx.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/ata/libata.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/scsi_transport_sas.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/libsas/libsas.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/aic94xx/aic94xx.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/arcmsr/arcmsr.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/libiscsi.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/be2iscsi/be2iscsi.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/scsi_transport_fc.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/bfa/bfa.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/libfc/libfc.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/fcoe/libfcoe.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/uio/uio.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/net/ipv6/ipv6.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/net/cnic.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/bnx2fc/bnx2fc.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/bnx2i/bnx2i.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/libiscsi_tcp.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/cxgbi/libcxgbi.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/net/mdio.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/net/cxgb3/cxgb3.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/cxgbi/cxgb3i/cxgb3i.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/net/cxgb4/cxgb4.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/cxgbi/cxgb4i/cxgb4i.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/device_handler/scsi_dh.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/device_handler/scsi_dh_alua.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/device_handler/scsi_dh_emc.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/device_handler/scsi_dh_hp_sw.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/device_handler/scsi_dh_rdac.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/fcoe/fcoe.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/fnic/fnic.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/lpfc/lpfc.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/megaraid/megaraid_mm.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/megaraid/megaraid_mbox.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/megaraid/megaraid_sas.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/raid_class.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/mpt2sas/mpt2sas.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/mvsas/mvsas.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/osd/libosd.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/osd/osd.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/pm8001/pm8001.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/qla2xxx/qla2xxx.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/qla4xxx/qla4xxx.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/scsi/sym53c8xx_2/sym53c8xx.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/fscache/fscache.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/net/9p/9pnet.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/9p/9p.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/affs/affs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/net/rxrpc/af-rxrpc.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/afs/kafs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/autofs4/autofs4.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/befs/befs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/lib/libcrc32c.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/crypto/crc32c.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/arch/x86/crypto/crc32c-intel.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/lib/zlib_deflate/zlib_deflate.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/btrfs/btrfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/cachefiles/cachefiles.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/net/ceph/libceph.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ceph/ceph.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/cifs/cifs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/coda/coda.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/configfs/configfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/cramfs/cramfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/dlm/dlm.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ecryptfs/ecryptfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/exofs/exofs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/mbcache.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ext2/ext2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/jbd/jbd.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ext3/ext3.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/jbd2/jbd2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/lib/crc16.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ext4/ext4.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/fat/fat.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/nls/nls_cp437.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/fat/msdos.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/fat/vfat.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/fuse/fuse.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/fuse/cuse.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/gfs2/gfs2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/hfs/hfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/hfsplus/hfsplus.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/isofs/isofs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/drivers/mtd/mtd.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/jffs2/jffs2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/jfs/jfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/net/sunrpc/sunrpc.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/lockd/lockd.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/logfs/logfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ncpfs/ncpfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/nfs_common/nfs_acl.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/nfsd/nfsd.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/nfs/nfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/nilfs2/nilfs2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ntfs/ntfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ocfs2/cluster/ocfs2_nodemanager.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ocfs2/ocfs2_stackglue.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ocfs2/dlmfs/ocfs2_dlmfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ocfs2/dlm/ocfs2_dlm.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/quota/quota_tree.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ocfs2/ocfs2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ocfs2/ocfs2_stack_o2cb.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ocfs2/ocfs2_stack_user.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/lib/crc-itu-t.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/omfs/omfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/quota/quota_v1.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/quota/quota_v2.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/reiserfs/reiserfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/squashfs/squashfs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/udf/udf.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/ufs/ufs.ko.gz': No such file or directory
    install: cannot stat `/lib/modules/2.6.39-ARCH\033[m\033[K/kernel/fs/xfs/xfs.ko.gz': No such file or directory
    WARNING: Couldn't open directory /tmp/mkinitcpio.zHFFRR/lib/modules/2.6.39-ARCH: No such file or directory
    FATAL: Could not open /tmp/mkinitcpio.zHFFRR/lib/modules/2.6.39-ARCH/modules.dep.temp for writing: No such file or directory
    ERROR: file '/tmp/mkinitcpio.zHFFRR/lib/modules/2.6.39-ARCH/modules.dep' does not exist
    ERROR: file '/tmp/mkinitcpio.zHFFRR/lib/modules/2.6.39-ARCH/modules.alias' does not exist
    ERROR: file '/tmp/mkinitcpio.zHFFRR/lib/modules/2.6.39-ARCH/modules.symbols' does not exist
    :: Generating image '/boot/kernel26-fallback.img'
    :: Image generation successful
    ==> SUCCESS

  • BTRFS mkinitcpio hook

    UPDATE (6/10/10): http://bbs.archlinux.org/viewtopic.php? … 51#p772651
    THIS POST DEPRECATED UNTIL I UPDATE IT, USE THE UPDATED POST ABOVE
    available:
    http://aur.archlinux.org/packages.php?ID=33376
    this package will install a mkinitcpio hook intended for those who wish to have a single or multi-drive BTRFS file system as their / (root).  the hook will ensure that the chosen root device from the kernel command line is intact and safe to boot.  if root is not a BTRFS device, the hook is quietly skipped.
    it requires btrfs-progs from here:
    http://aur.archlinux.org/packages.php?ID=15635
    hook supports both UUID or device based root names.  UUID is safer; the entire BTRFS array only has one UUID, so referring to it means no problems. use /dev/device/by-uuid on kernel boot.
    hook supports hot spares by using a dummy, spare BTRFS file system to steal devices from as needed.  the spare pool can be referenced by label or UUID.**
    hook supports automatic repairing of the array if possible, automatic dropping of missing/failed devices if possible, and booting the array to a degraded state (one or more devices missing) if possible.**
    **NOTE: there are some bugs that may be in the hook/btrfs module/btrfs-progs that prevent raid1 (maybe others) arrays from being repaired (see http://pastebin.com/m5706f47f) however, this hook will work fine as is for single/multi-device arrays that are intact.  enable experimental options manually by editing options in the hook itself (/lib/initcpio/hooks/btrfs).  USE WITH CAUTION ON MULTI-DEVICE SETUPS.
    the initramfs script can be seen here:
    http://aur.archlinux.org/packages/mkini … btrfs_hook
    its fairly commented, although there are a few things i'll point out for others who want to edit:
    1) i plan to rework _btrfs_scandev() to be more flexible in the variables it produces.  that function simply parses "btrfs-show" and gleans valuable information from it.  it will be used to verify array states with certainty.
    2) seems that btrfsctl does not have meaningful exit codes right now, do not rely, see _btrfs_register().
    3) seems that after legitimately removing a device from an array (NOT using "missing" special keyword), the mount needs a "mount -o remout [mnt]" for the ***missing flag to be removed from btrfs-show.  not sure the ramification of this or if its necessary.
    4) some or all of this functionality may someday be provided by module/kernel
    needs work + comments
    add "btrfs" to HOOKS in mkinitcpio.conf
    Last edited by extofme (2010-06-10 06:09:10)

    bleh, sorry about the late response, i usually subscribe to topics i create/join, i must have missed this one.
    resi wrote:After minor problems with the mkinitcpio (lvm hook seems to conflict with the btrfs one) image and fstab (why do I have to specify the root fs there? its already mounted when fstab is examined)
    i could be mistaken here, but initially your / is mounted read-only.  during the init process, one of the primary scripts issues a "mount -o remount,rw /" to remount the root device as read-write.  i _think_ using the mount command in this way (against a mount point and not a device) requires the mount point to exist in the fstab.
    resi wrote:But what happens if I really screw it up? I'm on 2.6.33 (.2-1) and read about missing ioctl()s regarding btrfs, meaning I can't replace the "default" subvolume (whats the difference between a subvolume and a snapshot anyway?). Its also not possible to list available subvolumes/snpshots, meaning your script (or organizing snapshots in similar ways) is the only chance to keep track of them, right?
    the inability to set the default subvolume is kind of a non-issue after i thought about it more, and some of the discussion on arch-general.  i plan to update the hook soon to allow the "promotion" of the rollback to become the new active subvolume.  ill do this by snapshotting your current / to a new subvolume called /__active, and then permanently booting into that [__active] instead of / or "." (a period is the default subvolume, like current directory).
    there is no difference internally, whatsoever (AFIAK), between a subvolume and a snapshot.  its just a matter of context: a subvolume starts out empty (explicitly created via a command/etc.), and a snapshot starts out with content (COW operation against an existing subvolume, i.e. "copy")
    yeah without the ability to list available subvolumes, we have to make up some structure, and assume everything goes well.  my script simply assumes anything within /snapshots is indeed a snapshot that can be copied (to /__rollback) and booted.  even if we can list subvolumes, we'll still need some kind of predefined structure (so the script knows which snapshots are bootable, and which are not, i.e. snapshots of /home are not bootable).
    resi wrote:I guess a plain "mount -t btrfs /dev/xyz" will mount the "default" subvolume then.
    correct.
    resi wrote:
    Once I really screw up I will have to boot into a snapshot, mount the default subvolume somewhere and restore it using a full copy from the snapshot (a la rsync --delete), then reboot and I'm back at the start again.
    Is this correct?
    unfortunately, without modifying the script, a manual copy is necessary :-( totally defeating the advantages of btrfs.  so, yes.  the problem is that the default subvolume itself cannot be replace by another... note this is different from SETTING the default subvolume.  i'm not sure if the real default subvolume ("." the period) will ever be replaceable/removable, i'd have to ask the btrfs list.  this is why i advocate installing your system into a subvolume FROM THE BEGINNING.  this gives us more flexibility.
    resi wrote:Is there some way to permanently change the subvolume mounted by your hook (i.e. not running in a volatile snapshot, but actually drop the default one and always boot into a given snapshot until further notice - a new snapshot)?
    this is actually how i intend to implement non-volatile rollback abilities in the hook.  instead of booting the default "." subvolume, my hook will ALWAYS boot the subvolume called "__active", located at /__active.  this way you can put whatever you want there, and it will be booted at the next reboot.  therefore, you can boot into rollback mode (essentially booting into /__rollback), update/add/remove whatever you want, and when your satisfied, you simply snapshot /__rollback to /__active and your done.  reboot, and your new __active will be in the same state as the point it was created in rollback mode.
    does all this make sense?  i'm told i tend to over explain/complicate things :-).
    resi wrote:Before every -Syu I have to check for kernel/xorg updates, read about them, check the mailing list, wait ... wait ... wait ... loose patience, give it a shot, recompile/reinstall the necessary stuff (at least I've got PKGBUILDs prepared) and hope for the best. With btrfs, this is just a non-issue. Or at least will be once the integration is better.
    i hear ya.  i like the idea of riding the edge without the fear of being cut by it.  unfortunately, until btrfs is supported by grub2, kernel rollbacks aren't possible (you'd have to manually backup your old kernel+initrd).  something to keep in mind.
    hunterthomson wrote:However, if I can just tell my clients to reboot into a snapshot "problem solved." Then I can spend the time to solve the problem, without the client siting around with a broken system.
    bingo.  that is pretty much my primary motivation here... less time freaking out about down time/whatever; everybody wins.
    hunterthomson wrote:Did you know Fedora 13 supports Btrfs Snapshotting and Roll-Back. Super cool.
    i know they have some support but i haven't tried it; from what i've read, the support is pretty weak... you can get yum to create the snapshot by installing a package, but there is no utility to actually use them later on.  i could be mistaken as i don't use fedora, this is only what i've read.
    what sucks is pacman doesnt have any ability to use hooks... i dont think we will see automatic snapshots by the package manager without a wrapper like clyde/powerpill/packer/etc.
    C Anthony

  • Mkinitcpio: ERROR in HOOKS= line

    Hello,
    I am using archboot usb image to install from net (following https://wiki.archlinux.org/index.php/GR … I_systems). When I examine mkinitcpio.conf during system configuration, the HOOKS line is empty: HOOKS=""
    When I edit it and save, the installer replies: ERROR: Detected error in 'HOOKS=' line, please correct HOOKS= in /etc/mkinitcpio.conf!
    I edited the HOOKS line to read: HOOKS=”base udev autodetect scsi sata filesystems usbinput". I also tried editing 'HOOKS=' to various reasonable choices, yet I always get the same error.
    MODULES="ahci libahci xhci-hcd ehci-hcd ext4 vfat"
    'BINARIES=' and 'FILES=' are empty.
    Please advise,
    Thank you.
    PS Copied below are notes taken during the install, in case I am making any errors, this may or may not be useful.
    Grub 2 GPT install on ASUS UEFI
    boot archboot usb image (UEFI option x86_64, not LTS)
    gdisk /dev/sda
    x for expert mode
    z for zap
    partition 1    400MB EF00
    partition 2    2GB      Linux swap
    partition 3    25GB    Linux filesystem (/)
    partition 4    25GB      Linux filesystem (/home)
    w for write
    recheck: all good
    MBR: protective
    GPT: present
    mkfs.vfat -F32 /dev/sda1
    modprobe efivars
    lsmod | grep efivars
    output: efivars        10338    1
    [Arch Linux: /]# mkdir -p /boot/efi
    [Arch Linux: /]# mount -t vfat /dev/sda1 /boot/efi
    [Arch Linux: /]# mkdir -p /boot/efi/efi
    mkfs.ext4 /dev/sda3
    mkfs.ext4 /dev/sda4
    mkswap /dev/sda2
    Swith to installer
    setting mountpoints:
    partition 2: swap
    partition 3: /
    partition 4: home
    partition 1: /boot
    All successfully mounted to: /tmp/install/ e.g. /home mounted to /tmp/install/home
    Select source: network
    modprobe e1000e
    use dhcpcd
    select mirror: http://ftp.osuosl.org
    generate package list: core only
    install packages
    Configure system:
    use network settings from before
    preconfiguration? Use hwdetect for: '/etc.rc.conf' and 'etc/mkinitcpio.conf'?
    Recommended to say 'YES': yes
    boot from usb: no
    mkinitcpio.conf
    Hooks=”base udev autodetect scsi sata filesystems usbinput”
    ERROR: detected error in 'HOOKS=' line

    Thank you for the suggestion Lone_Wolf. I was using the above partition configuration as a test. I now am running Arch off an SSD, with /var mounted from another disk. I still encounter the same issue with mkinitcpio.conf in the installer. I still can only boot through the UEFI BIOS firmware.
    My system is updated (pacman -Syu) and here is the output of mkinitcpio -p linux:
    Building image from preset: 'default'
    -k  /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    Starting build: 3.2.13-1-ARCH
    Parsing hook: [base]
    Parsing hook: [udev]
    Parsing hook: [autodetect]
    Parsing hook: [scsi]
    Parsing hook: [sata]
    Parsing hook: [filesystems]
    Parsing hook: [usbinput]
    Generating module dependencies
    Creating gzip initcpio image: /boot/initramsfs-linux.img
    Image generation successful
    Building image from preset: 'fallback'
    -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    Starting build: 3.2.13-1-arch
    Parsing hook: [base]
    Parsing hook: [udev]
    Parsing hook: [scsi]
    Parsing hook: [sata]
    Parsing hook: [filesystems]
    Parsing hook: [usbinput]
    Generating module dependencies
    Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    Image generation successful
    Now, when I reboot, I get a message "Filesystem Check Failed". I saw this before and fixed it by:
    remounting / rw (as instructed by the prompt)
    editing mkinitcpio.conf and including lvm2 in the HOOKS line: HOOKS="base udev autodetect scsi sata lvm2 filesystems usbinput"
    # mkinitcpio -p linux
    I am now able to boot, using the firmware boot loader and the mkinitcpio.conf that includes lvm2. Note that the only partitions mounted on lvm are /var and /sgmedia (custom made directory - btrfs).
    Any suggestions welcome,
    thank you.

  • Understanding mkinitcpio, kernel parameters, and hooks.

    I have a fairly complex setup involving dm-crypt volumes being unlocked pre-boot, so I'm somewhat familiar with mkinitcpio.conf and grub.cfg. However, I still have a burning question: are kernel parameters actually interpreted by the kernel? For example, the ip= parameter is included in the kernel documentation, leading me to believe that the kernel interprets this parameter and acts upon it during boot. On the other hand, the cryptdevice= parameter appears to be specific to the mkinitcpio encrypt hook (does not appear in kernel documentation) which interprets it and runs cryptsetup in early userspace. In this case, are kernel parameters simply being used as a vehicle in order to pass information from the boot loader to early userspace? If so, why couldn't this be done by including a configuration file directly in the initcpio, which could be parsed at boot-time? Such a configuration file seems like a superior means of passing information to early userspace, as different files could be used for different hooks, they could be of different formats (i.e. contain linebreaks), and would not be subject to the maximum kernel command line length.
    In fact, it looks like some hooks already do this. For example, the sd-encrypt hook includes a file /etc/crypttab file directly in the initcpio image. Why would other hooks use kernel parameters when the early userspace filesystem is available for use?
    I'm primarily asking just for educational purposes. Explanations are appreciated.

    Spider.007 wrote:I think the ip-parameter is coincidentally the same as the net-module uses.
    I found this in the mkinitcpio-nfs-utils ipconfig README:
    These [parameters] (along with the ugliness of the long form) are present for compatibility with the in-kernel ipconfig code from 2.4 and earlier kernels.
    which supports the hypothesis that the kernel parameter is left over from a time when network configurations were done in kernel-space. The syntax remained the same in the initcpio hook to maintain backwards comparability with older bootloader configurations. At least that's the impression I'm under.
    Spider.007 wrote:The kernel is still responsible for mounting the rootfs; what has changed is that most distro's switched to initcpio's for reasons that are repeated on the wiki: ...
    Yes, I believe the kernel itself performs the mount(2) which overwrites the / mountpoint with the real root filesystem after it is available. (But for all I know, a hook could be performing a mount(8) instead of the kernel!) What I meant was that the kernel no longer is responsible for all of the initializations necessary for the real root filesystem to become available (so the kernel can mount it), hence the need for initrd/initramfs/initcpio. Take dropbear_initrd_encrypt for example. Dropbear is a userspace SSH server. Without early userspace, an SSH server would have to be embedded in the kernel just for the 0.01% of users out there who need to be able to unlock volumes remotely. Early userspace allows complex systems like this (and other very different ones) to be configured without the need for patching the kernel.
    I assume that some low-level kernel parameters (maxcpus= for example) are still relevant solely to the kernel, as things like SMP process scheduling can't easily be implemented in userspace.
    Am I getting this right so far?
    Last edited by EscapedNull (2015-01-13 19:40:50)

  • Mkinitcpio and consolefont hook

    Hi there.
    I am trying to use font ter-112n in early userspace.
    I have tried doing what the wiki says about fonts.
    I've set CONSOLEFONT="ter-112n" in /etc/rc.conf
    I've rebuilt the kernel image using mkinitcpio -p kernel26
    But when I boot up I get something similar to this:
    :: Running hook [consolefont]: Error: KDFONTOP: Invalid argument
    And then it goes to the arch boot process and before it loads the daemons it says
    :: Setting font : [ter-112n] [DONE]
    And then the font is set.
    Is there any way to fix this?Or am I doing something wrong?
    Appreciating all the help.

    Try using Uni2-Terminus family font (actually, any encoding and size you need -- just look into /usr/share/kbd/consolefonts and pick the one you like best). There should be no problem running successfully mkinitcpio with it. Don't forget putting 'consolefont' as the first entry in the mkinitcpio.conf HOOKS array as well, so that the font gets loaded at the very beginning of the boot process.
    Edit:
    Here you can read that your problem has something to do with incorrect font selection. Changing it should fix your problem.
    Last edited by bohoomil (2011-05-28 20:39:57)

  • Pacman & the missing mkinitcpio hook

    Hi all,
    A pretty general question, but do people find files missing that should have been installed?
    I had just upgraded the current testing versions of mkinitcpio (0.4.2-1) and cryptsetup (1.0.3-2). One of the main differences in the upgrade is the movement of the mkinitcpio encrypt hook from the mkinitcpio package to the cryptsetup package. But the outcome of the upgrade left me without a encrypt hook, and I was left wondering where the encrypt hook had disappeared to...in some way a concern of dtw in this thread [split] fbsplash & mkinitcpio became concrete. I had read that thread a month ago, it wasn't upmost in my mind when trying to figure out where the encrypt hook had gone- remember that the most recent testing cryptsetup claimed it was installed, I was going to start on a thread on the missing hook.
    So, anyway, if I upgraded mkinitcpio and cryptsetup during the same pacman session could things be loused up? I don't recall doing a force, but was it all down to operator error?
    cheers

    brain0: I did reinstall cryptsetup once I realised that's where the encrypt hook is now, so that's fine. It was a comment by you in the new initramfs, testers welcome thread that helped- I didn't see any note when installing mkinitcpio 0.4.2-1.
    I'm not saying it was because of the move of the hook from one package to another, just that I spent some time wondering what had gone wrong in the packaging of the 0.4.2 version of mkinitcpio (when nothing actually had)- more a cognitive issue than technical!
    Nope, no XFS here! Thanks for the bug report link, I was in the dark about that past pacman bug, and I'll look out for anything more.
    Thanks all.

  • [SOLVED] mkinitcpio (problem with ide and encrypt hooks)

    I've installed kernel26-beyond 2.6.19beyond2 and after that mkinitcpio couldn't generate img file. I tried with 2 configs:
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES="reiser4 ext2 reiserfs"
    # BINARIES
    # This setting includes, into the CPIO image, and additional
    # binaries a given user may wish. This is run first, so may
    # be used to override the actual binaries used in a given hook.
    # (Existing files are NOT overwritten is already added)
    # BINARIES are dependancy parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in anyway. This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options,
    # like so:
    # FILES="/etc/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'modload' may be used in place of 'udev', but is not recommended
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    # This setup specifies all modules in the MODULES setting above.
    # No raid, lvm, or encrypted root is needed.
    # HOOKS="base"
    # This setup will autodetect all modules for your system and should
    # work as a sane default
    # HOOKS="base udev autodetect ide scsi sata filesystems"
    # This setup will generate a 'full' image which supports most systems.
    # No autodetection is done.
    # HOOKS="base udev ide scsi sata usb filesystems"
    # This setup assembles an ide raid array with an encrypted root FS.
    # Note: See 'mkinitcpio -H raid' for more information on raid devices.
    # HOOKS="base udev ide raid encrypt filesystems"
    # This setup loads an LVM volume group on a usb device.
    # HOOKS="base udev usb filesystems lvm"
    HOOKS="base udev autodetect ide scsi sata encrypt filesystems"
    and
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES="reiser4 ext2 reiserfs"
    # BINARIES
    # This setting includes, into the CPIO image, and additional
    # binaries a given user may wish. This is run first, so may
    # be used to override the actual binaries used in a given hook.
    # (Existing files are NOT overwritten is already added)
    # BINARIES are dependancy parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in anyway. This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options,
    # like so:
    # FILES="/etc/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'modload' may be used in place of 'udev', but is not recommended
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    # This setup specifies all modules in the MODULES setting above.
    # No raid, lvm, or encrypted root is needed.
    # HOOKS="base"
    # This setup will autodetect all modules for your system and should
    # work as a sane default
    # HOOKS="base udev autodetect ide scsi sata filesystems"
    # This setup will generate a 'full' image which supports most systems.
    # No autodetection is done.
    # HOOKS="base udev ide scsi sata usb filesystems"
    # This setup assembles an ide raid array with an encrypted root FS.
    # Note: See 'mkinitcpio -H raid' for more information on raid devices.
    # HOOKS="base udev ide raid encrypt filesystems"
    # This setup loads an LVM volume group on a usb device.
    # HOOKS="base udev usb filesystems lvm"
    HOOKS="base udev autodetect scsi sata encrypt filesystems"
    With the first config mkinitcpio froze when was generating ide hook and with the second froze when generating encrypt hook.
    Any idea what might have gone wrong? What should I do?
    Best regards,
    jasiekd.
    Last edited by jasiekd (2007-02-20 14:00:49)

    I don't have any experience with the beyond-kernel, but on two of my machines which already use encrypted root with LUKS I have added the following modules into /etc/mkinitcpio.conf
    (I use AES for swap & Serpent for the rest, sha256 as essiv-hash)
    MODULES="dm-crypt aes-i586 serpent sha256"
    Did you switch the Kernel on an already installed/running System or did you make a fresh installation with the beyond-kernel? In case your System is already installed, you could try the mkinitcpio procedure with a life-cd (may be worth a try).
    There's also an excellent article in the wiki:
    http://wiki.archlinux.org/index.php/Mkinitcpio
    In the troubleshooting-section of the article there's also a solution to a problem concerning the beyond-kernel and ide/sata/scsi, which could be just what you are looking for. 
    Hope it'll be helpfull!

  • Fglrx + acpi = hard problems

    Hello to all, I installed one year ago chakra linux distrbution and all works fine but some things doesn't like to me, so I installed Slackware, but I don't have much time to spent compiling programs.... and compiling... so, I come back with arch + kde. The problem is the ATI video card, I have one 4870x2 PCI-e 16x 2gb gddr5 (chipset r700) and in the last installation I don't remember problems with the propietary driver. But this time the driver doesn't work.
    My hardware is: motherboard gigabyte ga-ma970fxt-ud5p, phenom 2 945 black edition am3, 8gb ddr3 @1600mhz ocz reaper, hdd WD velociraptor 300gb, video card described before.
    I made a fresh install last Monday and every works fine, but I want to install the ATI video propietary drivers and...
    In the first step, I read five or six times this page https://wiki.archlinux.org/index.php/ATI_Catalyst and I followed the procedure according to the section called "Installing from AUR" and I made:
    su root
    pacman -Sy base-devel
    su faktorqm
    cd /home/faktorqm
    wget http://aur.archlinux.org/packages/ca/ca … ils.tar.gz
    wget https://aur.archlinux.org/packages/ca/c … mon.tar.gz
    tar -zxvf catalyst-utils.tar.gz
    tar -zxvf catalyst-daemon.tar.gz
    cd catalyst-utils/
    makepkg -s PKGBUILD
    su root
    pacman -U catalyst-utils-11.12-1-x86_64.pkg.tar.xz
    su faktorqm
    mv ati-driver-installer-11-12-x86.x86_64.run ../catalyst-daemon/
    cd ..
    cd catalyst-daemon/
    makepkg -s PKGBUILD
    su root
    pacman -U catalyst-daemon-11.12-1-x86_64.pkg.tar.xz
    su faktorqm
    cd ..
    No errors in this procedure.
    note 0: my user is called "faktorqm"
    note 1:
    [faktorqm@the_missile /]$ uname -a
    Linux the_missile 3.2.1-2-ARCH #1 SMP PREEMPT Mon Jan 23 12:40:01 UTC 2012 x86_64 AMD Phenom(tm) II X4 955 Processor AuthenticAMD GNU/Linux
    [faktorqm@the_missile /]$
    note 2:
    [faktorqm@the_missile /]$ cat /etc/mkinitcpio.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES="fglrx"
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run first, so it may be used to
    # override the actual binaries used in a given hook.
    # (Existing files are NOT overwritten if already added)
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options
    # like so:
    # FILES="/etc/modprobe.d/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ## No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    ## This setup will autodetect all modules for your system and should
    ## work as a sane default
    # HOOKS="base udev autodetect pata scsi sata filesystems"
    ## This is identical to the above, except the old ide subsystem is
    ## used for IDE devices instead of the new pata subsystem.
    # HOOKS="base udev autodetect ide scsi sata filesystems"
    ## This setup will generate a 'full' image which supports most systems.
    ## No autodetection is done.
    # HOOKS="base udev pata scsi sata usb filesystems"
    ## This setup assembles a pata mdadm array with an encrypted root FS.
    ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
    # HOOKS="base udev pata mdadm encrypt filesystems"
    ## This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev usb lvm2 filesystems"
    HOOKS="base udev autodetect pata scsi sata filesystems usbinput"
    # COMPRESSION
    # Use this to compress the initramfs image. With kernels earlier than
    # 2.6.30, only gzip is supported, which is also the default. Newer kernels
    # support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
    # compression.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    #COMPRESSION="lzop"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    [faktorqm@the_missile /]$
    note 4:
    [faktorqm@the_missile /]$ cat /boot/grub/menu.lst
    # Config file for GRUB - The GNU GRand Unified Bootloader
    # /boot/grub/menu.lst
    # DEVICE NAME CONVERSIONS
    # Linux Grub
    # /dev/fd0 (fd0)
    # /dev/sda (hd0)
    # /dev/sdb2 (hd1,1)
    # /dev/sda3 (hd0,2)
    # FRAMEBUFFER RESOLUTION SETTINGS
    # +-------------------------------------------------+
    # | 640x480 800x600 1024x768 1280x1024
    # ----+--------------------------------------------
    # 256 | 0x301=769 0x303=771 0x305=773 0x307=775
    # 32K | 0x310=784 0x313=787 0x316=790 0x319=793
    # 64K | 0x311=785 0x314=788 0x317=791 0x31A=794
    # 16M | 0x312=786 0x315=789 0x318=792 0x31B=795
    # +-------------------------------------------------+
    # for more details and different resolutions see
    # [url]https://wiki.archlinux.org/index.php/GRUB#Framebuffer_resolution[/url]
    # general configuration:
    timeout 5
    default 0
    color light-blue/black light-cyan/blue
    # boot sections follow
    # each is implicitly numbered from 0 in the order of appearance below
    # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
    # (0) Arch Linux
    title Arch Linux
    root (hd2,1)
    kernel /boot/vmlinuz-linux root=/dev/sda2 ro nomodeset acpi=off
    initrd /boot/initramfs-linux.img
    # (1) Arch Linux
    title Arch Linux Fallback
    root (hd2,1)
    kernel /boot/vmlinuz-linux root=/dev/sda2 ro nomodeset acpi=off
    initrd /boot/initramfs-linux-fallback.img
    # (2) Windows
    title Windows
    rootnoverify (hd0,0)
    makeactive
    chainloader +1
    [faktorqm@the_missile /]$
    note 5:
    cat /var/log/boot (output stripped)
    Thu Jan 26 21:45:02 2012: :: Checking fglrx [BUSY] ^[[u: Loading fglrx [FAIL][
    note 6:
    [faktorqm@the_missile /]$ dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.2.1-2-ARCH (nobody@skynet) (gcc version 4.6.2 20111223 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jan 23 12:40:01 UTC 2012
    [ 0.000000] Command line: root=/dev/sda2 ro nomodeset acpi=off
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    [ 0.000000] BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000bfde0000 (usable)
    [ 0.000000] BIOS-e820: 00000000bfde0000 - 00000000bfee0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000bfee0000 - 00000000bfee3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000bfee3000 - 00000000bfef0000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000bfef0000 - 00000000bff00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000240000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.4 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. GA-MA790FXT-UD5P/GA-MA790FXT-UD5P, BIOS F8n 01/07/2011
    [ 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 = 0x240000 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-C7FFF write-protect
    [ 0.000000] C8000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFC0000000 write-back
    [ 0.000000] 2 base 0000BFF00000 mask FFFFFFF00000 uncachable
    [ 0.000000] 3 base 000100000000 mask FFFF00000000 write-back
    [ 0.000000] 4 base 000200000000 mask FFFFC0000000 write-back
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 0000000240000000 aka 9216M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000bff00000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xbfde0 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000f4760] f4760
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000bfde0000
    [ 0.000000] 0000000000 - 0080000000 page 1G
    [ 0.000000] 0080000000 - 00bfc00000 page 2M
    [ 0.000000] 00bfc00000 - 00bfde0000 page 4k
    [ 0.000000] kernel direct mapping tables up to bfde0000 @ 1fffd000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000240000000
    [ 0.000000] 0100000000 - 0240000000 page 1G
    [ 0.000000] kernel direct mapping tables up to 240000000 @ bfddf000-bfde0000
    [ 0.000000] RAMDISK: 37c7b000 - 37ff0000
    [ 0.000000] Scanning NUMA topology in Northbridge 24
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000240000000
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000240000000
    [ 0.000000] NODE_DATA [000000023fffb000 - 000000023fffffff]
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00240000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[3] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x000bfde0
    [ 0.000000] 0: 0x00100000 -> 0x00240000
    [ 0.000000] On node 0 totalpages: 2096495
    [ 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: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 765472 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20480 pages used for memmap
    [ 0.000000] Normal zone: 1290240 pages, LIFO batch:31
    [ 0.000000] SFI: Simple Firmware Interface v0.81 [url]http://simplefirmware.org[/url]
    [ 0.000000] Intel MultiProcessor Specification v1.4
    [ 0.000000] MPTABLE: OEM ID: OEM00000
    [ 0.000000] MPTABLE: Product ID: PROD00000000
    [ 0.000000] MPTABLE: APIC at: 0xFEE00000
    [ 0.000000] Processor #0 (Bootup-CPU)
    [ 0.000000] Processor #1
    [ 0.000000] Processor #2
    [ 0.000000] Processor #3
    [ 0.000000] IOAPIC[0]: apic_id 8, version 33, address 0xfec00000, GSI 0-23
    [ 0.000000] Processors: 4
    [ 0.000000] SMP: Allowing 4 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 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000bfde0000 - 00000000bfee0000
    [ 0.000000] PM: Registered nosave memory: 00000000bfee0000 - 00000000bfee3000
    [ 0.000000] PM: Registered nosave memory: 00000000bfee3000 - 00000000bfef0000
    [ 0.000000] PM: Registered nosave memory: 00000000bfef0000 - 00000000bff00000
    [ 0.000000] PM: Registered nosave memory: 00000000bff00000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at bff00000 (gap: bff00000:20100000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023fc00000 s82048 r8192 d24448 u524288
    [ 0.000000] pcpu-alloc: s82048 r8192 d24448 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2059626
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/sda2 ro nomodeset acpi=off
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Node 0: aperture @ 590a000000 size 32 MB
    [ 0.000000] Aperture beyond 4GB. Ignoring.
    [ 0.000000] Your BIOS doesn't leave a aperture memory hole
    [ 0.000000] Please enable the IOMMU option in the BIOS setup
    [ 0.000000] This costs you 64 MB of RAM
    [ 0.000000] Mapping aperture over 65536 KB of RAM @ b4000000
    [ 0.000000] PM: Registered nosave memory: 00000000b4000000 - 00000000b8000000
    [ 0.000000] Memory: 8108168k/9437184k available (4279k kernel code, 1051204k absent, 277812k reserved, 4601k data, 728k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] Verbose stalled-CPUs detection is disabled.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 3222.584 MHz processor.
    [ 0.006669] Calibrating delay loop (skipped), value calculated using timer frequency.. 6447.71 BogoMIPS (lpj=10741946)
    [ 0.006672] pid_max: default: 32768 minimum: 301
    [ 0.006690] Security Framework initialized
    [ 0.006693] AppArmor: AppArmor disabled by boot time parameter
    [ 0.007218] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.010432] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.011639] Mount-cache hash table entries: 256
    [ 0.011739] Initializing cgroup subsys cpuacct
    [ 0.011744] Initializing cgroup subsys memory
    [ 0.011751] Initializing cgroup subsys devices
    [ 0.011752] Initializing cgroup subsys freezer
    [ 0.011754] Initializing cgroup subsys net_cls
    [ 0.011755] Initializing cgroup subsys blkio
    [ 0.011776] tseg: 00bff00000
    [ 0.011778] CPU: Physical Processor ID: 0
    [ 0.011779] CPU: Processor Core ID: 0
    [ 0.011781] mce: CPU supports 6 MCE banks
    [ 0.011788] using AMD E400 aware idle routine
    [ 0.012331] ftrace: allocating 16774 entries in 66 pages
    [ 0.013474] ExtINT not setup in hardware but reported by MP table
    [ 0.013954] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
    [ 0.049389] CPU0: AMD Phenom(tm) II X4 955 Processor stepping 02
    [ 0.153335] Performance Events: AMD PMU driver.
    [ 0.153338] ... version: 0
    [ 0.153339] ... bit width: 48
    [ 0.153340] ... generic registers: 4
    [ 0.153341] ... value mask: 0000ffffffffffff
    [ 0.153342] ... max period: 00007fffffffffff
    [ 0.153344] ... fixed-purpose events: 0
    [ 0.153345] ... event mask: 000000000000000f
    [ 0.153372] System has AMD C1E enabled
    [ 0.153381] Switch to broadcast mode on CPU0
    [ 0.173363] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.199996] Booting Node 0, Processors #1
    [ 0.199998] smpboot cpu 1: start_ip = 9a000
    [ 0.296660] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.296660] Switch to broadcast mode on CPU1
    [ 0.316659] #2
    [ 0.316660] smpboot cpu 2: start_ip = 9a000
    [ 0.413323] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.413319] Switch to broadcast mode on CPU2
    [ 0.433315] #3 Ok.
    [ 0.433316] smpboot cpu 3: start_ip = 9a000
    [ 0.529987] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.529978] Switch to broadcast mode on CPU3
    [ 0.536635] Brought up 4 CPUs
    [ 0.536637] Total of 4 processors activated (25789.68 BogoMIPS).
    [ 0.540078] devtmpfs: initialized
    [ 0.541202] PM: Registering ACPI NVS region at bfee0000 (12288 bytes)
    [ 0.541202] print_constraints: dummy:
    [ 0.541202] NET: Registered protocol family 16
    [ 0.543338] node 0 link 0: io port [9000, ffff]
    [ 0.543340] TOM: 00000000c0000000 aka 3072M
    [ 0.543342] Fam 10h mmconf [e0000000, e00fffff]
    [ 0.543343] node 0 link 0: mmio [a0000, bffff]
    [ 0.543345] node 0 link 0: mmio [c0000000, dfffffff]
    [ 0.543347] node 0 link 0: mmio [f0000000, fe02ffff]
    [ 0.543348] node 0 link 0: mmio [e0000000, e08fffff] ==> [e0100000, e08fffff]
    [ 0.543351] TOM2: 0000000240000000 aka 9216M
    [ 0.543352] bus: [00, 08] on node 0 link 0
    [ 0.543354] bus: 00 index 0 [io 0x0000-0xffff]
    [ 0.543355] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
    [ 0.543357] bus: 00 index 2 [mem 0xc0000000-0xdfffffff]
    [ 0.543358] bus: 00 index 3 [mem 0xe0900000-0xffffffff]
    [ 0.543359] bus: 00 index 4 [mem 0xe0100000-0xe08fffff]
    [ 0.543361] bus: 00 index 5 [mem 0x240000000-0xfcffffffff]
    [ 0.543369] Extended Config Space enabled on 1 nodes
    [ 0.543426] PCI: Using configuration type 1 for base access
    [ 0.543427] PCI: Using configuration type 1 for extended access
    [ 0.543782] bio: create slab <bio-0> at 0
    [ 0.543782] ACPI: Interpreter disabled.
    [ 0.543782] vgaarb: loaded
    [ 0.543782] PCI: Probing PCI hardware
    [ 0.543782] PCI: Probing PCI hardware (bus 00)
    [ 0.543782] pci 0000:00:00.0: [1002:5956] type 0 class 0x000600
    [ 0.543782] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
    [ 0.543782] pci 0000:00:02.0: [1002:5978] type 1 class 0x000604
    [ 0.543782] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 0.543782] pci 0000:00:02.0: PME# disabled
    [ 0.543782] pci 0000:00:07.0: [1002:597d] type 1 class 0x000604
    [ 0.543782] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    [ 0.543782] pci 0000:00:07.0: PME# disabled
    [ 0.543782] pci 0000:00:09.0: [1002:597e] type 1 class 0x000604
    [ 0.543782] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    [ 0.543782] pci 0000:00:09.0: PME# disabled
    [ 0.543782] pci 0000:00:0a.0: [1002:597f] type 1 class 0x000604
    [ 0.543782] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
    [ 0.543782] pci 0000:00:0a.0: PME# disabled
    [ 0.543782] pci 0000:00:11.0: [1002:4390] type 0 class 0x000101
    [ 0.543782] pci 0000:00:11.0: reg 10: [io 0xff00-0xff07]
    [ 0.543782] pci 0000:00:11.0: reg 14: [io 0xfe00-0xfe03]
    [ 0.543782] pci 0000:00:11.0: reg 18: [io 0xfd00-0xfd07]
    [ 0.543782] pci 0000:00:11.0: reg 1c: [io 0xfc00-0xfc03]
    [ 0.543782] pci 0000:00:11.0: reg 20: [io 0xfb00-0xfb0f]
    [ 0.543782] pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
    [ 0.543782] pci 0000:00:11.0: set SATA to AHCI mode
    [ 0.543782] pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
    [ 0.543782] pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
    [ 0.543782] pci 0000:00:12.1: [1002:4398] type 0 class 0x000c03
    [ 0.543782] pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
    [ 0.543818] pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
    [ 0.543835] pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
    [ 0.543900] pci 0000:00:12.2: supports D1 D2
    [ 0.543901] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 0.543905] pci 0000:00:12.2: PME# disabled
    [ 0.543925] pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
    [ 0.543937] pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
    [ 0.543995] pci 0000:00:13.1: [1002:4398] type 0 class 0x000c03
    [ 0.544007] pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
    [ 0.544070] pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
    [ 0.544088] pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
    [ 0.544152] pci 0000:00:13.2: supports D1 D2
    [ 0.544154] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 0.544157] pci 0000:00:13.2: PME# disabled
    [ 0.544179] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
    [ 0.544264] pci 0000:00:14.1: [1002:439c] type 0 class 0x000101
    [ 0.544279] pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    [ 0.544287] pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    [ 0.544296] pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    [ 0.544305] pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    [ 0.544313] pci 0000:00:14.1: reg 20: [io 0xfa00-0xfa0f]
    [ 0.544358] pci 0000:00:14.2: [1002:4383] type 0 class 0x000403
    [ 0.544378] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
    [ 0.544431] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 0.544435] pci 0000:00:14.2: PME# disabled
    [ 0.544446] pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
    [ 0.544515] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
    [ 0.544552] pci 0000:00:14.5: [1002:4399] type 0 class 0x000c03
    [ 0.544564] pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
    [ 0.544624] pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
    [ 0.544636] pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
    [ 0.544645] pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
    [ 0.544655] pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
    [ 0.544666] pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
    [ 0.544682] PCI: peer root bus 00 res updated from pci conf
    [ 0.544710] pci 0000:01:00.0: [10b5:8647] type 1 class 0x000604
    [ 0.544718] pci 0000:01:00.0: reg 10: [mem 0xfdae0000-0xfdafffff]
    [ 0.544750] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.544753] pci 0000:01:00.0: PME# disabled
    [ 0.549971] pci 0000:00:02.0: PCI bridge to [bus 01-04]
    [ 0.549974] pci 0000:00:02.0: bridge window [io 0xb000-0xcfff]
    [ 0.549977] pci 0000:00:02.0: bridge window [mem 0xfd800000-0xfdafffff]
    [ 0.549980] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.550020] pci 0000:02:04.0: [10b5:8647] type 1 class 0x000604
    [ 0.550059] pci 0000:02:04.0: PME# supported from D0 D3hot D3cold
    [ 0.550062] pci 0000:02:04.0: PME# disabled
    [ 0.550085] pci 0000:02:08.0: [10b5:8647] type 1 class 0x000604
    [ 0.550124] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
    [ 0.550127] pci 0000:02:08.0: PME# disabled
    [ 0.550153] pci 0000:01:00.0: PCI bridge to [bus 02-04]
    [ 0.550158] pci 0000:01:00.0: bridge window [io 0xb000-0xcfff]
    [ 0.550161] pci 0000:01:00.0: bridge window [mem 0xfd800000-0xfd9fffff]
    [ 0.550165] pci 0000:01:00.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.550203] pci 0000:03:00.0: [1002:9441] type 0 class 0x000300
    [ 0.550216] pci 0000:03:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.550226] pci 0000:03:00.0: reg 18: [mem 0xfd9e0000-0xfd9effff 64bit]
    [ 0.550233] pci 0000:03:00.0: reg 20: [io 0xce00-0xceff]
    [ 0.550246] pci 0000:03:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.550263] pci 0000:03:00.0: supports D1 D2
    [ 0.550281] pci 0000:03:00.1: [1002:aa30] type 0 class 0x000403
    [ 0.550294] pci 0000:03:00.1: reg 10: [mem 0xfd9fc000-0xfd9fffff 64bit]
    [ 0.550338] pci 0000:03:00.1: supports D1 D2
    [ 0.556639] pci 0000:02:04.0: PCI bridge to [bus 03-03]
    [ 0.556643] pci 0000:02:04.0: bridge window [io 0xc000-0xcfff]
    [ 0.556646] pci 0000:02:04.0: bridge window [mem 0xfd900000-0xfd9fffff]
    [ 0.556651] pci 0000:02:04.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.556692] pci 0000:04:00.0: [1002:9441] type 0 class 0x000380
    [ 0.556707] pci 0000:04:00.0: reg 10: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.556719] pci 0000:04:00.0: reg 18: [mem 0xfd8f0000-0xfd8fffff 64bit]
    [ 0.556727] pci 0000:04:00.0: reg 20: [io 0xbe00-0xbeff]
    [ 0.556742] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.556762] pci 0000:04:00.0: supports D1 D2
    [ 0.563305] pci 0000:02:08.0: PCI bridge to [bus 04-04]
    [ 0.563310] pci 0000:02:08.0: bridge window [io 0xb000-0xbfff]
    [ 0.563313] pci 0000:02:08.0: bridge window [mem 0xfd800000-0xfd8fffff]
    [ 0.563317] pci 0000:02:08.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.563357] pci 0000:05:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.563369] pci 0000:05:00.0: reg 10: [io 0xae00-0xaeff]
    [ 0.563388] pci 0000:05:00.0: reg 18: [mem 0xfdfff000-0xfdffffff 64bit pref]
    [ 0.563401] pci 0000:05:00.0: reg 20: [mem 0xfdfe0000-0xfdfeffff 64bit pref]
    [ 0.563410] pci 0000:05:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.563436] pci 0000:05:00.0: supports D1 D2
    [ 0.563437] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.563441] pci 0000:05:00.0: PME# disabled
    [ 0.569972] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    [ 0.569975] pci 0000:00:07.0: bridge window [io 0xa000-0xafff]
    [ 0.569977] pci 0000:00:07.0: bridge window [mem 0xfd500000-0xfd5fffff]
    [ 0.569980] pci 0000:00:07.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.570011] pci 0000:06:00.0: [10ec:8168] type 0 class 0x000200
    [ 0.570022] pci 0000:06:00.0: reg 10: [io 0xee00-0xeeff]
    [ 0.570042] pci 0000:06:00.0: reg 18: [mem 0xfddff000-0xfddfffff 64bit pref]
    [ 0.570054] pci 0000:06:00.0: reg 20: [mem 0xfdde0000-0xfddeffff 64bit pref]
    [ 0.570063] pci 0000:06:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
    [ 0.570089] pci 0000:06:00.0: supports D1 D2
    [ 0.570090] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.570094] pci 0000:06:00.0: PME# disabled
    [ 0.576638] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    [ 0.576640] pci 0000:00:09.0: bridge window [io 0xe000-0xefff]
    [ 0.576643] pci 0000:00:09.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.576646] pci 0000:00:09.0: bridge window [mem 0xfdd00000-0xfddfffff 64bit pref]
    [ 0.576676] pci 0000:07:00.0: [197b:2363] type 0 class 0x000101
    [ 0.576738] pci 0000:07:00.0: reg 24: [mem 0xfdcfe000-0xfdcfffff]
    [ 0.576769] pci 0000:07:00.0: PME# supported from D3hot
    [ 0.576773] pci 0000:07:00.0: PME# disabled
    [ 0.576793] pci 0000:07:00.1: [197b:2363] type 0 class 0x000101
    [ 0.576810] pci 0000:07:00.1: reg 10: [io 0xdf00-0xdf07]
    [ 0.576820] pci 0000:07:00.1: reg 14: [io 0xde00-0xde03]
    [ 0.576830] pci 0000:07:00.1: reg 18: [io 0xdd00-0xdd07]
    [ 0.576840] pci 0000:07:00.1: reg 1c: [io 0xdc00-0xdc03]
    [ 0.576849] pci 0000:07:00.1: reg 20: [io 0xdb00-0xdb0f]
    [ 0.576899] pci 0000:07:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    [ 0.576908] pci 0000:00:0a.0: PCI bridge to [bus 07-07]
    [ 0.576910] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.576913] pci 0000:00:0a.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.576916] pci 0000:00:0a.0: bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
    [ 0.576949] pci 0000:08:07.0: [1814:0601] type 0 class 0x000280
    [ 0.576969] pci 0000:08:07.0: reg 10: [mem 0xfd7e0000-0xfd7effff]
    [ 0.577077] pci 0000:08:0e.0: [104c:8024] type 0 class 0x000c00
    [ 0.577098] pci 0000:08:0e.0: reg 10: [mem 0xfd7ff000-0xfd7ff7ff]
    [ 0.577110] pci 0000:08:0e.0: reg 14: [mem 0xfd7f8000-0xfd7fbfff]
    [ 0.577186] pci 0000:08:0e.0: supports D1 D2
    [ 0.577187] pci 0000:08:0e.0: PME# supported from D0 D1 D2 D3hot
    [ 0.577192] pci 0000:08:0e.0: PME# disabled
    [ 0.577223] pci 0000:00:14.4: PCI bridge to [bus 08-08] (subtractive decode)
    [ 0.577227] pci 0000:00:14.4: bridge window [io 0x9000-0x9fff]
    [ 0.577231] pci 0000:00:14.4: bridge window [mem 0xfd700000-0xfd7fffff]
    [ 0.577235] pci 0000:00:14.4: bridge window [mem 0xfd600000-0xfd6fffff pref]
    [ 0.577237] pci 0000:00:14.4: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.577239] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.577240] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    [ 0.577242] pci 0000:00:14.4: bridge window [mem 0xe0900000-0xffffffff] (subtractive decode)
    [ 0.577244] pci 0000:00:14.4: bridge window [mem 0xe0100000-0xe08fffff] (subtractive decode)
    [ 0.577246] pci 0000:00:14.4: bridge window [mem 0x240000000-0xfcffffffff] (subtractive decode)
    [ 0.577716] vgaarb: device added: PCI:0000:03:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.578250] PCI: pci_cache_line_size set to 64 bytes
    [ 0.578257] pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
    [ 0.578338] Expanded resource reserved due to conflict with PCI Bus #00
    [ 0.578340] reserve RAM buffer: 000000000009f800 - 000000000009ffff
    [ 0.578342] reserve RAM buffer: 00000000bfde0000 - 00000000bfffffff
    [ 0.578405] NetLabel: Initializing
    [ 0.578406] NetLabel: domain hash size = 128
    [ 0.578407] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.578416] NetLabel: unlabeled traffic allowed by default
    [ 0.582576] pnp: PnP ACPI: disabled
    [ 0.583349] PCI: max bus depth: 3 pci_try_num: 4
    [ 0.583381] pci 0000:03:00.0: BAR 6: assigned [mem 0xfd900000-0xfd91ffff pref]
    [ 0.583383] pci 0000:02:04.0: PCI bridge to [bus 03-03]
    [ 0.583385] pci 0000:02:04.0: bridge window [io 0xc000-0xcfff]
    [ 0.583389] pci 0000:02:04.0: bridge window [mem 0xfd900000-0xfd9fffff]
    [ 0.583392] pci 0000:02:04.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.583397] pci 0000:04:00.0: BAR 6: assigned [mem 0xfd800000-0xfd81ffff pref]
    [ 0.583398] pci 0000:02:08.0: PCI bridge to [bus 04-04]
    [ 0.583400] pci 0000:02:08.0: bridge window [io 0xb000-0xbfff]
    [ 0.583403] pci 0000:02:08.0: bridge window [mem 0xfd800000-0xfd8fffff]
    [ 0.583406] pci 0000:02:08.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.583410] pci 0000:01:00.0: PCI bridge to [bus 02-04]
    [ 0.583412] pci 0000:01:00.0: bridge window [io 0xb000-0xcfff]
    [ 0.583416] pci 0000:01:00.0: bridge window [mem 0xfd800000-0xfd9fffff]
    [ 0.583419] pci 0000:01:00.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.583423] pci 0000:00:02.0: PCI bridge to [bus 01-04]
    [ 0.583424] pci 0000:00:02.0: bridge window [io 0xb000-0xcfff]
    [ 0.583427] pci 0000:00:02.0: bridge window [mem 0xfd800000-0xfdafffff]
    [ 0.583429] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.583432] pci 0000:05:00.0: BAR 6: assigned [mem 0xfdf00000-0xfdf0ffff pref]
    [ 0.583433] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    [ 0.583435] pci 0000:00:07.0: bridge window [io 0xa000-0xafff]
    [ 0.583437] pci 0000:00:07.0: bridge window [mem 0xfd500000-0xfd5fffff]
    [ 0.583439] pci 0000:00:07.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.583442] pci 0000:06:00.0: BAR 6: assigned [mem 0xfdd00000-0xfdd0ffff pref]
    [ 0.583444] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    [ 0.583446] pci 0000:00:09.0: bridge window [io 0xe000-0xefff]
    [ 0.583448] pci 0000:00:09.0: bridge window [mem 0xfde00000-0xfdefffff]
    [ 0.583450] pci 0000:00:09.0: bridge window [mem 0xfdd00000-0xfddfffff 64bit pref]
    [ 0.583453] pci 0000:00:0a.0: PCI bridge to [bus 07-07]
    [ 0.583455] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
    [ 0.583457] pci 0000:00:0a.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.583459] pci 0000:00:0a.0: bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
    [ 0.583462] pci 0000:00:14.4: PCI bridge to [bus 08-08]
    [ 0.583464] pci 0000:00:14.4: bridge window [io 0x9000-0x9fff]
    [ 0.583469] pci 0000:00:14.4: bridge window [mem 0xfd700000-0xfd7fffff]
    [ 0.583472] pci 0000:00:14.4: bridge window [mem 0xfd600000-0xfd6fffff pref]
    [ 0.583488] pci 0000:00:02.0: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 0.583491] pci 0000:00:02.0: setting latency timer to 64
    [ 0.583495] pci 0000:01:00.0: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 0.583498] pci 0000:01:00.0: setting latency timer to 64
    [ 0.583503] pci 0000:02:04.0: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 0.583506] pci 0000:02:04.0: setting latency timer to 64
    [ 0.583510] pci 0000:02:08.0: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 0.583513] pci 0000:02:08.0: setting latency timer to 64
    [ 0.583521] pci 0000:00:07.0: PCI->APIC IRQ transform: INT A -> IRQ 19
    [ 0.583523] pci 0000:00:07.0: setting latency timer to 64
    [ 0.583530] pci 0000:00:09.0: PCI->APIC IRQ transform: INT A -> IRQ 17
    [ 0.583532] pci 0000:00:09.0: setting latency timer to 64
    [ 0.583535] pci 0000:00:0a.0: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 0.583537] pci 0000:00:0a.0: setting latency timer to 64
    [ 0.583544] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.583545] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.583547] pci_bus 0000:00: resource 6 [mem 0xc0000000-0xdfffffff]
    [ 0.583548] pci_bus 0000:00: resource 7 [mem 0xe0900000-0xffffffff]
    [ 0.583550] pci_bus 0000:00: resource 8 [mem 0xe0100000-0xe08fffff]
    [ 0.583551] pci_bus 0000:00: resource 9 [mem 0x240000000-0xfcffffffff]
    [ 0.583553] pci_bus 0000:01: resource 0 [io 0xb000-0xcfff]
    [ 0.583554] pci_bus 0000:01: resource 1 [mem 0xfd800000-0xfdafffff]
    [ 0.583556] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.583558] pci_bus 0000:02: resource 0 [io 0xb000-0xcfff]
    [ 0.583559] pci_bus 0000:02: resource 1 [mem 0xfd800000-0xfd9fffff]
    [ 0.583561] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xdfffffff 64bit pref]
    [ 0.583562] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 0.583564] pci_bus 0000:03: resource 1 [mem 0xfd900000-0xfd9fffff]
    [ 0.583565] pci_bus 0000:03: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.583567] pci_bus 0000:04: resource 0 [io 0xb000-0xbfff]
    [ 0.583569] pci_bus 0000:04: resource 1 [mem 0xfd800000-0xfd8fffff]
    [ 0.583570] pci_bus 0000:04: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.583572] pci_bus 0000:05: resource 0 [io 0xa000-0xafff]
    [ 0.583573] pci_bus 0000:05: resource 1 [mem 0xfd500000-0xfd5fffff]
    [ 0.583575] pci_bus 0000:05: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    [ 0.583576] pci_bus 0000:06: resource 0 [io 0xe000-0xefff]
    [ 0.583578] pci_bus 0000:06: resource 1 [mem 0xfde00000-0xfdefffff]
    [ 0.583579] pci_bus 0000:06: resource 2 [mem 0xfdd00000-0xfddfffff 64bit pref]
    [ 0.583581] pci_bus 0000:07: resource 0 [io 0xd000-0xdfff]
    [ 0.583582] pci_bus 0000:07: resource 1 [mem 0xfdc00000-0xfdcfffff]
    [ 0.583584] pci_bus 0000:07: resource 2 [mem 0xfdb00000-0xfdbfffff 64bit pref]
    [ 0.583586] pci_bus 0000:08: resource 0 [io 0x9000-0x9fff]
    [ 0.583587] pci_bus 0000:08: resource 1 [mem 0xfd700000-0xfd7fffff]
    [ 0.583589] pci_bus 0000:08: resource 2 [mem 0xfd600000-0xfd6fffff pref]
    [ 0.583590] pci_bus 0000:08: resource 4 [io 0x0000-0xffff]
    [ 0.583592] pci_bus 0000:08: resource 5 [mem 0x000a0000-0x000bffff]
    [ 0.583593] pci_bus 0000:08: resource 6 [mem 0xc0000000-0xdfffffff]
    [ 0.583595] pci_bus 0000:08: resource 7 [mem 0xe0900000-0xffffffff]
    [ 0.583596] pci_bus 0000:08: resource 8 [mem 0xe0100000-0xe08fffff]
    [ 0.583598] pci_bus 0000:08: resource 9 [mem 0x240000000-0xfcffffffff]
    [ 0.583619] NET: Registered protocol family 2
    [ 0.583770] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.584809] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.587809] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.588112] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.588114] TCP reno registered
    [ 0.588124] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.588174] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.588275] NET: Registered protocol family 1
    [ 0.919963] pci 0000:03:00.0: Boot video device
    [ 0.919980] PCI: CLS 64 bytes, default 64
    [ 0.920026] Unpacking initramfs...
    [ 0.965040] Freeing initrd memory: 3540k freed
    [ 0.966631] PCI-DMA: Disabling AGP.
    [ 0.968974] PCI-DMA: aperture base @ b4000000 size 65536 KB
    [ 0.968975] PCI-DMA: using GART IOMMU.
    [ 0.968977] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    [ 0.971843] platform rtc_cmos: registered platform RTC device (no PNP device found)
    [ 0.972020] IBS: LVT offset 1 assigned
    [ 0.972020] perf: AMD IBS detected (0x0000001f)
    [ 0.972020] audit: initializing netlink socket (disabled)
    [ 0.972020] type=2000 audit(1327614295.969:1): initialized
    [ 0.983339] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.013377] VFS: Disk quotas dquot_6.5.2
    [ 1.013418] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.013481] msgmni has been set to 15971
    [ 1.013571] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 1.013571] io scheduler noop registered
    [ 1.013571] io scheduler deadline registered
    [ 1.013571] io scheduler cfq registered (default)
    [ 1.015654] pcieport 0000:00:02.0: setting latency timer to 64
    [ 1.015654] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 1.015654] pcieport 0000:00:07.0: setting latency timer to 64
    [ 1.015654] pcieport 0000:00:07.0: irq 41 for MSI/MSI-X
    [ 1.015654] pcieport 0000:00:09.0: setting latency timer to 64
    [ 1.015654] pcieport 0000:00:09.0: irq 42 for MSI/MSI-X
    [ 1.015654] pcieport 0000:00:0a.0: setting latency timer to 64
    [ 1.015654] pcieport 0000:00:0a.0: irq 43 for MSI/MSI-X
    [ 1.015654] pcieport 0000:01:00.0: setting latency timer to 64
    [ 1.015654] pcieport 0000:01:00.0: irq 44 for MSI/MSI-X
    [ 1.015654] pcieport 0000:02:04.0: setting latency timer to 64
    [ 1.015654] pcieport 0000:02:04.0: irq 45 for MSI/MSI-X
    [ 1.015654] pcieport 0000:02:08.0: setting latency timer to 64
    [ 1.015654] pcieport 0000:02:08.0: irq 46 for MSI/MSI-X
    [ 1.015654] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.036604] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 1.089984] Linux agpgart interface v0.103
    [ 1.089984] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 1.090029] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.090040] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.090949] mousedev: PS/2 mouse device common for all mice
    [ 1.090949] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
    [ 1.090949] rtc0: alarms up to one day, 114 bytes nvram
    [ 1.090949] cpuidle: using governor ladder
    [ 1.090949] cpuidle: using governor menu
    [ 1.090949] TCP cubic registered
    [ 1.090949] NET: Registered protocol family 17
    [ 1.090949] Registering the dns_resolver key type
    [ 1.090949] PM: Hibernation image not present or could not be loaded.
    [ 1.090949] registered taskstats version 1
    [ 1.096953] rtc_cmos rtc_cmos: setting system clock to 2012-01-26 21:44:57 UTC (1327614297)
    [ 1.096980] Initializing network drop monitor service
    [ 1.097877] Freeing unused kernel memory: 728k freed
    [ 1.098012] Write protecting the kernel read-only data: 8192k
    [ 1.102668] Freeing unused kernel memory: 1848k freed
    [ 1.104691] Freeing unused kernel memory: 696k freed
    [ 1.110427] udevd[88]: starting version 178
    [ 1.135385] SCSI subsystem initialized
    [ 1.138212] usbcore: registered new interface driver usbfs
    [ 1.138227] usbcore: registered new interface driver hub
    [ 1.138580] usbcore: registered new device driver usb
    [ 1.140963] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.141074] ehci_hcd 0000:00:12.2: PCI->APIC IRQ transform: INT B -> IRQ 17
    [ 1.141108] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 1.141134] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    [ 1.141143] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 1.141178] ehci_hcd 0000:00:12.2: debug port 1
    [ 1.141201] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
    [ 1.141313] libata version 3.00 loaded.
    [ 1.148154] Disabling lock debugging due to kernel taint
    [ 1.148174] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    [ 1.149947] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 1.150125] hub 1-0:1.0: USB hub found
    [ 1.150131] hub 1-0:1.0: 6 ports detected
    [ 1.150373] ehci_hcd 0000:00:13.2: PCI->APIC IRQ transform: INT B -> IRQ 19
    [ 1.150416] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 1.153107] fglrx: Unknown symbol acpi_lid_notifier_register (err 0)
    [ 1.153224] fglrx: Unknown symbol acpi_lid_open (err 0)
    [ 1.153224] fglrx: Unknown symbol acpi_lid_notifier_unregister (err 0)
    [ 1.156619] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    [ 1.156631] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 1.156658] ehci_hcd 0000:00:13.2: debug port 1
    [ 1.156682] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
    [ 1.157683] fglrx: Unknown symbol acpi_lid_notifier_register (err 0)
    [ 1.157800] fglrx: Unknown symbol acpi_lid_open (err 0)
    [ 1.157842] fglrx: Unknown symbol acpi_lid_notifier_unregister (err 0)
    [ 1.160890] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 1.166602] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 1.166655] hub 2-0:1.0: USB hub found
    [ 1.166658] hub 2-0:1.0: 6 ports detected
    [ 1.166724] ahci 0000:00:11.0: version 3.0
    [ 1.166724] ahci 0000:00:11.0: PCI->APIC IRQ transform: INT A -> IRQ 22
    [ 1.166724] ahci 0000:00:11.0: irq 47 for MSI/MSI-X
    [ 1.166785] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    [ 1.166788] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    [ 1.167127] scsi0 : ahci
    [ 1.167127] scsi1 : ahci
    [ 1.167127] scsi2 : ahci
    [ 1.167127] scsi3 : ahci
    [ 1.167127] ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 47
    [ 1.167127] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 47
    [ 1.167127] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 47
    [ 1.167127] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 47
    [ 1.167127] ahci 0000:07:00.0: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 1.167127] pata_atiixp 0000:00:14.1: PCI->APIC IRQ transform: INT A -> IRQ 16
    [ 1.167127] scsi4 : pata_atiixp
    [ 1.167127] scsi5 : pata_atiixp
    [ 1.167127] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
    [ 1.167127] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
    [ 1.167127] ohci_hcd 0000:00:12.0: PCI->APIC IRQ transform: INT A -> IRQ 16
    [ 1.167127] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 1.167127] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
    [ 1.167127] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
    [ 1.179950] ahci 0000:07:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
    [ 1.179953] ahci 0000:07:00.0: flags: 64bit ncq pm led clo pmp pio slum part
    [ 1.179957] ahci 0000:07:00.0: setting latency timer to 64
    [ 1.180169] scsi6 : ahci
    [ 1.180169] scsi7 : ahci
    [ 1.180169] ata7: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe100 irq 18
    [ 1.180169] ata8: SATA max UDMA/133 abar m8192@0xfdcfe000 port 0xfdcfe180 irq 18
    [ 1.180169] pata_acpi 0000:07:00.1: enabling device (0000 -> 0001)
    [ 1.180169] pata_acpi 0000:07:00.1: PCI->APIC IRQ transform: INT B -> IRQ 18
    [ 1.180169] pata_acpi 0000:07:00.1: setting latency timer to 64
    [ 1.224303] hub 3-0:1.0: USB hub found
    [ 1.224303] hub 3-0:1.0: 3 ports detected
    [ 1.224334] ohci_hcd 0000:00:12.1: PCI->APIC IRQ transform: INT A -> IRQ 16
    [ 1.224334] ohci_hcd 0000:00:12.1: OHCI Host Controller
    [ 1.224334] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
    [ 1.224334] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
    [ 1.280959] hub 4-0:1.0: USB hub found
    [ 1.280959] hub 4-0:1.0: 3 ports detected
    [ 1.280986] ohci_hcd 0000:00:13.0: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 1.280986] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 1.280986] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
    [ 1.280986] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
    [ 1.333280] ata6.00: ATA-8: ST2000DM001-9YN164, CC96, max UDMA/133
    [ 1.333283] ata6.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 1.337945] hub 5-0:1.0: USB hub found
    [ 1.337945] hub 5-0:1.0: 3 ports detected
    [ 1.337978] ohci_hcd 0000:00:13.1: PCI->APIC IRQ transform: INT A -> IRQ 18
    [ 1.337978] ohci_hcd 0000:00:13.1: OHCI Host Controller
    [ 1.337978] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
    [ 1.337978] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
    [ 1.359919] ata6.01: ATA-8: ST31000528AS, CC34, max UDMA/133
    [ 1.359922] ata6.01: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 1.373275] ata6.00: configured for UDMA/100
    [ 1.394288] hub 6-0:1.0: USB hub found
    [ 1.394288] hub 6-0:1.0: 3 ports detected
    [ 1.394311] ohci_hcd 0000:00:14.5: PCI->APIC IRQ transform: INT C -> IRQ 18
    [ 1.394311] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 1.394311] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
    [ 1.394311] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
    [ 1.436583] ata6.01: configured for UDMA/100
    [ 1.450961] hub 7-0:1.0: USB hub found
    [ 1.450961] hub 7-0:1.0: 2 ports detected
    [ 1.489926] ata2: SATA link down (SStatus 0 SControl 300)
    [ 1.493261] ata1: SATA link down (SStatus 0 SControl 300)
    [ 1.499923] ata7: SATA link down (SStatus 0 SControl 300)
    [ 1.499932] ata8: SATA link down (SStatus 0 SControl 300)
    [ 1.649914] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.649910] ata3.00: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.02, max UDMA/100
    [ 1.653237] ata3.00: configured for UDMA/100
    [ 1.653263] scsi 2:0:0:0: CD-ROM HL-DT-ST DVD-RAM GH22NS30 1.02 PQ: 0 ANSI: 5
    [ 1.655553] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.676566] ata4.00: HPA detected: current 586070255, native 586072368
    [ 1.676570] ata4.00: ATA-8: WDC WD3000HLFS-01G6U0, 04.04V01, max UDMA/133
    [ 1.676570] ata4.00: 586070255 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.686562] ata4.00: configured for UDMA/133
    [ 1.686604] scsi 3:0:0:0: Direct-Access ATA WDC WD3000HLFS-0 04.0 PQ: 0 ANSI: 5
    [ 1.686689] scsi 5:0:0:0: Direct-Access ATA ST2000DM001-9YN1 CC96 PQ: 0 ANSI: 5
    [ 1.686712] scsi 5:0:1:0: Direct-Access ATA ST31000528AS CC34 PQ: 0 ANSI: 5
    [ 1.687055] pata_jmicron 0000:07:00.1: PCI->APIC IRQ transform: INT B -> IRQ 18
    [ 1.687055] pata_jmicron 0000:07:00.1: setting latency timer to 64
    [ 1.687055] sd 3:0:0:0: [sda] 586070255 512-byte logical blocks: (300 GB/279 GiB)
    [ 1.687055] sd 3:0:0:0: [sda] Write Protect is off
    [ 1.687055] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.687055] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.687055] sd 5:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 1.687055] sd 5:0:0:0: [sdb] 4096-byte physical blocks
    [ 1.687055] sd 5:0:0:0: [sdb] Write Protect is off
    [ 1.687055] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.687055] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.687055] sd 5:0:1:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.687055] sd 5:0:1:0: [sdc] Write Protect is off
    [ 1.687055] sd 5:0:1:0: [sdc] Mode Sense: 00 3a 00 00
    [ 1.687055] sd 5:0:1:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.687055] scsi8 : pata_jmicron
    [ 1.687055] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.687055] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.689935] scsi9 : pata_jmicron
    [ 1.690067] ata9: PATA max UDMA/100 cmd 0xdf00 ctl 0xde00 bmdma 0xdb00 irq 18
    [ 1.690067] ata10: PATA max UDMA/100 cmd 0xdd00 ctl 0xdc00 bmdma 0xdb08 irq 18
    [ 1.690067] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 1.706564] usb 3-3: new low-speed USB device number 2 using ohci_hcd
    [ 1.709922] sdb: sdb1 sdb2
    [ 1.710504] sda: sda1 sda2 sda3 sda4
    [ 1.710517] sda: p4 size 20969472 extends beyond EOD, enabling native capacity
    [ 1.710517] ata4: hard resetting link
    [ 1.726599] sdc: sdc1
    [ 1.731420] sd 5:0:0:0: [sdb] Attached SCSI disk
    [ 1.736584] sd 5:0:1:0: [sdc] Attached SCSI disk
    [ 1.896683] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.0/input/input0
    [ 1.897345] generic-usb 0003:046D:C521.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:12.0-3/input0
    [ 1.906614] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:12.0/usb3/3-3/3-3:1.1/input/input1
    [ 1.907285] generic-usb 0003:046D:C521.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:12.0-3/input1
    [ 1.907285] usbcore: registered new interface driver usbhid
    [ 1.907285] usbhid: USB HID core driver
    [ 1.973212] Switching to clocksource tsc
    [ 2.129599] usb 4-1: new low-speed USB device number 2 using ohci_hcd
    [ 2.193273] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.208095] ata4.00: n_sectors mismatch 586070255 != 586072368
    [ 2.208098] ata4.00: new n_sectors matches native, probably late HPA unlock, n_sectors updated
    [ 2.216578] ata4.00: configured for UDMA/133
    [ 2.216582] ata4: EH complete
    [ 2.216668] sd 3:0:0:0: [sda] 586072368 512-byte logical blocks: (300 GB/279 GiB)
    [ 2.216905] sda: detected capacity change from 300067970560 to 300069052416
    [ 2.243307] sda: sda1 sda2 sda3 sda4
    [ 2.243590] sd 3:0:0:0: [sda] Attached SCSI disk
    [ 2.341779] input: Genius Multimedia Keyboard as /devices/pci0000:00/0000:00:12.1/usb4/4-1/4-1:1.0/input/input2
    [ 2.341812] generic-usb 0003:0458:0708.0003: input,hidraw2: USB HID v1.11 Keyboard [Genius Multimedia Keyboard] on usb-0000:00:12.1-1/input0
    [ 2.361632] input: Genius Multimedia Keyboard as /devices/pci0000:00/0000:00:12.1/usb4/4-1/4-1:1.1/input/input3
    [ 2.361681] generic-usb 0003:0458:0708.0004: input,hiddev0,hidraw3: USB HID v1.11 Device [Genius Multimedia Keyboard] on usb-0000:00:12.1-1/input1
    [ 2.939621] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.992107] udevd[243]: starting version 178
    [ 4.220355] EDAC MC: Ver: 2.1.0
    [ 4.223287] input: PC Speaker as /devices/platform/pcspkr/input/input4
    [ 4.260077] MCE: In-kernel MCE decoding enabled.
    [ 4.265446] AMD64 EDAC driver v3.4.0
    [ 4.265512] EDAC amd64: DRAM ECC disabled.
    [ 4.265519] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    [ 4.265520] Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    [ 4.265521] (Note that use of the override may cause unknown side effects.)
    [ 4.289047] firewire_ohci 0000:08:0e.0: PCI->APIC IRQ transform: INT A -> IRQ 22
    [ 4.309438] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.309453] r8169 0000:05:00.0: PCI->APIC IRQ transform: INT A -> IRQ 19
    [ 4.309480] r8169 0000:05:00.0: setting latency timer to 64
    [ 4.309519] r8169 0000:05:00.0: irq 48 for MSI/MSI-X
    [ 4.309671] r8169 0000:05:00.0: eth0: RTL8168c/8111c at 0xffffc900017a0000, 00:24:1d:76:91:9c, XID 1c4000c0 IRQ 48
    [ 4.309673] r8169 0000:05:00.0: eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
    [ 4.309707] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 4.309719] r8169 0000:06:00.0: PCI->APIC IRQ transform: INT A -> IRQ 17
    [ 4.309732] r8169 0000:06:00.0: setting latency timer to 64
    [ 4.309766] r8169 0000:06:00.0: irq 49 for MSI/MSI-X
    [ 4.309895] r8169 0000:06:00.0: eth1: RTL8168c/8111c at 0xffffc9000175a000, 00:24:1d:76:91:9e, XID 1c4000c0 IRQ 49
    [ 4.309898] r8169 0000:06:00.0: eth1: jumbo features [frames: 6128 bytes, tx checksumming: ko]
    [ 4.319010] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    [ 4.319060] SP5100 TCO timer: mmio address 0xfec000f0 already in use
    [ 4.339695] firewire_ohci: Added fw-ohci device 0000:08:0e.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
    [ 4.347192] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
    [ 4.368446] cfg80211: Calling CRDA to update world regulatory domain
    [ 4.439847] fglrx: Unknown symbol acpi_lid_notifier_register (err 0)
    [ 4.439887] fglrx: Unknown symbol acpi_lid_notifier_register (err 0)
    [ 4.440213] fglrx: Unknown symbol acpi_lid_open (err 0)
    [ 4.440242] fglrx: Unknown symbol acpi_lid_open (err 0)
    [ 4.440372] fglrx: Unknown symbol acpi_lid_notifier_unregister (err 0)
    [ 4.440384] fglrx: Unknown symbol acpi_lid_notifier_unregister (err 0)
    [ 4.518173] rt2800pci 0000:08:07.0: PCI->APIC IRQ transform: INT A -> IRQ 21
    [ 4.546577] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 4.546764] Registered led device: rt2800pci-phy0::radio
    [ 4.546777] Registered led device: rt2800pci-phy0::assoc
    [ 4.546791] Registered led device: rt2800pci-phy0::quality
    [ 4.566190] snd_hda_intel 0000:00:14.2: PCI->APIC IRQ transform: INT A -> IRQ 16
    [ 4.712416] hda_codec: ALC889A: BIOS auto-probing.
    [ 4.729011] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input5
    [ 4.729173] snd_hda_intel 0000:03:00.1: PCI->APIC IRQ transform: INT B -> IRQ 18
    [ 4.729237] snd_hda_intel 0000:03:00.1: irq 50 for MSI/MSI-X
    [ 4.729256] snd_hda_intel 0000:03:00.1: setting latency timer to 64
    [ 4.743475] HDMI status: Codec=0 Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 4.743566] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.0/0000:02:04.0/0000:03:00.1/sound/card1/input6
    [ 4.839477] firewire_core: created device fw0: GUID 00aa981000001fd0, S400
    [ 5.683949] EXT4-fs (sda2): re-mounted. Opts: (null)
    [ 5.731153] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.795031] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.871329] EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null)
    [ 5.885607] Adding 10484732k swap on /dev/sda4. Priority:-1 extents:1 across:10484732k
    [ 6.915362] r8169 0000:05:00.0: eth0: link down
    [ 6.915375] r8169 0000:05:00.0: eth0: link down
    [ 8.609247] r8169 0000:05:00.0: eth0: link up
    [faktorqm@the_missile /]$
    note 7:
    [faktorqm@the_missile /]$ lspci
    00:00.0 Host bridge: ATI Technologies Inc RD790 Northbridge only dual slot PCI-e_GFX and HT3 K8 part
    00:02.0 PCI bridge: ATI Technologies Inc RD790 PCI to PCI bridge (external gfx0 port A)
    00:07.0 PCI bridge: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port D)
    00:09.0 PCI bridge: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port E)
    00:0a.0 PCI bridge: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port F)
    00:11.0 SATA controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode]
    00:12.0 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:12.1 USB controller: ATI Technologies Inc SB7x0 USB OHCI1 Controller
    00:12.2 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:13.0 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
    00:13.1 USB controller: ATI Technologies Inc SB7x0 USB OHCI1 Controller
    00:13.2 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller
    00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3c)
    00:14.1 IDE interface: ATI Technologies Inc SB7x0/SB8x0/SB9x0 IDE Controller
    00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
    00:14.3 ISA bridge: ATI Technologies Inc SB7x0/SB8x0/SB9x0 LPC host controller
    00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
    00:14.5 USB controller: ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI2 Controller
    00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor HyperTransport Configuration
    00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Address Map
    00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor DRAM Controller
    00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Miscellaneous Control
    00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 10h Processor Link Control
    01:00.0 PCI bridge: PLX Technology, Inc. PEX 8647 48-Lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch (rev ab)
    02:04.0 PCI bridge: PLX Technology, Inc. PEX 8647 48-Lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch (rev ab)
    02:08.0 PCI bridge: PLX Technology, Inc. PEX 8647 48-Lane, 3-Port PCI Express Gen 2 (5.0 GT/s) Switch (rev ab)
    03:00.0 VGA compatible controller: ATI Technologies Inc R700 [Radeon HD 4870 X2]
    03:00.1 Audio device: ATI Technologies Inc RV770 HDMI Audio [Radeon HD 4850/4870]
    04:00.0 Display controller: ATI Technologies Inc R700 [Radeon HD 4870 X2]
    05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
    06:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
    07:00.0 SATA controller: JMicron Technology Corp. JMB362/JMB363 Serial ATA Controller (rev 02)
    07:00.1 IDE interface: JMicron Technology Corp. JMB362/JMB363 Serial ATA Controller (rev 02)
    08:07.0 Network controller: Ralink corp. RT2800 802.11n PCI
    08:0e.0 FireWire (IEEE 1394): Texas Instruments TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link)
    [faktorqm@the_missile /]$
    note 8:
    [root@the_missile /]# cat /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:3:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    [root@the_missile /]#
    Now, the problem:
    [root@the_missile /]# modprobe -vvvv fglrx
    insmod /lib/modules/3.2.1-2-ARCH/kernel/drivers/acpi/button.ko.gz
    libkmod: kmod_module_insert_module: Failed to insert module '/lib/modules/3.2.1-2-ARCH/kernel/drivers/acpi/button.ko.gz': No such device
    [root@the_missile /]#
    now, if you see menu.lst from grub, I disabled acpi because the kernel never boot if that option is not especified. I tried with acpi=noirq and acpi=force and the kernel never boot. So, I don't have a solution in my mind, and I don't know one path to follow. If someone can give me just an idea of what happend, I will really appreciate that.
    KDE works fine, and X starts fine.
    pages that I read:
    https://wiki.archlinux.org/index.php/ATI_Catalyst
    https://bbs.archlinux.org/viewtopic.php?id=79509 (what's about this??)
    https://bbs.archlinux.org/viewtopic.php?id=123669
    and many many others pages talking about acpi, lacpi, apic, etc.
    Thank you for your time in advance. Regards!!
    Last edited by faktorqm (2012-01-27 02:25:31)

    I forgot to mention that I blacklisted the radeon module following the new procedure in /etc/modprobe.d/blacklist.conf and the contest of this file is "blacklist radeon" and my rc.conf is:
    [faktorqm@the_missile /]$ cat /etc/rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
    # startup and during the boot process. If set to 'no', the C locale is used.
    # HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # Note: Using "localtime" is discouraged, using "" makes hwclock fall back
    # to the value in /var/lib/hwclock/adjfile
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # Note: if unset, the value in /etc/localtime is used unchanged
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="localtime"
    TIMEZONE="America/Argentina/Buenos_Aires"
    KEYMAP="bg-cp855"
    CONSOLEFONT="cp850-8x16"
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
    # Replace every !module by an entry as on the following line in a file in
    # /etc/modprobe.d:
    # blacklist module
    # See "man modprobe.conf" for details.
    MODULES=()
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for BTRFS volumes at startup
    USEBTRFS="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="the_missile"
    # Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
    # Wired network setup
    # - interface: name of device (required)
    # - address: IP address (leave blank for DHCP)
    # - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
    # - broadcast: broadcast address (ignored for DHCP) (optional)
    # - gateway: default route (ignored for DHCP)
    # Static IP example
    # interface=eth0
    # address=192.168.0.2
    # netmask=255.255.255.0
    # broadcast=192.168.0.255
    # gateway=192.168.0.1
    # DHCP example
    # interface=eth0
    # address=
    # netmask=
    # gateway=
    interface=eth0
    address=
    netmask=
    broadcast=
    gateway=
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these netcfg profiles at boot-up. These are useful if you happen to
    # need more advanced network features than the simple network service
    # supports, such as multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    # If something other takes care of your hardware clock (ntpd, dual-boot...)
    # you should disable 'hwclock' here.
    DAEMONS=(autofglrx hwclock syslog-ng network netfs crond kdm)
    [faktorqm@the_missile /]$
    THANK YOU AGAIN!! Regards!!
    Last edited by faktorqm (2012-01-27 02:26:15)

  • Fglrx drivers not loading after update to Kernel 3.7.3

    Hi,
    I just updated to kernel 3.7.3 and the fglrx module isnt loading. I just read the catalyst wiki page again and I didnt install the catalyst-hook package or add fglrx to /etc/mkinitcpio.conf hooks array.
    Not sure what todo?
    Thanks.

    nirvanix wrote:I just reinstalled the catalyst-dkms package and then it worked again.
    Excellent thanks. I didnt want to go messing around and screwing it up but that was simple enough. I also installed the catalyst-hook package and linux-headers for next time. Hopefully wont be a problem.
    Thanks.

  • Software raid won't boot after updating to "mdadm" in mkinitcpio.conf

    After a power outage I've discovetred the config I was using (with raid in mkinitcpio.conf) no longer works, it's mdadm now - that's fine.  I've updated that and re-run mkinitcpio successfully, however my system is unable to boot from the root filesystem /dev/md2 like so:
    Waiting for 10 seconds for device /dev/md2 ...
    Root device '/dev/md2' doesn't exist. Attempting to create it.
    ERROR: Unable to determine major/minor number of root device '/dev/md2'.
    You are being dropped to a recovery shell
        Type 'exit' to try and continue booting
    /bin/sh: can't access tty; job control turned off
    [ramfs /]#
    As far as I can see from reading various threads and http://wiki.archlinux.org/index.php/Ins … AID_or_LVM I'm doing the right things now (although I'm not using lvm at all, which makes the installation document a little confusing).
    I think I've included all the appropriate bits of config here that should be working.  I assume I've missed something fundamental - any ideas?
    menu.lst:
    # (0) Arch Linux
    title  Arch Linux  [/boot/vmlinuz26]
    root   (hd0,0)
    kernel /vmlinuz26 root=/dev/md2 ro
    initrd /kernel26.img
    mkinitcpio.conf:
    HOOKS="base udev autodetect pata scsi mdadm sata filesystems"
    fstab:
    /dev/md1 /boot ext3 defaults 0 1
    /dev/md2 / ext3 defaults 0 1
    mdadm.conf
    ARRAY /dev/md1 level=raid1 num-devices=2 metadata=0.90 UUID=7ae70fa6:9f54ba0a:21
    47a9fe:d45dbc0c
    ARRAY /dev/md2 level=raid1 num-devices=2 metadata=0.90 UUID=20560268:8a089af7:e6
    043406:dbdabe38
    Thanks!

    Hi magec, that's quite helfpul - I've certainly got further.
    Before I was doing this to set up the chroot (which is what is suggested in the wiki article about setting up software raid):
    mdadm -A /dev/md1 /dev/sda1 /dev/sdb1
    mdadm -A /dev/md2 /dev/sda2 /dev/sdb2
    mount /dev/md2 /mnt
    mount /dev/md1 /mnt/boot
    mount -o bind /dev /mnt/dev
    mount -t proc none /mnt/proc
    chroot /mnt /bin/bash
    But based on your suggestion it's working better
    mdadm -A /dev/md1 /dev/sda1 /dev/sdb1
    mdadm -A /dev/md2 /dev/sda2 /dev/sdb2
    mount /dev/md2 /mnt
    mount /dev/md1 /mnt/boot
    mount -t proc none /mnt/proc
    mount -t sysfs none /mnt/sys
    mount -n -t ramfs none /mnt/dev
    cp -Rp /dev/* /mnt/dev
    chroot /mnt /bin/bash
    The boot is now getting further, but now I'm getting:
    md: md2 stopped.
    md: bind<sdb2>
    md: bind<sda2>
    raid1: raid set md2 active with 2 out of 2 mirrors
    md2: detected capacity change from 0 to 32218349568
    mdadm: /dev/md2 has been started with 2 drives.
    md2: Waiting 10 seconds for device /dev/md2 ...
    unknown partition table
    mount: mounting /dev/md2 on /new_root failed: No such device
    ERROR: Failed to mount the real root device.
    Bailing out, you are on your own. Good luck.
    /bin/sh: can't access tty; job contol turned off
    [ramfs /]#
    The bit that really confuses me is this:
    [ramfs /]# cat /proc/mdstat
    Personalities : [raid1]
    md2 : active raid1 sda2[0] sdb2[1]
    31463232 blocks [2/2] [UU]
    md1 : active raid1 sda1[0] sdb1[1]
    208704 blocks [2/2] [UU]
    unused devices: <none>
    [ramfs /]# mount /dev/md2 /new_root
    mount: mounting /dev/md2 on /new_root failed: No such file or directory
    [ramfs /]# ls /dev/md2
    /dev/md2
    [ramfs /]#
    So the array is up, the device node is there but it can't be mounted?  Very strange.
    Last edited by chas (2010-05-02 11:24:09)

  • Beginners Guide "Create an initial ramdisk environment" hooks needed

    In the guide at this location:
    https://wiki.archlinux.org/index.php/Be … nvironment
    it addresses when the mkinitcpio.conf hooks line needs changes. Is it really the case that installing to a external USB spinning drive with root there,  requires a change to the default hooks? It seems like the default hooks line includes the "block" already. It is block that handles USB, right?
    I am talking about an installation, not copying the install media, etc.
    Here is my hooks line:
    base udev autodetect modconf block lvm2 filesystems keyboard fsck
    which I believe is stock except for the LVM entry.
    I ask because I wanted to test installing to an external USB3.0 drive to judge performance.
    Thanks in advance.
    Steve.

    That sentence looks like it predates the block hook (when there was a usb hook for exactly that reason).
    You can test it easily enough

Maybe you are looking for

  • PID Control - analog input, digital outputs

    Hello everyone, I am trying to use the PID toolkit to convert my existing feedback control system to one using PID or just PI whatever works best. Problem is that the tutorials out there discuss in detail about obtaining Analog inputs and using the P

  • Validation for profitability segment in Account document

    Hi Team, Currently We are using validation for cost object i.e. either cost center or WBS elements enter  in a  GL account line items and if we are enter both cost object then system will be give Error message . in this validation we have added valid

  • How do I find out about my warrenty on here because I cannot find my paper work?

    I just dropped my phone and my whole screen cracked and I need to find out how I look up my warrenty so I can know what I have to do or pay for a new phone?

  • Another techincal system for SRM is getting created in SLD

    Hello All, I have a problem with duplicate Technical System being created automatically in our SLD. Since, there is no business system assigned to that, I am deleting that every day though It keeps on getting created every day. I understand that ther

  • Reconnecting to J2EE server

    I am developing a Adapter in TIBCO which connects to a J2EE server which acts a host for JMS queue. This adapter picks up the the messages from the JMS queue and publishes on the TIBCO bus. Now JMS subscribers receive messages through a registration