Bootsplash : Applying splash on a patched kernel makes a Kernel Panic

Hi Archers,
I tried to put a bootsplash and for that I first pached the kernel with the PKGBUILD from ABS using this HOW-TO :
http://archlinux.veloxis.de/howtos/boot … to_us.html
The patched kernel works very well.
Then I wanted to add a splash using the splash utility, following this HOW-TO :
http://wiki.archlinux.org/index.php/Bootsplash
Then I edited the grub and rebooted.
All I can see is a kernel panic, telling me this :
RAMDISK : Couldn't find valid RAM disk image starting at 0
List of all partitions :
No file system could mount root, tried :
Kernel Panic - VFS : Unable to mount root fs on unknown block (0,0)
This is quite weird since some lines above I can see that the RAMDISK has been initialized :
RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
Does anynone have an idea of what could be the cause of the problem ?
Thanks
++++++++++++

I think I've found what is the cause of the problem but this is quite weird.
To activate bootsplash, the bootsplash option have to be activated in the kernel configuration file (config) :
CONFIG_FBCON_SPLASHSCREEN=y
So I added this option at the end of the config file. The other required options were already activated by default.
After having installed the new kernel thanks to the pacman -U command, I can see in the config file, which has been automatically generated during the compilation (/boot/kconfig26), that the bootsplash option is no more activated ! The entire line has been erased.
How can an option be erased during the compilation ? Where could I find what caused this problem ? Here is my PKGBUILD, which I think is correct : (I have deactivated the Arch logo)
# $Id: PKGBUILD,v 1.286 2008/01/15 19:37:50 tpowa Exp $
# Maintainer: Tobias Powalowski <[email protected]>
# Maintainer: Thomas Baechler <[email protected]>
pkgname=kernel26
_basekernel=2.6.23
pkgver=2.6.23.14
pkgrel=3
pkgdesc="The Linux Kernel and modules"
arch=(i686 x86_64)
license=('GPL2')
groups=('base')
url="http://www.kernel.org"
backup=('boot/kconfig26' etc/mkinitcpio.d/${pkgname}.preset)
depends=('coreutils' 'module-init-tools' 'mkinitcpio>=0.5.15')
# pwc, ieee80211 and hostap-driver26 modules are included in kernel26 now
# nforce package support was abandoned by nvidia, kernel modules should cover everything now.
# kernel24 support is dropped since glibc24
replaces=('kernel24' 'kernel24-scsi' 'kernel26-scsi'
'alsa-driver' 'ieee80211' 'hostap-driver26'
'pwc' 'nforce' 'squashfs' 'unionfs' 'ivtv'
'zd1211' 'kvm-modules')
install=kernel26.install
source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$_basekernel.tar.bz2
ftp://ftp.kernel.org/pub/linux/kernel/v2.6/patch-$pkgver.bz2
### next two lines only needed for rc kernel building
#http://www.kernel.org/pub/linux/kernel/v2.6/testing/patch-2.6.23-rc9.bz2
#http://www.kernel.org/pub/linux/kernel/v2.6/snapshots/patch-2.6.23-rc9-git2.bz2
# the main kernel config files
config config.x86_64
# the archlinux boot logos
#logo_linux_clut224.ppm
#logo_linux_mono.pbm
#logo_linux_vga16.ppm
# standard config files for mkinitcpio ramdisk
kernel26.preset
mkinitcpio-$pkgname.conf
# add possibility to load your own dsdt acpi table
acpi-dsdt-initrd-v0.8.4-2.6.21.patch
# fix bluetooth on some toshiba notebooks
toshiba-bluetooth.patch
# add additional unusual usb entry
usb-storage-unusual-devs.patch
# cfs scheduler backport, modified to apply with gregs stable patch
#http://people.redhat.com/mingo/cfs-scheduler/sched-cfs-v2.6.23.8-v24.patch
ftp://ftp.archlinux.org/other/kernel26/sched-cfs-v2.6.23.11-v24.patch
# improve intel macintosh support
mactel-linux-2.6.23.patch
# update to alsa snapshot 20071124
ftp://ftp.archlinux.org/other/kernel26/alsa-20071124.patch.bz2
ftp://ftp.archlinux.org/other/kernel26/alsa-include-20071117.patch.bz2
# fix broken acpi c states on buggy bioses, which violate acpi specification
acpi-buggy-bios.patch
# add squashfs and unionfs
http://heanet.dl.sourceforge.net/sourceforge/squashfs/squashfs3.3.tar.gz
http://download.filesystems.org/unionfs/unionfs-2.x/unionfs-2.1.11_for_2.6.23.9.diff.gz
# two patches below for aufs compatibility
put_filp.patch
lhash-2.6.22.patch
# fix hibernating support for saa7134 devices, implemented in .24 series finally
hibernate-saa7134.diff
# add possibility to undervolt certain cpus
linux-phc-0.3.0-kernel-vanilla-2.6.23rc3.patch
# adding genpatches from gentoo
2405_hostap-netdev-type.patch
# fix Leadtek_WinFast_2000
winfast-2000.patch
bootsplash-3.1.6-2.6.21.diff
build() {
[ "${CARCH}" = "i686" ] && KARCH=i386
[ "${CARCH}" = "x86_64" ] && KARCH=x86_64
cd $startdir/src/linux-$_basekernel
# add upstream patch from 2.6.23 series
patch -Np1 -i ../patch-$pkgver || return 1
# greg kroahs stable patches, in reference to:
# http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
# add them if needed
# add latest CFS scheduler backport
# in reference to lkml:
# By popular demand, here is release -v24 of the CFS scheduler patch.
# It is a full backport of the latest & greatest scheduler code to
# http://people.redhat.com/mingo/cfs-scheduler/
patch -Np1 -i ../sched-cfs-v2.6.23.11-v24.patch || return 1
### next 2 lines are only needed for rc kernels
#patch -Np1 -i ../patch-$pkgver-rc9 || return 1
#patch -Np1 -i ../patch-2.6.23-rc9-git2 || return 1
# add custom acpi dsdt patch, in reference to:
# http://gaugusch.at/kernel.shtml
# http://acpi.sourceforge.net
patch -Np1 -i ../acpi-dsdt-initrd-v0.8.4-2.6.21.patch || return 1
# fix enabling of bluetooth on some toshiba notebooks in reference to:
# http://bugs.archlinux.org/task/5608
# http://www.cwrose.de/toshiba/s5200.html#bluetooth
patch -Np1 -i ../toshiba-bluetooth.patch || return 1
# fix I/O errors with Teac HD-35PU devices
patch -Np1 -i ../usb-storage-unusual-devs.patch || return 1
# get latest alsa status, in reference to:
# ftp://ftp.suse.com/pub/projects/alsa/snapshot/driver/
# patches are created by diffing the kernel source,
# against the alsa-kernel/ directory from tarball.
# status is 20071124
patch -Np0 -i ../alsa-20071124.patch || return 1
patch -Np0 -i ../alsa-include-20071117.patch || return 1
# improve intel macintosh support, in reference to:
# http://www.mactel-linux.org/wiki/Main_Page
# http://mactel-linux.svn.sourceforge.net/viewvc/mactel-linux/trunk/kernel/
patch -Np1 -i ../mactel-linux-2.6.23.patch || return 1
# add possibility to undervolt certain cpus, in reference to:
# https://www.dedigentoo.org/trac/linux-phc/
patch -Np1 -i ../linux-phc-0.3.0-kernel-vanilla-2.6.23rc3.patch || return 1
# fix buggy bios acpi to get c states, which violate acpi specification, in reference to:
# http://bugzilla.kernel.org/show_bug.cgi?id=7578
# http://bugs.archlinux.org/task/6875
patch -Np1 -i ../acpi-buggy-bios.patch || return 1
# fix hibernate support on saa7134
# made by the vl4 team in the kernel plus a lot of
# help from one of the Alsa devs. The problem is that when you suspend to
# ram or to disk, saa7134 devices don't come out of suspend.
# sent in by: Hussam Al-Tayeb <[email protected]>
patch -Np0 -i ../hibernate-saa7134.diff || return 1
# fix Leadtek_WinFast_2000
# in reference to:
# http://www.linuxtv.org/v4lwiki/index.php/Leadtek_WinFast_2000
patch -Np0 -i ../winfast-2000.patch || return 1
# adding some genpatches from gentoo, in reference to:
# http://sources.gentoo.org/viewcvs.py/linux-patches/genpatches-2.6/trunk/2.6.23/
patch -Np1 -i ../2405_hostap-netdev-type.patch || return 1
# add sqashfs support, in reference to:
# http://squashfs.sourceforge.net/
patch -Np1 -i ../squashfs3.3/kernel-patches/linux-2.6.23/squashfs3.3-patch || return 1
# add unionfs support. in reference to:
# http://www.fsl.cs.sunysb.edu/project-unionfs.html
patch -Np1 -i ../unionfs-2.1.11_for_2.6.23.9.diff || return 1
# add put_filp and lhash patches for aufs, in reference to:
# http://aufs.sourceforge.net/
patch -Np0 -i ../put_filp.patch || return 1
patch -Np1 -i ../lhash-2.6.22.patch || return 1
patch -Np1 -i ../bootsplash-3.1.6-2.6.21.diff
# remove the extraversion from Makefile
### next line is only needed for rc kernels
#sed -i 's|^EXTRAVERSION = .*$|EXTRAVERSION =-rc9|g' Makefile
sed -i 's|^EXTRAVERSION = .*$|EXTRAVERSION =|g' Makefile
# Arch logo!
#cp ../logo_linux_clut224.ppm drivers/video/logo/
#cp ../logo_linux_mono.pbm drivers/video/logo/
#cp ../logo_linux_vga16.ppm drivers/video/logo/
if [ "$CARCH" = "x86_64" ]; then
cat ../config.x86_64 >./.config
else
cat ../config >./.config
fi
# build the full kernel version to use in pathnames
. ./.config
### next line is only needed for rc kernels
#_kernver="2.6.23-rc9${CONFIG_LOCALVERSION}"
_kernver="${_basekernel}${CONFIG_LOCALVERSION}"
# load configuration
yes "" | make config
# build!
# stop here
#msg "Stopping build"
#return 1
make bzImage modules || return 1
mkdir -p $startdir/pkg/{lib/modules,boot}
make INSTALL_MOD_PATH=$startdir/pkg modules_install || return 1
cp System.map $startdir/pkg/boot/System.map26
cp arch/$KARCH/boot/bzImage $startdir/pkg/boot/vmlinuz26
install -D -m644 Makefile \
$startdir/pkg/usr/src/linux-${_kernver}/Makefile
install -D -m644 kernel/Makefile \
$startdir/pkg/usr/src/linux-${_kernver}/kernel/Makefile
install -D -m644 .config \
$startdir/pkg/usr/src/linux-${_kernver}/.config
install -D -m644 .config $startdir/pkg/boot/kconfig26
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include
for i in acpi asm-{generic,i386,x86_64} config linux math-emu media net pcmcia scsi sound video; do
cp -a include/$i $startdir/pkg/usr/src/linux-${_kernver}/include/
done
# copy files necessary for later builds, like nvidia and vmware
cp Module.symvers $startdir/pkg/usr/src/linux-${_kernver}
cp -a scripts $startdir/pkg/usr/src/linux-${_kernver}
# fix permissions on scripts dir
chmod og-w -R $startdir/pkg/usr/src/linux-${_kernver}/scripts
#mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/.tmp_versions
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/kernel
cp arch/$KARCH/Makefile $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/
if [ "$CARCH" = "i686" ]; then
cp arch/$KARCH/Makefile.cpu $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/
fi
cp arch/$KARCH/kernel/asm-offsets.s $startdir/pkg/usr/src/linux-${_kernver}/arch/$KARCH/kernel/
# add headers for lirc package
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video
cp drivers/media/video/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/
for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102 usbvideo zc0301; do
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/$i
cp -a drivers/media/video/$i/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/media/video/$i
done
# add dm headers
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/drivers/md
cp drivers/md/*.h $startdir/pkg/usr/src/linux-${_kernver}/drivers/md
# add inotify.h
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/include/linux
cp include/linux/inotify.h $startdir/pkg/usr/src/linux-${_kernver}/include/linux/
# add CLUSTERIP file for iptables
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/net/ipv4/netfilter/
cp net/ipv4/netfilter/ipt_CLUSTERIP.c $startdir/pkg/usr/src/linux-${_kernver}/net/ipv4/netfilter/
# add wireless headers
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/net/mac80211/
cp net/mac80211/*.h $startdir/pkg/usr/src/linux-${_kernver}/net/mac80211/
# add vmlinux
cp vmlinux $startdir/pkg/usr/src/linux-${_kernver}
# copy in Kconfig files
for i in `find . -name "Kconfig*"`; do
mkdir -p $startdir/pkg/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
cp $i $startdir/pkg/usr/src/linux-${_kernver}/$i
done
cd $startdir/pkg/usr/src/linux-${_kernver}/include && ln -s asm-$KARCH asm
chown -R root.root $startdir/pkg/usr/src/linux-${_kernver}
find $startdir/pkg/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
cd $startdir/pkg/lib/modules/${_kernver} && \
(rm -f source build; ln -sf ../../../usr/src/linux-${_kernver} build)
# install fallback mkinitcpio.conf file and preset file for kernel
install -m644 -D $startdir/src/${pkgname}.preset $startdir/pkg/etc/mkinitcpio.d/${pkgname}.preset || return 1
install -m644 -D $startdir/src/mkinitcpio-$pkgname.conf $startdir/pkg/etc/mkinitcpio.d/$pkgname-fallback.conf || return 1
# set correct depmod command for install
sed -i -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" $startdir/kernel26.install
echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${startdir}/pkg/etc/mkinitcpio.d/${pkgname}.kver
# remove unneeded architectures
rm -rf $startdir/pkg/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
I'm a newbie in the kernel world so I'm a little bit lost in all theses files and options.
Thanks
Last edited by jaymz_64 (2008-02-07 12:20:37)

Similar Messages

  • How can I re-apply the 5.03 patch?

    I've asked this already in the CS5 5.03 update discussion, so aplogies for the repetition, but I thought I'd start a new thread.
    I've had to roll back Win 7 to a time prior to 5.03 installation.  I'm now back to 5.02 and can't reinstall 5.03.  If I click the update button within PP tells me that all applications are up-to-date.  So it would appear that the AAM is not detecting that I'm back to an earlier version.
    When I manually try to install 5.03, the progress bar does not move, nor the percentage increase.  However, after about 30 seconds, I'm informed that the update has completed successfully - but it hasn't!  It is still on version 5.02.
    Help.  Can anyone please tell me how to re-apply the 5.03 patch without reinstalling PP?  Thanks.

    > Surely there's a simpler way??
    Not that I know of.
    BTW, we are actively working on making the installers work more smoothly. We appreciate bug reports about the specific glitches so that we can make sure that we're working on the right things.

  • Acer C710 - USB Ports not working with patched kernel

    I have an...
    Acer C710-844G01ii
    I have replaced the original SSD with a Mushkin 120GB SSD (MKNSSDCR120GB-7)
    I've used John Lewis' script at https://johnlewis.ie to flash the firmware. It works great. It loads 64 bit dual arch iso (2014.10.01) written to a USB flashdrive (Well, I'm actually using SD card in a USB reader. Not sure if that makes a difference) without having to utilize the workaround listed on the Chromebook wiki page (https://wiki.archlinux.org/index.php/Ch … stallation). I just create a regular arch bootable usb and it seems to work fine. I can use the bootable USB tools. I can install arch to the hard disk fine. (I did this a couple of times on the original SSD that came with the chromebook before I replaced it, so I know it works without having to change the SSD).
    The problem I'm having occurs after I install the patched kernel (linux-chromebook-3.16.4-1-x86_64 or linux-mainline-chromebook-3.17-1-x86_64 I've tried them both. Both times I wiped the hard drive and went through the entire install process from scratch). After booting, everything loads up fine except that I lose functionality of my USB ports. The custom BIOS still reads the arch bootable USB if I choose to boot into it. If I boot from the hard drive though, as soon as the patched kernel loads, the USB ports are not working.
    The output of
    dmesg | tail
    is the same before and after inserting a flash drive into a usb port.
    Running the command
    lsusb
    gives output
    unable to initialize libusb: -99

    Updated the system, now using arch kernel 3.17.1-1
    Problem still exists.
    dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.17.1-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 15 15:04:35 CEST 2014
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=572dffe4-4501-4df5-967f-c535313cfa24 rw quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000acee3fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000acee4000-0x00000000af9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000014f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Google Parrot/Parrot, BIOS 4.0-6588-g4acd8ea-dirty 09/04/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x14f600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: write-back
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-FFFFF write-back
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0AD000000 mask FFF000000 uncachable
    [ 0.000000] 1 base 0AE000000 mask FFE000000 uncachable
    [ 0.000000] 2 base 0B0000000 mask FF0000000 uncachable
    [ 0.000000] 3 base 0C0000000 mask FF0000000 uncachable
    [ 0.000000] 4 base 0D0000000 mask FF0000000 write-combining
    [ 0.000000] 5 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xacee4 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] reserving inaccessible SNB gfx pages
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    [ 0.000000] BRK [0x01b31000, 0x01b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x14f400000-0x14f5fffff]
    [ 0.000000] [mem 0x14f400000-0x14f5fffff] page 2M
    [ 0.000000] BRK [0x01b32000, 0x01b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x14c000000-0x14f3fffff]
    [ 0.000000] [mem 0x14c000000-0x14f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x14bffffff]
    [ 0.000000] [mem 0x100000000-0x14bffffff] page 2M
    [ 0.000000] BRK [0x01b33000, 0x01b33fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
    [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x40200000-0xacee3fff]
    [ 0.000000] [mem 0x40200000-0xacdfffff] page 2M
    [ 0.000000] [mem 0xace00000-0xacee3fff] page 4k
    [ 0.000000] BRK [0x01b34000, 0x01b34fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x379a0000-0x37cc7fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F6DD0 000024 (v02 CORE )
    [ 0.000000] ACPI: XSDT 0x00000000ACFEF0E0 00004C (v01 CORE COREBOOT 00000000 CORE 00000000)
    [ 0.000000] ACPI: FACP 0x00000000ACFF2720 0000F4 (v03 CORE COREBOOT 00000000 CORE 00000001)
    [ 0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/64 (20140724/tbfadt-618)
    [ 0.000000] ACPI: DSDT 0x00000000ACFEF250 0034C7 (v02 COREv4 COREBOOT 20110725 INTL 20140114)
    [ 0.000000] ACPI: FACS 0x00000000ACFEF210 000040
    [ 0.000000] ACPI: HPET 0x00000000ACFF2820 000038 (v01 CORE COREBOOT 00000000 CORE 00000000)
    [ 0.000000] ACPI: APIC 0x00000000ACFF2860 00005C (v01 CORE COREBOOT 00000000 CORE 00000000)
    [ 0.000000] ACPI: MCFG 0x00000000ACFF28C0 00003C (v01 CORE COREBOOT 00000000 CORE 00000000)
    [ 0.000000] ACPI: SSDT 0x00000000ACFF3900 000818 (v02 CORE COREBOOT 0000002A CORE 0000002A)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000014f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x14f5fffff]
    [ 0.000000] NODE_DATA [mem 0x14f5fa000-0x14f5fdfff]
    [ 0.000000] [ffffea0000000000-ffffea00053fffff] PMD -> [ffff88014ac00000-ffff88014ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x14f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009efff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xacee3fff]
    [ 0.000000] node 0: [mem 0x100000000-0x14f5fffff]
    [ 0.000000] On node 0 totalpages: 1032322
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 158 pages reserved
    [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10988 pages used for memmap
    [ 0.000000] DMA32 zone: 703204 pages, LIFO batch:31
    [ 0.000000] Normal zone: 5080 pages used for memmap
    [ 0.000000] Normal zone: 325120 pages, LIFO batch:31
    [ 0.000000] Reserving Intel graphics stolen memory at 0xada00000-0xaf9fffff
    [ 0.000000] ACPI: PM-Timer IO Port: 0x508
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xacee4000-0xaf9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xafa00000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf4000000-0xffffffff]
    [ 0.000000] e820: [mem 0xafa00000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88014f200000 s86848 r8192 d23744 u1048576
    [ 0.000000] pcpu-alloc: s86848 r8192 d23744 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1016032
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=572dffe4-4501-4df5-967f-c535313cfa24 rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3981852K/4129288K available (5381K kernel code, 909K rwdata, 1712K rodata, 1140K init, 1176K bss, 147436K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=2.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [ 0.000000] NR_IRQS:8448 nr_irqs:440 0
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 1097.469 MHz processor
    [ 0.000073] Calibrating delay loop (skipped), value calculated using timer frequency.. 2195.39 BogoMIPS (lpj=3658230)
    [ 0.000078] pid_max: default: 32768 minimum: 301
    [ 0.000089] ACPI: Core revision 20140724
    [ 0.005690] ACPI: All ACPI Tables successfully acquired
    [ 0.008808] Security Framework initialized
    [ 0.008819] Yama: becoming mindful.
    [ 0.009391] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.011193] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.012001] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.012017] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.012360] Initializing cgroup subsys memory
    [ 0.012370] Initializing cgroup subsys devices
    [ 0.012374] Initializing cgroup subsys freezer
    [ 0.012378] Initializing cgroup subsys net_cls
    [ 0.012382] Initializing cgroup subsys blkio
    [ 0.012420] CPU: Physical Processor ID: 0
    [ 0.012422] CPU: Processor Core ID: 0
    [ 0.012432] mce: CPU supports 7 MCE banks
    [ 0.012454] CPU0: Thermal monitoring enabled (TM1)
    [ 0.012472] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    [ 0.012675] Freeing SMP alternatives memory: 20K (ffffffff81a02000 - ffffffff81a07000)
    [ 0.014781] ftrace: allocating 20674 entries in 81 pages
    [ 0.037109] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.070117] smpboot: CPU0: Intel(R) Celeron(R) CPU 847 @ 1.10GHz (fam: 06, model: 2a, stepping: 07)
    [ 0.070132] TSC deadline timer enabled
    [ 0.070178] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
    [ 0.070223] ... version: 3
    [ 0.070226] ... bit width: 48
    [ 0.070228] ... generic registers: 8
    [ 0.070230] ... value mask: 0000ffffffffffff
    [ 0.070232] ... max period: 0000ffffffffffff
    [ 0.070234] ... fixed-purpose events: 3
    [ 0.070237] ... event mask: 00000007000000ff
    [ 0.090307] x86: Booting SMP configuration:
    [ 0.090312] .... node #0, CPUs: #1
    [ 0.103535] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.103559] x86: Booted up 1 node, 2 CPUs
    [ 0.103563] smpboot: Total of 2 processors activated (4391.78 BogoMIPS)
    [ 0.105926] devtmpfs: initialized
    [ 0.112736] pinctrl core: initialized pinctrl subsystem
    [ 0.112812] RTC time: 0:25:43, date: 10/27/14
    [ 0.112986] NET: Registered protocol family 16
    [ 0.113224] cpuidle: using governor ladder
    [ 0.113230] cpuidle: using governor menu
    [ 0.113291] ACPI: bus type PCI registered
    [ 0.113295] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.113438] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.113443] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.113650] PCI: Using configuration type 1 for base access
    [ 0.124189] ACPI: Added _OSI(Module Device)
    [ 0.124193] ACPI: Added _OSI(Processor Device)
    [ 0.124196] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.124199] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.130313] ACPI: Interpreter enabled
    [ 0.130327] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    [ 0.130336] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    [ 0.130364] ACPI: (supports S0 S3 S4 S5)
    [ 0.130367] ACPI: Using IOAPIC for interrupt routing
    [ 0.130407] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.136949] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.136960] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.137053] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
    [ 0.137240] acpi PNP0A08:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000cedff])
    [ 0.137249] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.137502] PCI host bridge to bus 0000:00
    [ 0.137507] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.137512] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.137515] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.137519] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.137523] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.137526] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.137529] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.137533] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.137536] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.137540] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.137543] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.137547] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.137550] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.137553] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.137557] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.137560] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    [ 0.137564] pci_bus 0000:00: root bus resource [mem 0xafa00000-0xfebfffff]
    [ 0.137567] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    [ 0.137583] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    [ 0.137752] pci 0000:00:02.0: [8086:0106] type 00 class 0x030000
    [ 0.137774] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe03fffff 64bit]
    [ 0.137786] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.137796] pci 0000:00:02.0: reg 0x20: [io 0x1000-0x103f]
    [ 0.138004] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.138046] pci 0000:00:16.0: reg 0x10: [mem 0xe0706100-0xe070610f 64bit]
    [ 0.138188] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.138353] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.138392] pci 0000:00:1a.0: reg 0x10: [mem 0xe0705800-0xe0705bff]
    [ 0.138555] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.138624] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.138714] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.138746] pci 0000:00:1b.0: reg 0x10: [mem 0xe0700000-0xe0703fff 64bit]
    [ 0.138900] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.138967] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.139051] pci 0000:00:1c.0: [8086:1e12] type 01 class 0x060400
    [ 0.139207] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.139354] pci 0000:00:1c.1: [8086:1e14] type 01 class 0x060400
    [ 0.139506] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.139671] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.139708] pci 0000:00:1d.0: reg 0x10: [mem 0xe0705c00-0xe0705fff]
    [ 0.139869] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.139938] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.140021] pci 0000:00:1f.0: [8086:1e5f] type 00 class 0x060100
    [ 0.140331] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.140373] pci 0000:00:1f.2: reg 0x10: [io 0x1060-0x1067]
    [ 0.140391] pci 0000:00:1f.2: reg 0x14: [io 0x1070-0x1073]
    [ 0.140409] pci 0000:00:1f.2: reg 0x18: [io 0x1068-0x106f]
    [ 0.140427] pci 0000:00:1f.2: reg 0x1c: [io 0x1074-0x1077]
    [ 0.140444] pci 0000:00:1f.2: reg 0x20: [io 0x1040-0x105f]
    [ 0.140461] pci 0000:00:1f.2: reg 0x24: [mem 0xe0705000-0xe07057ff]
    [ 0.140568] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.140707] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.140738] pci 0000:00:1f.3: reg 0x10: [mem 0xe0706000-0xe07060ff 64bit]
    [ 0.140781] pci 0000:00:1f.3: reg 0x20: [io 0x0400-0x041f]
    [ 0.140941] pci 0000:00:1f.6: [8086:1e24] type 00 class 0x118000
    [ 0.140981] pci 0000:00:1f.6: reg 0x10: [mem 0xe0704000-0xe0704fff 64bit]
    [ 0.141361] pci 0000:01:00.0: [168c:0034] type 00 class 0x028000
    [ 0.141432] pci 0000:01:00.0: reg 0x10: [mem 0xe0400000-0xe047ffff 64bit]
    [ 0.141586] pci 0000:01:00.0: reg 0x30: [mem 0xe0480000-0xe048ffff pref]
    [ 0.141772] pci 0000:01:00.0: supports D1 D2
    [ 0.141776] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.146966] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.146982] pci 0000:00:1c.0: bridge window [mem 0xe0400000-0xe04fffff]
    [ 0.147186] pci 0000:02:00.0: [14e4:16b5] type 00 class 0x020000
    [ 0.147261] pci 0000:02:00.0: reg 0x10: [mem 0xe0500000-0xe050ffff 64bit pref]
    [ 0.147314] pci 0000:02:00.0: reg 0x18: [mem 0xe0510000-0xe051ffff 64bit pref]
    [ 0.147412] pci 0000:02:00.0: reg 0x30: [mem 0xe0600000-0xe06007ff pref]
    [ 0.147646] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.147839] pci 0000:02:00.1: [14e4:16bc] type 00 class 0x080501
    [ 0.147913] pci 0000:02:00.1: reg 0x10: [mem 0xe0520000-0xe052ffff 64bit pref]
    [ 0.148270] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
    [ 0.153657] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.153672] pci 0000:00:1c.1: bridge window [mem 0xe0600000-0xe06fffff]
    [ 0.153686] pci 0000:00:1c.1: bridge window [mem 0xe0500000-0xe05fffff 64bit pref]
    [ 0.153903] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11, disabled.
    [ 0.153995] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10, disabled.
    [ 0.154081] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11, disabled.
    [ 0.154165] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15), disabled.
    [ 0.154248] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *11, disabled.
    [ 0.154330] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.154413] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.154495] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.155375] ACPI: Enabled 1 GPEs in block 00 to 3F
    [ 0.155452] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.155654] vgaarb: setting as boot device: PCI:0000:00:02.0
    [ 0.155658] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.155664] vgaarb: loaded
    [ 0.155666] vgaarb: bridge control possible 0000:00:02.0
    [ 0.155751] PCI: Using ACPI for IRQ routing
    [ 0.159478] PCI: pci_cache_line_size set to 64 bytes
    [ 0.159577] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    [ 0.159581] e820: reserve RAM buffer [mem 0xacee4000-0xafffffff]
    [ 0.159584] e820: reserve RAM buffer [mem 0x14f600000-0x14fffffff]
    [ 0.159796] NetLabel: Initializing
    [ 0.159799] NetLabel: domain hash size = 128
    [ 0.159801] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.159829] NetLabel: unlabeled traffic allowed by default
    [ 0.159874] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.159885] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.161931] Switched to clocksource hpet
    [ 0.171668] pnp: PnP ACPI init
    [ 0.171847] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.171852] system 00:00: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.171857] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.171861] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.171865] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.171869] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.171873] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.171877] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.171881] system 00:00: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.171885] system 00:00: [mem 0x40000000-0x401fffff] has been reserved
    [ 0.171891] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.172584] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.172590] system 00:01: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.172671] system 00:02: [io 0x0500-0x057f] could not be reserved
    [ 0.172676] system 00:02: [io 0x0480-0x04bf] has been reserved
    [ 0.172681] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.172727] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.172802] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.172844] pnp: PnP ACPI: found 5 devices
    [ 0.181140] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.181153] pci 0000:00:1c.0: bridge window [mem 0xe0400000-0xe04fffff]
    [ 0.181169] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.181179] pci 0000:00:1c.1: bridge window [mem 0xe0600000-0xe06fffff]
    [ 0.181187] pci 0000:00:1c.1: bridge window [mem 0xe0500000-0xe05fffff 64bit pref]
    [ 0.181201] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.181205] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.181209] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.181212] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.181216] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.181219] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.181223] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff]
    [ 0.181226] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff]
    [ 0.181230] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff]
    [ 0.181233] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff]
    [ 0.181237] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff]
    [ 0.181240] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff]
    [ 0.181243] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff]
    [ 0.181247] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff]
    [ 0.181250] pci_bus 0000:00: resource 18 [mem 0x000f0000-0x000fffff]
    [ 0.181254] pci_bus 0000:00: resource 19 [mem 0xafa00000-0xfebfffff]
    [ 0.181257] pci_bus 0000:00: resource 20 [mem 0xfed40000-0xfed44fff]
    [ 0.181262] pci_bus 0000:01: resource 1 [mem 0xe0400000-0xe04fffff]
    [ 0.181266] pci_bus 0000:02: resource 1 [mem 0xe0600000-0xe06fffff]
    [ 0.181269] pci_bus 0000:02: resource 2 [mem 0xe0500000-0xe05fffff 64bit pref]
    [ 0.181319] NET: Registered protocol family 2
    [ 0.181671] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.181835] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.181980] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.182017] TCP: reno registered
    [ 0.182031] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.182066] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.182162] NET: Registered protocol family 1
    [ 0.182192] pci 0000:00:02.0: Video device with shadowed ROM
    [ 0.182773] PCI: CLS 64 bytes, default 64
    [ 0.182860] Unpacking initramfs...
    [ 0.302677] Freeing initrd memory: 3232K (ffff8800379a0000 - ffff880037cc8000)
    [ 0.302693] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.302698] software IO TLB [mem 0xa8ee4000-0xacee4000] (64MB) mapped at [ffff8800a8ee4000-ffff8800acee3fff]
    [ 0.302960] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
    [ 0.303038] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
    [ 0.303051] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
    [ 0.303148] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.303201] Scanning for low memory corruption every 60 seconds
    [ 0.303637] futex hash table entries: 512 (order: 3, 32768 bytes)
    [ 0.303657] Initialise system trusted keyring
    [ 0.304287] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.307213] zpool: loaded
    [ 0.307219] zbud: loaded
    [ 0.307572] VFS: Disk quotas dquot_6.5.2
    [ 0.307644] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.307867] msgmni has been set to 7783
    [ 0.307975] Key type big_key registered
    [ 0.308262] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.308317] io scheduler noop registered
    [ 0.308322] io scheduler deadline registered
    [ 0.308380] io scheduler cfq registered (default)
    [ 0.308697] pcieport 0000:00:1c.0: irq 24 for MSI/MSI-X
    [ 0.308978] pcieport 0000:00:1c.1: irq 25 for MSI/MSI-X
    [ 0.309161] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.309165] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 0.309172] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.309208] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
    [ 0.309212] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 0.309215] pci 0000:02:00.1: Signaling PME through PCIe PME interrupt
    [ 0.309223] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
    [ 0.309253] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.309285] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.309344] vesafb: mode is 1366x768x32, linelength=5504, pages=0
    [ 0.309346] vesafb: scrolling: redraw
    [ 0.309350] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.309380] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90004780000, using 4160k, total 4160k
    [ 0.315773] Console: switching to colour frame buffer device 170x48
    [ 0.321847] fb0: VESA VGA frame buffer device
    [ 0.321882] intel_idle: MWAIT substates: 0x21120
    [ 0.321884] intel_idle: v0.4 model 0x2A
    [ 0.321887] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.322122] GHES: HEST is not enabled!
    [ 0.322261] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.323099] Linux agpgart interface v0.103
    [ 0.323175] rtc_cmos 00:03: RTC can wake from S4
    [ 0.323405] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    [ 0.323444] rtc_cmos 00:03: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.323464] Intel P-state driver initializing.
    [ 0.323700] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.323974] TCP: cubic registered
    [ 0.324249] NET: Registered protocol family 10
    [ 0.324810] NET: Registered protocol family 17
    [ 0.325630] Loading compiled-in X.509 certificates
    [ 0.325667] registered taskstats version 1
    [ 0.326469] Magic number: 2:425:406
    [ 0.326624] rtc_cmos 00:03: setting system clock to 2014-10-27 00:25:43 UTC (1414369543)
    [ 0.326771] PM: Hibernation image not present or could not be loaded.
    [ 0.328979] Freeing unused kernel memory: 1140K (ffffffff818e5000 - ffffffff81a02000)
    [ 0.328984] Write protecting the kernel read-only data: 8192k
    [ 0.334234] Freeing unused kernel memory: 752K (ffff880001544000 - ffff880001600000)
    [ 0.336362] Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    [ 0.352574] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.355532] systemd-udevd[47]: starting version 216
    [ 0.387858] ACPI: bus type USB registered
    [ 0.387913] usbcore: registered new interface driver usbfs
    [ 0.387936] usbcore: registered new interface driver hub
    [ 0.388039] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    [ 0.388042] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    [ 0.391270] usbcore: registered new device driver usb
    [ 0.392129] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.392223] sdhci: Secure Digital Host Controller Interface driver
    [ 0.392228] sdhci: Copyright(c) Pierre Ossman
    [ 0.392414] ehci-pci: EHCI PCI platform driver
    [ 0.392656] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 0.392671] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 0.392674] sdhci-pci 0000:02:00.1: SDHCI controller found [14e4:16bc] (rev 10)
    [ 0.392714] ehci-pci 0000:00:1a.0: debug port 2
    [ 0.393158] sdhci-pci 0000:02:00.1: No vmmc regulator found
    [ 0.393163] sdhci-pci 0000:02:00.1: No vqmmc regulator found
    [ 0.395522] mmc0: SDHCI controller on PCI [0000:02:00.1] using ADMA
    [ 0.397372] SCSI subsystem initialized
    [ 0.400613] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 0.400649] ehci-pci 0000:00:1a.0: irq 21, io mem 0xe0705800
    [ 0.402598] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.402906] libata version 3.00 loaded.
    [ 0.408631] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 0.408994] hub 1-0:1.0: USB hub found
    [ 0.409010] hub 1-0:1.0: 3 ports detected
    [ 0.409474] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.409486] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 0.409509] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.413433] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.413449] ehci-pci 0000:00:1d.0: irq 19, io mem 0xe0705c00
    [ 0.421967] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.422311] hub 2-0:1.0: USB hub found
    [ 0.422325] hub 2-0:1.0: 3 ports detected
    [ 0.422611] ahci 0000:00:1f.2: version 3.0
    [ 0.422819] ahci 0000:00:1f.2: irq 26 for MSI/MSI-X
    [ 0.422858] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
    [ 0.422890] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x1 impl SATA mode
    [ 0.422896] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part apst
    [ 0.425306] scsi host0: ahci
    [ 0.427777] scsi host1: ahci
    [ 0.430423] scsi host2: ahci
    [ 0.431139] scsi host3: ahci
    [ 0.431256] ata1: SATA max UDMA/133 abar m2048@0xe0705000 port 0xe0705100 irq 26
    [ 0.431260] ata2: DUMMY
    [ 0.431262] ata3: DUMMY
    [ 0.431265] ata4: DUMMY
    [ 0.475720] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.715469] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 0.748738] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.760911] ata1.00: ATA-8: MKNSSDCR120GB-7, 582ABBF0, max UDMA/133
    [ 0.760921] ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 0.770881] ata1.00: configured for UDMA/133
    [ 0.771363] scsi 0:0:0:0: Direct-Access ATA MKNSSDCR120GB-7 BBF0 PQ: 0 ANSI: 5
    [ 0.782066] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    [ 0.782627] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.782637] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.782810] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.785152] sda: sda1 sda2 sda3
    [ 0.786014] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.839907] hub 1-1:1.0: USB hub found
    [ 0.840119] hub 1-1:1.0: 4 ports detected
    [ 0.935913] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 0.945475] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 1.069643] hub 2-1:1.0: USB hub found
    [ 1.069827] hub 2-1:1.0: 4 ports detected
    [ 1.148949] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
    [ 1.233928] usb 1-1.1: string descriptor 0 read error: -22
    [ 1.290134] EXT4-fs (sda1): re-mounted. Opts: data=ordered
    [ 1.305272] tsc: Refined TSC clocksource calibration: 1097.506 MHz
    [ 1.315437] usb 1-1.3: new high-speed USB device number 4 using ehci-pci
    [ 1.344309] systemd-udevd[136]: starting version 216
    [ 1.352295] systemd-journald[119]: Received request to flush runtime journal from PID 1
    [ 1.607498] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 1.610413] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
    [ 1.610471] ACPI: Lid Switch [LID0]
    [ 1.610565] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    [ 1.610572] ACPI: Power Button [PWRB]
    [ 1.610653] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    [ 1.610657] ACPI: Sleep Button [TPAD]
    [ 1.610758] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 1.610763] ACPI: Power Button [PWRF]
    [ 1.626490] mei_me 0000:00:16.0: irq 27 for MSI/MSI-X
    [ 1.645724] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 1.645942] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
    [ 1.653739] thermal LNXTHERM:00: registered as thermal_zone0
    [ 1.653745] ACPI: Thermal Zone [THRM] (0 C)
    [ 1.660772] [Firmware Bug]: battery: (dis)charge rate invalid.
    [ 1.665282] ACPI: Battery Slot [BATX] (battery present)
    [ 1.666038] ACPI: AC Adapter [AC] (on-line)
    [ 1.681337] ACPI Warning: SystemIO range 0x0000000000000528-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\PMIO) (20140724/utaddress-258)
    [ 1.681351] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.681358] ACPI Warning: SystemIO range 0x00000000000004c0-0x00000000000004cf conflicts with OpRegion 0x0000000000000480-0x00000000000004eb (\GPIO) (20140724/utaddress-258)
    [ 1.681364] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.681367] ACPI Warning: SystemIO range 0x00000000000004b0-0x00000000000004bf conflicts with OpRegion 0x0000000000000480-0x00000000000004eb (\GPIO) (20140724/utaddress-258)
    [ 1.681374] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.681376] ACPI Warning: SystemIO range 0x0000000000000480-0x00000000000004af conflicts with OpRegion 0x0000000000000480-0x00000000000004eb (\GPIO) (20140724/utaddress-258)
    [ 1.681382] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.681385] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 1.688249] [drm] Initialized drm 1.1.0 20060810
    [ 1.691201] pps_core: LinuxPPS API ver. 1 registered
    [ 1.691207] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 1.700706] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 1.701200] PTP clock support registered
    [ 1.706524] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 1.752871] tg3.c:v3.137 (May 11, 2014)
    [ 1.753314] Adding 8167872k swap on /dev/sda2. Priority:-1 extents:1 across:8167872k SSFS
    [ 1.757127] Bluetooth: Core ver 2.19
    [ 1.757151] NET: Registered protocol family 31
    [ 1.757154] Bluetooth: HCI device and connection manager initialized
    [ 1.757166] Bluetooth: HCI socket layer initialized
    [ 1.757170] Bluetooth: L2CAP socket layer initialized
    [ 1.757180] Bluetooth: SCO socket layer initialized
    [ 1.771585] usbcore: registered new interface driver btusb
    [ 1.771864] snd_hda_intel 0000:00:1b.0: irq 28 for MSI/MSI-X
    [ 1.777240] cfg80211: Calling CRDA to update world regulatory domain
    [ 1.812626] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 1.812635] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 1.812640] sound hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
    [ 1.812643] sound hdaudioC0D0: mono: mono_out=0x0
    [ 1.812646] sound hdaudioC0D0: inputs:
    [ 1.812650] sound hdaudioC0D0: Internal Mic=0x1b
    [ 1.812654] sound hdaudioC0D0: Mic=0x19
    [ 1.819178] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM57785) rev 57785100] (PCI Express) MAC address 20:89:84:c7:a0:92
    [ 1.819187] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
    [ 1.819192] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    [ 1.819196] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
    [ 1.834640] media: Linux media interface: v0.10
    [ 1.845475] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input7
    [ 1.849543] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 1.850477] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 1.850623] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 1.851058] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 1.851353] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 1.860140] iTCO_vendor_support: vendor-support=0
    [ 1.861704] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 1.861764] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0560)
    [ 1.862721] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 1.863690] Linux video capture interface: v2.00
    [ 1.875723] usbcore: registered new interface driver ath3k
    [ 1.914247] tg3 0000:02:00.0 enp2s0f0: renamed from eth0
    [ 1.926001] systemd-udevd[145]: renamed network interface eth0 to enp2s0f0
    [ 1.938186] usb 1-1.1: USB disconnect, device number 3
    [ 1.944872] uvcvideo: Found UVC 1.00 device HD WebCam (04f2:b336)
    [ 1.953353] input: HD WebCam as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input13
    [ 1.953679] usbcore: registered new interface driver uvcvideo
    [ 1.953684] USB Video Class driver (1.1.1)
    [ 1.997073] intel_rapl: Found RAPL domain package
    [ 1.997080] intel_rapl: Found RAPL domain core
    [ 1.997083] intel_rapl: Found RAPL domain uncore
    [ 1.999325] [drm] Memory usable by graphics device = 2048M
    [ 1.999330] [drm] Replacing VGA console driver
    [ 1.999337] checking generic (d0000000 410000) vs hw (d0000000 10000000)
    [ 1.999340] fb: switching to inteldrmfb from VESA VGA
    [ 1.999399] Console: switching to colour dummy device 80x25
    [ 2.006114] i915 0000:00:02.0: irq 29 for MSI/MSI-X
    [ 2.006130] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 2.006133] [drm] Driver supports precise vblank timestamp query.
    [ 2.006275] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 2.010165] input: Cypress APA Trackpad (cyapa) as /devices/pci0000:00/0000:00:1f.3/i2c-0/0-0067/input/input14
    [ 2.014824] mousedev: PS/2 mouse device common for all mice
    [ 2.037823] ath: phy0: ASPM enabled: 0x43
    [ 2.037831] ath: EEPROM regdomain: 0x6c
    [ 2.037834] ath: EEPROM indicates we should expect a direct regpair map
    [ 2.037838] ath: Country alpha2 being used: 00
    [ 2.037840] ath: Regpair used: 0x6c
    [ 2.044014] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 2.044617] ieee80211 phy0: Atheros AR9462 Rev:2 mem=0xffffc90004980000, irq=17
    [ 2.050867] ath9k 0000:01:00.0 wlp1s0: renamed from wlan0
    [ 2.054438] fbcon: inteldrmfb (fb0) is primary device
    [ 2.054543] Console: switching to colour frame buffer device 170x48
    [ 2.054559] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 2.054563] i915 0000:00:02.0: registered panic notifier
    [ 2.066878] systemd-udevd[145]: renamed network interface wlan0 to wlp1s0
    [ 2.070905] [drm] Initialized i915 1.6.0 20140725 for 0000:00:02.0 on minor 0
    [ 2.125455] usb 1-1.1: new full-speed USB device number 5 using ehci-pci
    [ 2.154830] tg3 0000:02:00.0: irq 30 for MSI/MSI-X
    [ 2.154842] tg3 0000:02:00.0: irq 31 for MSI/MSI-X
    [ 2.154849] tg3 0000:02:00.0: irq 32 for MSI/MSI-X
    [ 2.714571] Switched to clocksource tsc
    [ 2.714588] IPv6: ADDRCONF(NETDEV_UP): enp2s0f0: link is not ready
    [ 2.731648] usb 1-1.1: string descriptor 0 read error: -22
    [ 2.850571] random: nonblocking pool is initialized
    lsusb
    Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 001 Device 004: ID 04f2:b336 Chicony Electronics Co., Ltd
    Bus 001 Device 005: ID 0489:e04e Foxconn / Hon Hai
    Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

  • Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Your system is missing a couple DLLs that LR needs, but the fix at Adobe is to copy them to the LR folder which gets replaced for each install, so you have to redo it after each LR install.  It would be worth documenting the process and saving the DLLs so you don’t have to ask about it each time:
    http://helpx.adobe.com/lightroom/kb/error-unable-start-correctly-0xc00007b.html
    You might also use the AIO210 program to add them as detailed in this YouTube video—maybe this is a more permanent fix, but since the files are from media-fire be very careful about what you do so as not to install a virus on your computer. 
    I’d scan the downloaded ZIP you download with whatever virus and internet security software you have and don’t be fooled by extraneous popups you might see during the download process.  I was able to download the aio210.zip after authorizing one Captcha window and closed at least one bogus popup trying to get me to install other software.  I also scanned the downloaded zip with two virus scanners and both said it was clean.  Here is the YouTube video, where the link to the ZIP to download is in the description once you expand it:
    https://www.youtube.com/watch?v=vlT0N2CX50g

  • Final cut pro make Mac pro kernel panic with RAM from other manufacturers

    hi all
    if i installed RAM For mac Pro from 667MHz DDR2 fully buffered ECC RAM from other manufacturers
    final cut pro (just final cut)
    make the machine kernel panic messege
    all programs working good (like adobe and other compositing program) but final cut freez the machine and kernel panic
    the standard RAMs good

    Ahmed:
    You can try visiting/searching the Expanding your Power Mac G5 forum. You'll find A LOT of help about RAM issues.
    Any RAM brand must work but you maust be sure it follows the MAc specs. Some brand sites have good product locator by computer manufacturer/model (i.e. Kingston and Crucial). In fact there is no Apple branded RAM, they use a lot of different ones.
    Inside FCP settings you'll find how to manage the memory that the program use, but that settings depends on the total quantity of memory you have installed, and you didn't post that information.
      Alberto

  • Has someone applied the one off patch for-ONS bug 5749953 SIGBUS ERROR

    Hello all,
    Env:: 10g on Soalris
    I need to apply the one-off patch for
    Bug:5749953 -- ONS SIGBUS ERROR AFTER INSTALL PATCHSET 10.2.0.3 FOR CRS
    Usually for any CPU we issue opatch apply from the patch directory.
    and its mentioned in the readme.html as well.
    But for this one off patch, there isn't anything mentioned in the readme.html.
    All it says is
    #  6. Patch the Files
    #    6.1 Patch the CRS home files
    #    After unlocking any protected files and saving configuration settings
    #    you are now ready to run opatch using the following command.
    #    As the Oracle Clusterware (CRS) software owner;
    #    % opatch apply -local -oh <CRS_HOME>
    #    Note: In configuration A, invoke this only on one node.
    #    6.2 Patch the RDBMS home files.
    #    Alert: The RDBMS portion can only be applied to an RDBMS home that
    #          has been upgraded to 10.2.0.3.0.
    #    For additional information please read Note.363254.1;
    #    Applying one-off Oracle Clusterware patches in a mixed version home
    #    environment
    #    As the RDBMS software owner;
    #    % opatch apply custom/server/5749953 -local -oh <RDBMS_HOME>
    #    Note: In configuration A, invoke this only on one node.Could someone let me know from where i should give 'opatch apply' if patch.zip files are unzipped in /export/home/oracle/5749953  ? TIA,
    JJ

    The patch can always be installed in 2 ways.
    1. Do a cd and then run opatch
    cd <patchlocation>
    opatch apply
    2. Else specify the patch location as an argument
    opatch apply <full path to the patch i.e the one you do cd above> ...
    Both the above styles yield same result.
    VJ

  • Installation of Oracle VDI 3.4.1 fails at applying the Sun Ray patch

    Downloaded VDI 3.4.1 for Solaris, checked md5 OK against download page, attempted a freash installation rather than upgrade and it failed at applying the Sun Ray patch.
    Solaris 10 u9 x86 full installation with recommend patches (OK its a ESXi 64 bit virtual machine, but need to test before I try it on the real hardware)
    Fresh installation of Solaris & patches (automated via JET), which works fine for installing VDI 3.4
    VDI 3.4.1 fresh install
    unzip -q p14226229_34_Solaris86-64.zip
    cd vda_3.4.1_solaris_amd64
    + Installing Sun Ray Server...
    Error: There was a problem installing Sun Ray Software 5.3.1.0
    Check '/var/sadm/install/logs/vda-install.2012_07_26_15:46:10.log' for details.
    See the log file '/var/sadm/install/logs/vda-install.2012_07_26_15:46:10.log' for additional information.
    I check the log file and its failing to install patch 149156-01, looking at the patch log there is a message about attempting to install the same architecture and version of a package which is already installed, then a message from checkinstall "........<full patch to check install>/checkinstall: cannot open"
    So has anyone else actually downloaded and installed Oracle VDI 3.4.1 on Solaris 10 u9 x86 successfully?
    Paul

    OK went back to Oracle VDI 3.3.2 and it was still a problem on this machine. Turns out I made /software where the media is installed a ZFS partition with a quota of 5g (which hasn't hit a limit, its used less than 1g).
    So the real question is why Oracle VDI won't install from a ZFS partition?
    # This works fine!
    mkdir /software
    mkdir /software/vdi_332_Solaris86-64
    cp vdi_332_Solaris86-64.zip /software
    cd /software/vdi_332_Solaris86-64
    unzip -q ../vdi_332_Solaris86-64.zip
    cd /software/vdi_332_Solaris86-64/vda_3.3.2_solaris_amd64
    ./vda-install
    # This Fails !
    zfs create -o mountpoint=/software -o quota=5g rpool/software
    mkdir /software/vdi_332_Solaris86-64
    cp vdi_332_Solaris86-64.zip /software
    cd /software/vdi_332_Solaris86-64
    unzip -q ../vdi_332_Solaris86-64.zip
    cd /software/vdi_332_Solaris86-64/vda_3.3.2_solaris_amd64
    ./vda-install
    Root is a ZFS partition and unzip -q works fine (I summed all files in both structures and they are the same). There is something in the vda-install that breaks due to it being a separate ZFS partition.
    Paul

  • Freezes (crashes) when using BFS-patched kernels

    I've been trying several BFS-patched kernels since a few months ago and when I'm using them it almost always ends up with a complete freeze of my computer within a few hours: the mouse pointer doesn't move anymore, CTRL-ALT-F1 doesn't do anything, the only thing I can do is keep the power button pressed for 4 seconds to switch my computer off.
    The crashes/freezes often happen when clicking a button in Firefox, but it also happened when opening Firefox, or closing a game.
    The kernels I have tried are kernel26-pentium-m (kernel 2.6.34 with Zen patchset) and kernel26-bfs (kernel 2.6.35 with BFS patch) from AUR.
    I'm running XFCE4 on an Asus A6G laptop (Pentium-M, ATI Radeon 9700 mobility with xf86-video-ati.)
    I'm simply not getting this kind of unexpected crashes with non-patched kernels, even those I have configured and built myself.
    Anyone having the same symptoms? Any idea about the problem or how to solve it?
    Alternatively, any solution to improve video playback and reduce input lag in video games that take 100% cpu time without resorting to BFS is welcome .
    Last edited by stqn (2010-09-07 14:53:27)

    Hey there, im the maintainer of the kernel26-pentium-m
    Actually I've updated the kernel to the 2.6.35 version, and provided link for the binaries (check the AUR entry :: http://aur.archlinux.org/packages.php?ID=33104 )
    I don't have any problems with it, but im using chromium, not firefox.
    Still, you should check /var/log/Xorg.0.log
    edit: the idea would be to 'diff' the two config files :s
    good luck though
    edit2 :: notice that you still need the kernel-headers (kernel sources) for compiling the graphical driver (nvidia or ATI catalyst in your case)
    ive put also the kernel26-pentium-m-headers binary package in the same dir as the binary package for the kernel.
    Last edited by quarkup (2010-09-07 23:03:53)

  • Applying BW 3.50 patch 3 for sapgui 7.10 to a installation server

    Hi All
    Im applying a few patches to a 7.10 installation server, everything works fine , except for when applying the BW 3.50 patch 3 for 7.10 GUI to the server .. well applying the patch actually works , but afterwards instead of having only 2 products to choose from on the first hierarchy level (Business Explorer and SAP GUI for Windows 7.10), there is suddenly 6 products instead (SAPGUI for windows 7.10, Engineering client viewer, bw 3.5 addon, kw addon, tweak gui and business explorer).
    The real question is .. before applying the patches, I had a package called "complete" which included both available products, after applying 3.50 bw patch, the original package still contains the same two products, but is that adequate ?? or should a new package be created that includes ALL products available after the patch ?
    Or .... is the original package completely patched ??
    I have never before seen a patch apply additional products to the installation server ....
    /Kim

    Hi Kim Sonny,
    nice to hear from you ....
    Ok, please check the note
    #1131768  and
    #1155445 !
    I recommend you to set up a new installation server with the new compilation 3 CD of
    sapgui 710 ! And for this please look into the note #1266552
    Best Regards,
    Sven
    from primary support gsc austria ....

  • How to apply c & d .drv patches?

    Hi Gurus,
    I want to apply c and d .drv patches
    Can I use the same command as we apply for u12345678.drv patch
    $./adpatch
    $ <patch_number> c12345678.drv and d12345678.drv
    Please correct me if I'm wrong, please reply
    Thanks,

    Afia wrote:
    Hi Gurus,
    I want to apply c and d .drv patches
    Can I use the same command as we apply for u12345678.drv patch
    $./adpatch
    $ <patch_number> c12345678.drv and d12345678.drv
    Please correct me if I'm wrong, please replyYes, use the same command 2 times, first run adpatch and pass the c driver then run adpatch again and pass the d driver.
    Thanks,
    Hussein

  • I have QT 10.0.  Can I apply markers to align where to make a cut?

    I have QT 10.0.  Can I apply markers to align where to make a cut?
    I have a 10.6.8 Mac OS X
    Thank You!

    I have QT 10.0.  Can I apply markers to align where to make a cut?
    I have a 10.6.8 Mac OS X
    Maybe. It depends on several things.
    1) Many users have described the built-in editor as non-functional with any or certain source files depending on their edit compatibility.
    2) Even if it works, some users have reported the the edited results could not be saved.
    3) Even if editing and saving is possible, the accuracy of the edits depends on the length of the source file and/or duration of the edit.
    I personally prefer QT 7 Pro ($) or MPEG Streamclip (free)—both of which can perform GOP and/or frame accurate editing.

  • Can i apply CPU April 2008 patch to R12 Base release?

    Hi
    Can i apply CPU April 2008 patch to R12 Base Release (12.0.0) and database (10.2.0.2)?
    Please help me providing the steps required to apply!
    Thanks.

    Check the following note, Section 1, "Oracle E-Business Suite Release 12":
    Note: 557157.1 - Oracle E-Business Suite Critical Patch Update Note April 2008
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=557157.1

  • Launching apps make screen temperature tone change in Mountain Lion, and kernel panics to

    I have a mid-2010 MBP. After installing ML I began experiencing kernel panics after a day or so. The system kept rebooting and couldn't stay on for longer than 2 minutes. It made the loud beeps indicating RAM issues, and the screen sometimes flashed weirdly. I could boot from an external clone, so the problem was the hard drive in the end.
    I installed a new SSD (Samsung 830) and 8GB of RAM from Kingston. Everything went fine for a day, them kernel panics started again, with those beeps, 3 beeps and other beeps at different frequencies. I think this time was a problem with the new RAM as switching to the old ones let's the computer work fine.
    Installing the old ones again worked fine, but moving the computer makes it freeze, so they're probably defective. When it booted, though, I noticed a strange issue, which is the topic of this question:
    Launching apps like Byword, Espresso or AppZapper made the color temperature change for, an hot to a cold tone. Quitting returned it to normal. Other apps, like apple's or Reeder worked fine. Launching these after one of the "cold" ones didn't restore it to normal. Rebooting sometimes solved the issue, it's not a consistent problem. Booting from an external clone of the current setup or an old one doesn't show the issue
    With the old original RAM this is less evident, but there's still a slight change with the said apps.
    I should try again with the clone to see if the change is slight and I didn't notice it, it may alway have been there from the start actually.
    Could it be a video card problem as the Apple Support guy told me? Am I this unlucky and my Kac is falling apart all the way?
    There is to say that I cannot afford to send it to Apple to check (which would take a couple of weeks) for a couple of months, as I need the computer.
    Have anyone seen this too?
    Thanks

    I have a mid-2010 MBP. After installing ML I began experiencing kernel panics after a day or so. The system kept rebooting and couldn't stay on for longer than 2 minutes. It made the loud beeps indicating RAM issues, and the screen sometimes flashed weirdly. I could boot from an external clone, so the problem was the hard drive in the end.
    I installed a new SSD (Samsung 830) and 8GB of RAM from Kingston. Everything went fine for a day, them kernel panics started again, with those beeps, 3 beeps and other beeps at different frequencies. I think this time was a problem with the new RAM as switching to the old ones let's the computer work fine.
    Installing the old ones again worked fine, but moving the computer makes it freeze, so they're probably defective. When it booted, though, I noticed a strange issue, which is the topic of this question:
    Launching apps like Byword, Espresso or AppZapper made the color temperature change for, an hot to a cold tone. Quitting returned it to normal. Other apps, like apple's or Reeder worked fine. Launching these after one of the "cold" ones didn't restore it to normal. Rebooting sometimes solved the issue, it's not a consistent problem. Booting from an external clone of the current setup or an old one doesn't show the issue
    With the old original RAM this is less evident, but there's still a slight change with the said apps.
    I should try again with the clone to see if the change is slight and I didn't notice it, it may alway have been there from the start actually.
    Could it be a video card problem as the Apple Support guy told me? Am I this unlucky and my Kac is falling apart all the way?
    There is to say that I cannot afford to send it to Apple to check (which would take a couple of weeks) for a couple of months, as I need the computer.
    Have anyone seen this too?
    Thanks

  • [svn:fx-3.x] 5719: User-submitted patch to make keypad numbers work for selection in ComboBox

    Revision: 5719
    Author: [email protected]
    Date: 2009-03-28 18:50:54 -0700 (Sat, 28 Mar 2009)
    Log Message:
    User-submitted patch to make keypad numbers work for selection in ComboBox
    QE Notes: None
    Doc Notes: None
    Bugs: sdk-17276
    Reviewer: alex
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/sdk-17276
    Patch submitter: Paul Taylor
    Community reviewer: Iwo Banas
    Ticket Links:
    http://bugs.adobe.com/jira/browse/sdk-17276
    http://bugs.adobe.com/jira/browse/sdk-17276
    Modified Paths:
    flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/listClasses/ListBase. as

    Hi,
    Found the reason for the problem. I think there's a bug in Flex that causes this. One of my formItem had an id="owner" and maybe flex has used this "owner" id somewhere internally. I changed the name and now all the comboboxes are working fine.

  • FASTFORMULA ASSISTANT MISSING AFTER APPLYING FP.K RUP1 PATCH

    We have recently applied FP.K RUP1 patch and are attempting to test the new
    functionality around the Fast Formula Assisant. In the README for RUP1 it
    explains that the new Fast Formula Assistant should be available with a new
    menu option "FastFormula Assistant" or "Global FastFormula Assistant" within
    the HRMS Menu.
    These menu items have not been created against the seeded menu "UK HRMS
    Navigator" which is attached to the seeded Responsibility "UK HRMS Manager".
    There appears to be seeded menus for the Assistant named "FastFormula
    Assistant". I have tried manually adding these to the Menus and cannot get the
    Assistant to work or indeed even open up.
    Are we missing any further patches or setup in order to access the Fast Formula
    Assistant?

    I looked at the Readme and yes it does imply that the feature should be found within the seeded UK HRMS Manager menus. I looked at my instance and Fast Formula Assistant is not there for UK HRMS Manager also. However, using the US Super HRMS Manager responsibility, it is available:
    Total Compensation > Basic > Fast Formula > Fast Formula Assistant
    Please log a Service Request with Oracle Support and request clarification for this issue.
    Regards,
    Greg

Maybe you are looking for

  • Adobe Presenter 8 Video Creator crashes when publishing

    After capturing a video and demonstration using Presenter Video Creator, I am able to edit the video, choose whether I show talking head, demo, or both.  The program seems to record everything as I would expect.  However, when I attempt to publish, i

  • CS4 psd file display problem

    For some reason within the last few months a problem with the colors that Photoshop is displaying in the application. The colors are not actually wrong if you check the color picker, it's just how it actually looks when you're working on it. In addit

  • Configuration of third-party router

    Hello, I'm trying to configure a router in place of my BT Home Hub.  I am pretty sure it has to be PPPoE because it's ethernet out the back of the Home Hub.  I tried what was posted on these forums, I used [email protected] with 'bt' as the password.

  • Lightroom in CS3?

    This is probably a question that nobody will be able to answer, but I will ask just in case. I'm VERY interested in Lightroom, but know that I will probably be purchasing Creative Suite 3 when it comes out. What are the chances that Lightroom will be

  • Another Elements 5 problem

    After elements 5 opens,  I immediately get a screen saying that windows must close to avoid damage, and it does so. It had worked with no problems for a long time. I am running Windoews XP and added no new programs before the problem started, but the