Cockatrice mkpkg

Hey guys someone have time to fix tha issues on this mkpkg?
https://aur.archlinux.org/packages.php?ID=31133
a read the comments but i dont have expertise in bash syntax :S
pkgname=cockatrice-git
pkgver=20100113
pkgrel=1
pkgdesc="Cockatrice is an open-source, multiplatform software package for playing card games, such as Magic: The Gathering, over a network."
arch=('i686' 'x86_64')
url="http://www.cockatrice.de/index.php"
license=('GPLv2')
depends=('qt>=4.5.1')
_gitroot="git://cockatrice.de/home/cockgit/cockatrice"
_gitname="cockatrice"
build() {
cd "$srcdir"
msg "Connecting to the GIT server...."
if [ -d "$_gitname" ]; then
cd $_gitname && git pull origin
msg2 "Local files updated"
cd ..
else
git clone $_gitroot
fi
msg2 "GIT checkout done or server timeout"
rm -rf $_gitname-build
cp -r $_gitname $_gitname-build
cd $_gitname-build/cockatrice
lrelease cockatrice.pro || return 1
qmake || return 1
make || return 1
cd ../oracle
lrelease oracle.pro || return 1
qmake || return 1
make || return 1
cd ../servatrice
lrelease servatrice.pro || return 1
qmake || return 1
make || return 1
cd ..
mkdir -p $startdir/pkg/opt/cockatrice/bin
mkdir -p $startdir/pkg/opt/cockatrice/oracle
mkdir -p $startdir/pkg/opt/cockatrice/pic
chmod 775 $startdir/pkg/opt/cockatrice/oracle
chmod 775 $startdir/pkg/opt/cockatrice/pic
groupadd games
chown -R root.games $startdir/pkg/opt/cockatrice/oracle
chown -R root.games $startdir/pkg/opt/cockatrice/pic
cp cockatrice/cockatrice $startdir/pkg/opt/cockatrice/bin
cp -r cockatrice/resources $startdir/pkg/opt/cockatrice/bin
cp oracle/oracle $startdir/pkg/opt/cockatrice/bin
cp oracle/sets.xml $startdir/pkg/opt/cockatrice/oracle
cp servatrice/servatrice $startdir/pkg/opt/cockatrice/bin
cp servatrice/servatrice.ini.example $startdir/pkg/opt/cockatrice/bin
echo
echo "Please make sure your user is a member of the group 'games'."
echo
echo "To download the latest M:TG card list for Cockatrice, please do the following:"
echo "cd /opt/cockatrice/bin"
echo "./oracle"
echo
echo "Then open Cockatrice, go to File->Settings, and change the path to Cards"
echo "Database to '/opt/cockatrice/oracle/cards.xml', and the path to Pictures to"
echo "'/opt/cockatrice/pic'."
echo

AUR stuff belongs in the AUR forum . Moving.

Similar Messages

  • [SOLVED] mkpkg libdesktop-agnostic

    I am attempting to install avant-window-manager and it has a dependency I cannot get resolved.  when i run makepkg -s for the dependency libdesktop-agnostic-bzr (in the AUR) it says there is in error in the PKGBUILD line 45 and aborts the install.
    josh@archlinux libdesktop-agnostic-bzr]$ makepkg -s
    ==> Determining latest bzr revision...
    ->> Version found: 405
    ==> Making package: libdesktop-agnostic-bzr 405-2 (Sun Jun 10 20:08:21 PDT 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found gir.patch
    ==> Validating source files with md5sums...
    gir.patch ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    ==> Connecting to Bazaar server....
    No revisions or tags to pull.
    ==> The local files are updated.
    ==> Bazaar checkout done or server timeout
    ==> Starting build...
    /home/josh/aurpkg/libdesktop-agnostic-bzr/PKGBUILD: line 45: patch: command not found
    ==> ERROR: A failure occurred in build().
    Aborting... Version found: 405
    ==> Making package: libdesktop-agnostic-bzr 405-2 (Sun Jun 10 20:08:21 PDT 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Found gir.patch
    ==> Validating source files with md5sums...
    gir.patch ... Passed
    ==> Extracting Sources...
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    ==> Connecting to Bazaar server....
    No revisions or tags to pull.
    ==> The local files are updated.
    ==> Bazaar checkout done or server timeout
    ==> Starting build...
    /home/josh/aurpkg/libdesktop-agnostic-bzr/PKGBUILD: line 45: patch: command not found
    ==> ERROR: A failure occurred in build().
    Aborting...
    I found the error and believe i have corrected it in the PKGBUILD (below is the corrected version line 45 read
    patch -Np1 -i "$srcdir"/gir.patch
    Is it retrieving another PKGBUILD whenever I run the makepkg command?  I am fairly new to arch (installed several days ago) and know you guys can get irritated with incomplete information so I'm sorry about the length of the post I just want to be sure I give you guys everything to avoid your wrath lol# Maintainer: Alessio Sergi <asergi at archlinux dot us>
    pkgname=libdesktop-agnostic-bzr
    _pkgname=libdesktop-agnostic
    pkgver=405
    pkgrel=2
    pkgdesc="A desktop-agnostic library for GLib-based projects"
    arch=('i686' 'x86_64')
    url="https://launchpad.net/libdesktop-agnostic"
    license=('GPL2' 'LGPL2.1')
    depends=('pygtk' 'python2-gobject2')
    makedepends=('bzr' 'gconf' 'gobject-introspection' 'intltool' 'vala')
    optdepends=('gconf: gconf configuration backend')
    provides=($_pkgname)
    conflicts=($_pkgname)
    backup=(etc/xdg/$_pkgname/desktop-agnostic.ini)
    options=('!libtool')
    source=('gir.patch')
    md5sums=('346e06ae914ec0c12e5f1fa1c4796575')
    #md5sums=('69bf989b9204fe886c958b279822696c')[/ins]
    [ins]_bzrtrunk="https://code.launchpad.net/~lda-team/libdesktop-agnostic/trunk"
    _bzrmod="$_pkgname"[/ins]
    [ins]build() {
    cd "$srcdir"[/ins]
    [ins] msg "Connecting to Bazaar server...."[/ins]
    [ins] if [[ -d "$_bzrmod" ]]; then
    cd "$_bzrmod" && bzr --no-plugins pull "$_bzrtrunk" -r "$pkgver"
    msg "The local files are updated."
    else
    bzr --no-plugins branch "$_bzrtrunk" "$_bzrmod" -q -r "$pkgver"
    fi[/ins]
    [ins] msg "Bazaar checkout done or server timeout"
    msg "Starting build..."[/ins]
    [ins] rm -rf "$srcdir/$_bzrmod-build"
    cp -r "$srcdir/$_bzrmod" "$srcdir/$_bzrmod-build"
    cd "$srcdir/$_bzrmod-build"[/ins]
    [ins] # fix to turn on introspection
    patch -Np1 -i "$srcdir/gir.patch"[/ins]
    [ins] # python2 fix
    sed -i '1s|^#!.*python$|&2|' waf[/ins]
    [ins] export PYTHON="/usr/bin/python2"
    export VALAC="/opt/vala-0.12/bin/valac"[/ins]
    [ins] ./waf configure --prefix=/usr --sysconfdir=/etc \
    --config-backends=gconf,keyfile \
    --vfs-backends=gio \
    --desktop-entry-backends=gio,glib
    ./waf
    }[/ins]
    [ins]package() {
    cd "$srcdir/$_bzrmod-build"[/ins]
    [ins] ./waf install --destdir="$pkgdir/" --sysconfdir="$pkgdir"/etc
    }[/ins]
    [ins]# vim:set ts=2 sw=2 et:
    What can i do to fix this?
    Last edited by jallenusn (2012-06-11 04:52:09)

    pacman -S base-devel

  • Custom kernel 2.6.31- iwl3945 module won't compile

    hi
    i've got a
    Network controller: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection (rev 02)
    but its not possible to select the needed module iwl3945 in the config
    inserting...
    CONFIG_IWLWIFI=m
    CONFIG_IWLWIFI_LEDS=y
    CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT=y
    CONFIG_IWLAGN=m
    CONFIG_IWL3945=m
    CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y
    in the config file, doesn't change anyhing, module won't be compiled
    heres my kernel config
    # Automatically generated make config: don't edit
    # Linux kernel version: 2.6.31
    # Tue Sep 22 11:39:14 2009
    # CONFIG_64BIT is not set
    CONFIG_X86_32=y
    # CONFIG_X86_64 is not set
    CONFIG_X86=y
    CONFIG_OUTPUT_FORMAT="elf32-i386"
    CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig"
    CONFIG_GENERIC_TIME=y
    CONFIG_GENERIC_CMOS_UPDATE=y
    CONFIG_CLOCKSOURCE_WATCHDOG=y
    CONFIG_GENERIC_CLOCKEVENTS=y
    CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
    CONFIG_LOCKDEP_SUPPORT=y
    CONFIG_STACKTRACE_SUPPORT=y
    CONFIG_HAVE_LATENCYTOP_SUPPORT=y
    CONFIG_FAST_CMPXCHG_LOCAL=y
    CONFIG_MMU=y
    CONFIG_ZONE_DMA=y
    CONFIG_GENERIC_ISA_DMA=y
    CONFIG_GENERIC_IOMAP=y
    CONFIG_GENERIC_BUG=y
    CONFIG_GENERIC_HWEIGHT=y
    CONFIG_ARCH_MAY_HAVE_PC_FDC=y
    # CONFIG_RWSEM_GENERIC_SPINLOCK is not set
    CONFIG_RWSEM_XCHGADD_ALGORITHM=y
    CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    # CONFIG_GENERIC_TIME_VSYSCALL is not set
    CONFIG_ARCH_HAS_CPU_RELAX=y
    CONFIG_ARCH_HAS_DEFAULT_IDLE=y
    CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
    CONFIG_HAVE_SETUP_PER_CPU_AREA=y
    CONFIG_HAVE_DYNAMIC_PER_CPU_AREA=y
    # CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set
    CONFIG_ARCH_HIBERNATION_POSSIBLE=y
    CONFIG_ARCH_SUSPEND_POSSIBLE=y
    # CONFIG_ZONE_DMA32 is not set
    CONFIG_ARCH_POPULATES_NODE_MAP=y
    # CONFIG_AUDIT_ARCH is not set
    CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
    CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
    CONFIG_GENERIC_HARDIRQS=y
    CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_GENERIC_PENDING_IRQ=y
    CONFIG_USE_GENERIC_SMP_HELPERS=y
    CONFIG_X86_32_SMP=y
    CONFIG_X86_HT=y
    CONFIG_X86_TRAMPOLINE=y
    CONFIG_X86_32_LAZY_GS=y
    CONFIG_KTIME_SCALAR=y
    CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
    CONFIG_CONSTRUCTORS=y
    # General setup
    # CONFIG_EXPERIMENTAL is not set
    CONFIG_LOCK_KERNEL=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    CONFIG_LOCALVERSION="-krizl"
    # CONFIG_LOCALVERSION_AUTO is not set
    CONFIG_HAVE_KERNEL_GZIP=y
    CONFIG_HAVE_KERNEL_BZIP2=y
    CONFIG_HAVE_KERNEL_LZMA=y
    CONFIG_KERNEL_GZIP=y
    # CONFIG_KERNEL_BZIP2 is not set
    # CONFIG_KERNEL_LZMA is not set
    CONFIG_SWAP=y
    CONFIG_SYSVIPC=y
    CONFIG_SYSVIPC_SYSCTL=y
    CONFIG_BSD_PROCESS_ACCT=y
    # CONFIG_BSD_PROCESS_ACCT_V3 is not set
    CONFIG_TASKSTATS=y
    # CONFIG_TASK_DELAY_ACCT is not set
    CONFIG_TASK_XACCT=y
    CONFIG_TASK_IO_ACCOUNTING=y
    CONFIG_AUDIT=y
    CONFIG_AUDITSYSCALL=y
    CONFIG_AUDIT_TREE=y
    # RCU Subsystem
    # CONFIG_CLASSIC_RCU is not set
    CONFIG_TREE_RCU=y
    # CONFIG_PREEMPT_RCU is not set
    # CONFIG_RCU_TRACE is not set
    CONFIG_RCU_FANOUT=32
    # CONFIG_RCU_FANOUT_EXACT is not set
    # CONFIG_TREE_RCU_TRACE is not set
    # CONFIG_PREEMPT_RCU_TRACE is not set
    CONFIG_IKCONFIG=m
    CONFIG_IKCONFIG_PROC=y
    CONFIG_LOG_BUF_SHIFT=18
    CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
    CONFIG_CGROUPS=y
    # CONFIG_CGROUP_DEBUG is not set
    CONFIG_CGROUP_NS=y
    CONFIG_CGROUP_FREEZER=y
    CONFIG_CPUSETS=y
    CONFIG_PROC_PID_CPUSET=y
    CONFIG_CGROUP_CPUACCT=y
    CONFIG_RESOURCE_COUNTERS=y
    # CONFIG_CGROUP_MEM_RES_CTLR is not set
    # CONFIG_SYSFS_DEPRECATED_V2 is not set
    CONFIG_RELAY=y
    CONFIG_NAMESPACES=y
    CONFIG_UTS_NS=y
    CONFIG_IPC_NS=y
    CONFIG_BLK_DEV_INITRD=y
    CONFIG_INITRAMFS_SOURCE=""
    CONFIG_RD_GZIP=y
    CONFIG_RD_BZIP2=y
    CONFIG_RD_LZMA=y
    CONFIG_CC_OPTIMIZE_FOR_SIZE=y
    CONFIG_SYSCTL=y
    CONFIG_ANON_INODES=y
    # CONFIG_EMBEDDED is not set
    CONFIG_UID16=y
    CONFIG_SYSCTL_SYSCALL=y
    CONFIG_KALLSYMS=y
    CONFIG_KALLSYMS_ALL=y
    CONFIG_KALLSYMS_EXTRA_PASS=y
    CONFIG_HOTPLUG=y
    CONFIG_PRINTK=y
    CONFIG_BUG=y
    CONFIG_ELF_CORE=y
    CONFIG_PCSPKR_PLATFORM=y
    CONFIG_BASE_FULL=y
    CONFIG_FUTEX=y
    CONFIG_EPOLL=y
    CONFIG_SIGNALFD=y
    CONFIG_TIMERFD=y
    CONFIG_EVENTFD=y
    CONFIG_SHMEM=y
    CONFIG_AIO=y
    CONFIG_HAVE_PERF_COUNTERS=y
    # Performance Counters
    CONFIG_PERF_COUNTERS=y
    CONFIG_VM_EVENT_COUNTERS=y
    CONFIG_PCI_QUIRKS=y
    CONFIG_SLUB_DEBUG=y
    # CONFIG_STRIP_ASM_SYMS is not set
    # CONFIG_COMPAT_BRK is not set
    # CONFIG_SLAB is not set
    CONFIG_SLUB=y
    # CONFIG_SLOB is not set
    CONFIG_PROFILING=y
    CONFIG_TRACEPOINTS=y
    CONFIG_MARKERS=y
    # CONFIG_OPROFILE is not set
    CONFIG_HAVE_OPROFILE=y
    # CONFIG_KPROBES is not set
    CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
    CONFIG_HAVE_IOREMAP_PROT=y
    CONFIG_HAVE_KPROBES=y
    CONFIG_HAVE_KRETPROBES=y
    CONFIG_HAVE_ARCH_TRACEHOOK=y
    CONFIG_HAVE_DMA_ATTRS=y
    CONFIG_HAVE_DMA_API_DEBUG=y
    # GCOV-based kernel profiling
    # CONFIG_SLOW_WORK is not set
    CONFIG_HAVE_GENERIC_DMA_COHERENT=y
    CONFIG_SLABINFO=y
    CONFIG_RT_MUTEXES=y
    CONFIG_BASE_SMALL=0
    CONFIG_MODULES=y
    # CONFIG_MODULE_FORCE_LOAD is not set
    CONFIG_MODULE_UNLOAD=y
    # CONFIG_MODVERSIONS is not set
    # CONFIG_MODULE_SRCVERSION_ALL is not set
    CONFIG_STOP_MACHINE=y
    CONFIG_BLOCK=y
    CONFIG_LBDAF=y
    CONFIG_BLK_DEV_BSG=y
    # CONFIG_BLK_DEV_INTEGRITY is not set
    # IO Schedulers
    CONFIG_IOSCHED_NOOP=y
    CONFIG_IOSCHED_AS=y
    CONFIG_IOSCHED_DEADLINE=y
    CONFIG_IOSCHED_CFQ=y
    # CONFIG_DEFAULT_AS is not set
    # CONFIG_DEFAULT_DEADLINE is not set
    CONFIG_DEFAULT_CFQ=y
    # CONFIG_DEFAULT_NOOP is not set
    CONFIG_DEFAULT_IOSCHED="cfq"
    CONFIG_PREEMPT_NOTIFIERS=y
    CONFIG_FREEZER=y
    # Processor type and features
    CONFIG_TICK_ONESHOT=y
    CONFIG_NO_HZ=y
    CONFIG_HIGH_RES_TIMERS=y
    CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
    CONFIG_SMP=y
    CONFIG_SPARSE_IRQ=y
    CONFIG_X86_MPPARSE=y
    # CONFIG_X86_BIGSMP is not set
    # CONFIG_X86_EXTENDED_PLATFORM is not set
    CONFIG_SCHED_OMIT_FRAME_POINTER=y
    CONFIG_PARAVIRT_GUEST=y
    # CONFIG_VMI is not set
    # CONFIG_KVM_CLOCK is not set
    # CONFIG_KVM_GUEST is not set
    # CONFIG_LGUEST_GUEST is not set
    # CONFIG_PARAVIRT is not set
    # CONFIG_PARAVIRT_CLOCK is not set
    # CONFIG_MEMTEST is not set
    # CONFIG_M386 is not set
    # CONFIG_M486 is not set
    # CONFIG_M586 is not set
    # CONFIG_M586TSC is not set
    # CONFIG_M586MMX is not set
    # CONFIG_M686 is not set
    # CONFIG_MPENTIUMII is not set
    # CONFIG_MPENTIUMIII is not set
    CONFIG_MPENTIUMM=y
    # CONFIG_MPENTIUM4 is not set
    # CONFIG_MK6 is not set
    # CONFIG_MK7 is not set
    # CONFIG_MK8 is not set
    # CONFIG_MCRUSOE is not set
    # CONFIG_MEFFICEON is not set
    # CONFIG_MWINCHIPC6 is not set
    # CONFIG_MWINCHIP3D is not set
    # CONFIG_MGEODEGX1 is not set
    # CONFIG_MGEODE_LX is not set
    # CONFIG_MCYRIXIII is not set
    # CONFIG_MVIAC3_2 is not set
    # CONFIG_MVIAC7 is not set
    # CONFIG_MPSC is not set
    # CONFIG_MCORE2 is not set
    # CONFIG_GENERIC_CPU is not set
    # CONFIG_X86_GENERIC is not set
    CONFIG_X86_CPU=y
    CONFIG_X86_L1_CACHE_BYTES=64
    CONFIG_X86_INTERNODE_CACHE_BYTES=64
    CONFIG_X86_CMPXCHG=y
    CONFIG_X86_L1_CACHE_SHIFT=6
    CONFIG_X86_XADD=y
    CONFIG_X86_WP_WORKS_OK=y
    CONFIG_X86_INVLPG=y
    CONFIG_X86_BSWAP=y
    CONFIG_X86_POPAD_OK=y
    CONFIG_X86_INTEL_USERCOPY=y
    CONFIG_X86_USE_PPRO_CHECKSUM=y
    CONFIG_X86_TSC=y
    CONFIG_X86_CMOV=y
    CONFIG_X86_MINIMUM_CPU_FAMILY=4
    CONFIG_X86_DEBUGCTLMSR=y
    CONFIG_CPU_SUP_INTEL=y
    CONFIG_CPU_SUP_CYRIX_32=y
    CONFIG_CPU_SUP_AMD=y
    CONFIG_CPU_SUP_CENTAUR=y
    CONFIG_CPU_SUP_TRANSMETA_32=y
    CONFIG_CPU_SUP_UMC_32=y
    # CONFIG_X86_DS is not set
    CONFIG_HPET_TIMER=y
    CONFIG_HPET_EMULATE_RTC=y
    CONFIG_DMI=y
    # CONFIG_IOMMU_HELPER is not set
    # CONFIG_IOMMU_API is not set
    CONFIG_NR_CPUS=2
    # CONFIG_SCHED_SMT is not set
    CONFIG_SCHED_MC=y
    # CONFIG_PREEMPT_NONE is not set
    CONFIG_PREEMPT_VOLUNTARY=y
    # CONFIG_PREEMPT is not set
    CONFIG_X86_LOCAL_APIC=y
    CONFIG_X86_IO_APIC=y
    CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
    CONFIG_X86_MCE=y
    # CONFIG_X86_OLD_MCE is not set
    CONFIG_X86_NEW_MCE=y
    CONFIG_X86_MCE_INTEL=y
    # CONFIG_X86_MCE_AMD is not set
    # CONFIG_X86_ANCIENT_MCE is not set
    CONFIG_X86_MCE_THRESHOLD=y
    # CONFIG_X86_MCE_INJECT is not set
    CONFIG_X86_THERMAL_VECTOR=y
    CONFIG_VM86=y
    # CONFIG_TOSHIBA is not set
    # CONFIG_I8K is not set
    CONFIG_X86_REBOOTFIXUPS=y
    CONFIG_MICROCODE=y
    CONFIG_MICROCODE_INTEL=y
    # CONFIG_MICROCODE_AMD is not set
    CONFIG_MICROCODE_OLD_INTERFACE=y
    CONFIG_X86_MSR=y
    CONFIG_X86_CPUID=y
    # CONFIG_X86_CPU_DEBUG is not set
    # CONFIG_NOHIGHMEM is not set
    CONFIG_HIGHMEM4G=y
    # CONFIG_HIGHMEM64G is not set
    CONFIG_PAGE_OFFSET=0xC0000000
    CONFIG_HIGHMEM=y
    # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set
    CONFIG_FLATMEM=y
    CONFIG_FLAT_NODE_MEM_MAP=y
    CONFIG_PAGEFLAGS_EXTENDED=y
    CONFIG_SPLIT_PTLOCK_CPUS=4
    # CONFIG_PHYS_ADDR_T_64BIT is not set
    CONFIG_ZONE_DMA_FLAG=1
    CONFIG_BOUNCE=y
    CONFIG_VIRT_TO_BUS=y
    CONFIG_HAVE_MLOCK=y
    CONFIG_HAVE_MLOCKED_PAGE_BIT=y
    CONFIG_MMU_NOTIFIER=y
    CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
    CONFIG_HIGHPTE=y
    CONFIG_X86_CHECK_BIOS_CORRUPTION=y
    CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
    CONFIG_X86_RESERVE_LOW_64K=y
    # CONFIG_MATH_EMULATION is not set
    CONFIG_MTRR=y
    CONFIG_MTRR_SANITIZER=y
    CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
    CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
    CONFIG_X86_PAT=y
    CONFIG_EFI=y
    CONFIG_SECCOMP=y
    # CONFIG_CC_STACKPROTECTOR is not set
    # CONFIG_HZ_100 is not set
    # CONFIG_HZ_250 is not set
    # CONFIG_HZ_300 is not set
    CONFIG_HZ_1000=y
    CONFIG_HZ=1000
    CONFIG_SCHED_HRTICK=y
    CONFIG_KEXEC=y
    CONFIG_CRASH_DUMP=y
    CONFIG_PHYSICAL_START=0x1000000
    # CONFIG_RELOCATABLE is not set
    CONFIG_PHYSICAL_ALIGN=0x200000
    CONFIG_HOTPLUG_CPU=y
    # CONFIG_COMPAT_VDSO is not set
    # CONFIG_CMDLINE_BOOL is not set
    CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
    # Power management and ACPI options
    CONFIG_PM=y
    # CONFIG_PM_DEBUG is not set
    CONFIG_PM_SLEEP_SMP=y
    CONFIG_PM_SLEEP=y
    CONFIG_SUSPEND=y
    CONFIG_SUSPEND_FREEZER=y
    CONFIG_HIBERNATION_NVS=y
    CONFIG_HIBERNATION=y
    CONFIG_PM_STD_PARTITION=""
    CONFIG_ACPI=y
    CONFIG_ACPI_SLEEP=y
    CONFIG_ACPI_PROCFS=y
    CONFIG_ACPI_PROCFS_POWER=y
    CONFIG_ACPI_SYSFS_POWER=y
    CONFIG_ACPI_PROC_EVENT=y
    CONFIG_ACPI_AC=y
    CONFIG_ACPI_BATTERY=y
    CONFIG_ACPI_BUTTON=y
    CONFIG_ACPI_VIDEO=y
    # CONFIG_ACPI_FAN is not set
    CONFIG_ACPI_DOCK=y
    CONFIG_ACPI_PROCESSOR=y
    CONFIG_ACPI_HOTPLUG_CPU=y
    CONFIG_ACPI_THERMAL=y
    # CONFIG_ACPI_CUSTOM_DSDT is not set
    CONFIG_ACPI_BLACKLIST_YEAR=0
    # CONFIG_ACPI_DEBUG is not set
    # CONFIG_ACPI_PCI_SLOT is not set
    CONFIG_X86_PM_TIMER=y
    CONFIG_ACPI_CONTAINER=y
    # CONFIG_ACPI_SBS is not set
    # CONFIG_APM is not set
    # CPU Frequency scaling
    CONFIG_CPU_FREQ=y
    CONFIG_CPU_FREQ_TABLE=y
    # CONFIG_CPU_FREQ_DEBUG is not set
    CONFIG_CPU_FREQ_STAT=y
    CONFIG_CPU_FREQ_STAT_DETAILS=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    CONFIG_CPU_FREQ_GOV_POWERSAVE=y
    # CONFIG_CPU_FREQ_GOV_USERSPACE is not set
    CONFIG_CPU_FREQ_GOV_ONDEMAND=y
    # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
    # CPUFreq processor drivers
    CONFIG_X86_ACPI_CPUFREQ=m
    # CONFIG_X86_POWERNOW_K6 is not set
    # CONFIG_X86_POWERNOW_K7 is not set
    # CONFIG_X86_POWERNOW_K8 is not set
    # CONFIG_X86_GX_SUSPMOD is not set
    # CONFIG_X86_SPEEDSTEP_CENTRINO is not set
    # CONFIG_X86_SPEEDSTEP_ICH is not set
    # CONFIG_X86_P4_CLOCKMOD is not set
    # CONFIG_X86_LONGRUN is not set
    # CONFIG_X86_LONGHAUL is not set
    # shared options
    # CONFIG_X86_SPEEDSTEP_LIB is not set
    CONFIG_CPU_IDLE=y
    CONFIG_CPU_IDLE_GOV_LADDER=y
    CONFIG_CPU_IDLE_GOV_MENU=y
    # Bus options (PCI etc.)
    CONFIG_PCI=y
    # CONFIG_PCI_GOBIOS is not set
    # CONFIG_PCI_GOMMCONFIG is not set
    # CONFIG_PCI_GODIRECT is not set
    # CONFIG_PCI_GOOLPC is not set
    CONFIG_PCI_GOANY=y
    CONFIG_PCI_BIOS=y
    CONFIG_PCI_DIRECT=y
    CONFIG_PCI_MMCONFIG=y
    CONFIG_PCI_DOMAINS=y
    CONFIG_PCIEPORTBUS=y
    # CONFIG_HOTPLUG_PCI_PCIE is not set
    CONFIG_PCIEAER=y
    # CONFIG_PCIE_ECRC is not set
    # CONFIG_PCIEAER_INJECT is not set
    CONFIG_ARCH_SUPPORTS_MSI=y
    CONFIG_PCI_MSI=y
    # CONFIG_PCI_LEGACY is not set
    # CONFIG_PCI_DEBUG is not set
    # CONFIG_PCI_STUB is not set
    CONFIG_HT_IRQ=y
    # CONFIG_PCI_IOV is not set
    CONFIG_ISA_DMA_API=y
    CONFIG_ISA=y
    # CONFIG_EISA is not set
    # CONFIG_MCA is not set
    # CONFIG_SCx200 is not set
    # CONFIG_OLPC is not set
    CONFIG_PCCARD=y
    # CONFIG_PCMCIA_DEBUG is not set
    CONFIG_PCMCIA=y
    CONFIG_PCMCIA_IOCTL=y
    CONFIG_CARDBUS=y
    # PC-card bridges
    CONFIG_YENTA=y
    CONFIG_YENTA_O2=y
    CONFIG_YENTA_RICOH=y
    CONFIG_YENTA_TI=y
    CONFIG_YENTA_ENE_TUNE=y
    CONFIG_YENTA_TOSHIBA=y
    # CONFIG_PD6729 is not set
    # CONFIG_I82092 is not set
    # CONFIG_I82365 is not set
    # CONFIG_TCIC is not set
    CONFIG_PCMCIA_PROBE=y
    CONFIG_PCCARD_NONSTATIC=y
    CONFIG_HOTPLUG_PCI=y
    # CONFIG_HOTPLUG_PCI_FAKE is not set
    # CONFIG_HOTPLUG_PCI_COMPAQ is not set
    # CONFIG_HOTPLUG_PCI_IBM is not set
    # CONFIG_HOTPLUG_PCI_ACPI is not set
    # CONFIG_HOTPLUG_PCI_CPCI is not set
    # CONFIG_HOTPLUG_PCI_SHPC is not set
    # Executable file formats / Emulations
    CONFIG_BINFMT_ELF=y
    CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
    CONFIG_HAVE_AOUT=y
    # CONFIG_BINFMT_AOUT is not set
    CONFIG_BINFMT_MISC=y
    CONFIG_HAVE_ATOMIC_IOMAP=y
    CONFIG_NET=y
    # Networking options
    CONFIG_PACKET=y
    CONFIG_PACKET_MMAP=y
    CONFIG_UNIX=y
    CONFIG_XFRM=y
    CONFIG_XFRM_USER=y
    CONFIG_XFRM_IPCOMP=y
    # CONFIG_NET_KEY is not set
    CONFIG_INET=y
    CONFIG_IP_MULTICAST=y
    CONFIG_IP_ADVANCED_ROUTER=y
    CONFIG_ASK_IP_FIB_HASH=y
    # CONFIG_IP_FIB_TRIE is not set
    CONFIG_IP_FIB_HASH=y
    CONFIG_IP_MULTIPLE_TABLES=y
    CONFIG_IP_ROUTE_MULTIPATH=y
    CONFIG_IP_ROUTE_VERBOSE=y
    CONFIG_IP_PNP=y
    CONFIG_IP_PNP_DHCP=y
    CONFIG_IP_PNP_BOOTP=y
    CONFIG_IP_PNP_RARP=y
    # CONFIG_NET_IPIP is not set
    # CONFIG_NET_IPGRE is not set
    CONFIG_IP_MROUTE=y
    CONFIG_IP_PIMSM_V1=y
    CONFIG_IP_PIMSM_V2=y
    # CONFIG_ARPD is not set
    CONFIG_SYN_COOKIES=y
    # CONFIG_INET_AH is not set
    # CONFIG_INET_ESP is not set
    # CONFIG_INET_IPCOMP is not set
    # CONFIG_INET_XFRM_TUNNEL is not set
    CONFIG_INET_TUNNEL=y
    # CONFIG_INET_XFRM_MODE_TRANSPORT is not set
    # CONFIG_INET_XFRM_MODE_TUNNEL is not set
    # CONFIG_INET_XFRM_MODE_BEET is not set
    CONFIG_INET_LRO=y
    # CONFIG_INET_DIAG is not set
    CONFIG_TCP_CONG_ADVANCED=y
    # CONFIG_TCP_CONG_BIC is not set
    CONFIG_TCP_CONG_CUBIC=y
    # CONFIG_TCP_CONG_WESTWOOD is not set
    # CONFIG_TCP_CONG_HTCP is not set
    # CONFIG_DEFAULT_BIC is not set
    CONFIG_DEFAULT_CUBIC=y
    # CONFIG_DEFAULT_HTCP is not set
    # CONFIG_DEFAULT_VEGAS is not set
    # CONFIG_DEFAULT_WESTWOOD is not set
    # CONFIG_DEFAULT_RENO is not set
    CONFIG_DEFAULT_TCP_CONG="cubic"
    CONFIG_IPV6=y
    CONFIG_IPV6_PRIVACY=y
    # CONFIG_IPV6_ROUTER_PREF is not set
    CONFIG_INET6_AH=y
    CONFIG_INET6_ESP=y
    CONFIG_INET6_IPCOMP=y
    CONFIG_INET6_XFRM_TUNNEL=y
    CONFIG_INET6_TUNNEL=y
    CONFIG_INET6_XFRM_MODE_TRANSPORT=y
    CONFIG_INET6_XFRM_MODE_TUNNEL=y
    CONFIG_INET6_XFRM_MODE_BEET=y
    CONFIG_IPV6_SIT=y
    CONFIG_IPV6_NDISC_NODETYPE=y
    # CONFIG_IPV6_TUNNEL is not set
    CONFIG_NETLABEL=y
    CONFIG_NETWORK_SECMARK=y
    CONFIG_NETFILTER=y
    # CONFIG_NETFILTER_DEBUG is not set
    CONFIG_NETFILTER_ADVANCED=y
    # Core Netfilter Configuration
    CONFIG_NETFILTER_NETLINK=y
    # CONFIG_NETFILTER_NETLINK_QUEUE is not set
    CONFIG_NETFILTER_NETLINK_LOG=y
    CONFIG_NF_CONNTRACK=y
    # CONFIG_NF_CT_ACCT is not set
    # CONFIG_NF_CONNTRACK_MARK is not set
    CONFIG_NF_CONNTRACK_SECMARK=y
    # CONFIG_NF_CONNTRACK_EVENTS is not set
    # CONFIG_NF_CT_PROTO_UDPLITE is not set
    # CONFIG_NF_CONNTRACK_AMANDA is not set
    CONFIG_NF_CONNTRACK_FTP=y
    CONFIG_NF_CONNTRACK_H323=m
    CONFIG_NF_CONNTRACK_IRC=y
    # CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
    # CONFIG_NF_CONNTRACK_PPTP is not set
    CONFIG_NF_CONNTRACK_SIP=y
    # CONFIG_NF_CONNTRACK_TFTP is not set
    CONFIG_NF_CT_NETLINK=y
    CONFIG_NETFILTER_XTABLES=y
    # CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
    # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
    CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y
    # CONFIG_NETFILTER_XT_TARGET_DSCP is not set
    # CONFIG_NETFILTER_XT_TARGET_HL is not set
    # CONFIG_NETFILTER_XT_TARGET_LED is not set
    CONFIG_NETFILTER_XT_TARGET_MARK=y
    CONFIG_NETFILTER_XT_TARGET_NFLOG=y
    # CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
    # CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
    CONFIG_NETFILTER_XT_TARGET_SECMARK=y
    CONFIG_NETFILTER_XT_TARGET_TCPMSS=y
    # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
    # CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
    # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
    # CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
    # CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
    CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
    # CONFIG_NETFILTER_XT_MATCH_DCCP is not set
    # CONFIG_NETFILTER_XT_MATCH_DSCP is not set
    # CONFIG_NETFILTER_XT_MATCH_ESP is not set
    # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
    # CONFIG_NETFILTER_XT_MATCH_HELPER is not set
    # CONFIG_NETFILTER_XT_MATCH_HL is not set
    # CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
    # CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
    # CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
    # CONFIG_NETFILTER_XT_MATCH_MAC is not set
    CONFIG_NETFILTER_XT_MATCH_MARK=y
    # CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
    # CONFIG_NETFILTER_XT_MATCH_OWNER is not set
    CONFIG_NETFILTER_XT_MATCH_POLICY=y
    # CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
    # CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
    # CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
    # CONFIG_NETFILTER_XT_MATCH_REALM is not set
    # CONFIG_NETFILTER_XT_MATCH_RECENT is not set
    CONFIG_NETFILTER_XT_MATCH_STATE=y
    # CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
    # CONFIG_NETFILTER_XT_MATCH_STRING is not set
    # CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
    # CONFIG_NETFILTER_XT_MATCH_TIME is not set
    # CONFIG_NETFILTER_XT_MATCH_U32 is not set
    # CONFIG_NETFILTER_XT_MATCH_OSF is not set
    # CONFIG_IP_VS is not set
    # IP: Netfilter Configuration
    CONFIG_NF_DEFRAG_IPV4=y
    CONFIG_NF_CONNTRACK_IPV4=y
    CONFIG_NF_CONNTRACK_PROC_COMPAT=y
    # CONFIG_IP_NF_QUEUE is not set
    CONFIG_IP_NF_IPTABLES=y
    # CONFIG_IP_NF_MATCH_ADDRTYPE is not set
    # CONFIG_IP_NF_MATCH_AH is not set
    # CONFIG_IP_NF_MATCH_ECN is not set
    # CONFIG_IP_NF_MATCH_TTL is not set
    CONFIG_IP_NF_FILTER=y
    CONFIG_IP_NF_TARGET_REJECT=y
    CONFIG_IP_NF_TARGET_LOG=y
    CONFIG_IP_NF_TARGET_ULOG=y
    CONFIG_NF_NAT=y
    CONFIG_NF_NAT_NEEDED=y
    CONFIG_IP_NF_TARGET_MASQUERADE=y
    # CONFIG_IP_NF_TARGET_NETMAP is not set
    # CONFIG_IP_NF_TARGET_REDIRECT is not set
    # CONFIG_NF_NAT_SNMP_BASIC is not set
    CONFIG_NF_NAT_FTP=y
    CONFIG_NF_NAT_IRC=y
    # CONFIG_NF_NAT_TFTP is not set
    # CONFIG_NF_NAT_AMANDA is not set
    # CONFIG_NF_NAT_PPTP is not set
    CONFIG_NF_NAT_H323=m
    CONFIG_NF_NAT_SIP=y
    CONFIG_IP_NF_MANGLE=y
    # CONFIG_IP_NF_TARGET_ECN is not set
    # CONFIG_IP_NF_TARGET_TTL is not set
    # CONFIG_IP_NF_RAW is not set
    # CONFIG_IP_NF_SECURITY is not set
    # CONFIG_IP_NF_ARPTABLES is not set
    # IPv6: Netfilter Configuration
    CONFIG_NF_CONNTRACK_IPV6=m
    CONFIG_IP6_NF_QUEUE=m
    CONFIG_IP6_NF_IPTABLES=m
    # CONFIG_IP6_NF_MATCH_AH is not set
    # CONFIG_IP6_NF_MATCH_EUI64 is not set
    # CONFIG_IP6_NF_MATCH_FRAG is not set
    # CONFIG_IP6_NF_MATCH_OPTS is not set
    # CONFIG_IP6_NF_MATCH_HL is not set
    # CONFIG_IP6_NF_MATCH_IPV6HEADER is not set
    # CONFIG_IP6_NF_MATCH_MH is not set
    # CONFIG_IP6_NF_MATCH_RT is not set
    # CONFIG_IP6_NF_TARGET_HL is not set
    # CONFIG_IP6_NF_TARGET_LOG is not set
    CONFIG_IP6_NF_FILTER=m
    CONFIG_IP6_NF_TARGET_REJECT=m
    # CONFIG_IP6_NF_MANGLE is not set
    # CONFIG_IP6_NF_RAW is not set
    # CONFIG_IP6_NF_SECURITY is not set
    # CONFIG_ATM is not set
    # CONFIG_BRIDGE is not set
    # CONFIG_VLAN_8021Q is not set
    # CONFIG_DECNET is not set
    # CONFIG_LLC2 is not set
    # CONFIG_IPX is not set
    # CONFIG_ATALK is not set
    # CONFIG_PHONET is not set
    # CONFIG_NET_SCHED is not set
    # CONFIG_DCB is not set
    # Network testing
    # CONFIG_NET_PKTGEN is not set
    # CONFIG_HAMRADIO is not set
    # CONFIG_CAN is not set
    # CONFIG_IRDA is not set
    # CONFIG_BT is not set
    CONFIG_FIB_RULES=y
    CONFIG_WIRELESS=y
    CONFIG_CFG80211=m
    # CONFIG_CFG80211_REG_DEBUG is not set
    # CONFIG_WIRELESS_OLD_REGULATORY is not set
    CONFIG_WIRELESS_EXT=y
    CONFIG_WIRELESS_EXT_SYSFS=y
    CONFIG_LIB80211=m
    # CONFIG_LIB80211_DEBUG is not set
    CONFIG_MAC80211=m
    CONFIG_MAC80211_DEFAULT_PS=y
    CONFIG_MAC80211_DEFAULT_PS_VALUE=1
    # Rate control algorithm selection
    CONFIG_MAC80211_RC_MINSTREL=y
    # CONFIG_MAC80211_RC_DEFAULT_PID is not set
    CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
    CONFIG_MAC80211_RC_DEFAULT="minstrel"
    CONFIG_MAC80211_LEDS=y
    # CONFIG_MAC80211_DEBUG_MENU is not set
    # CONFIG_WIMAX is not set
    CONFIG_RFKILL=y
    CONFIG_RFKILL_LEDS=y
    CONFIG_RFKILL_INPUT=y
    # Device Drivers
    # Generic Driver Options
    CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
    CONFIG_STANDALONE=y
    CONFIG_PREVENT_FIRMWARE_BUILD=y
    CONFIG_FW_LOADER=y
    # CONFIG_FIRMWARE_IN_KERNEL is not set
    CONFIG_EXTRA_FIRMWARE=""
    # CONFIG_DEBUG_DRIVER is not set
    # CONFIG_DEBUG_DEVRES is not set
    # CONFIG_SYS_HYPERVISOR is not set
    CONFIG_CONNECTOR=y
    CONFIG_PROC_EVENTS=y
    # CONFIG_MTD is not set
    # CONFIG_PARPORT is not set
    CONFIG_PNP=y
    # CONFIG_PNP_DEBUG_MESSAGES is not set
    # Protocols
    # CONFIG_ISAPNP is not set
    CONFIG_PNPACPI=y
    CONFIG_BLK_DEV=y
    # CONFIG_BLK_DEV_FD is not set
    # CONFIG_BLK_DEV_XD is not set
    # CONFIG_BLK_CPQ_DA is not set
    # CONFIG_BLK_CPQ_CISS_DA is not set
    # CONFIG_BLK_DEV_DAC960 is not set
    # CONFIG_BLK_DEV_COW_COMMON is not set
    CONFIG_BLK_DEV_LOOP=y
    # CONFIG_BLK_DEV_CRYPTOLOOP is not set
    # CONFIG_BLK_DEV_NBD is not set
    # CONFIG_BLK_DEV_SX8 is not set
    # CONFIG_BLK_DEV_UB is not set
    CONFIG_BLK_DEV_RAM=y
    CONFIG_BLK_DEV_RAM_COUNT=16
    CONFIG_BLK_DEV_RAM_SIZE=16384
    # CONFIG_BLK_DEV_XIP is not set
    CONFIG_CDROM_PKTCDVD=m
    CONFIG_CDROM_PKTCDVD_BUFFERS=8
    # CONFIG_ATA_OVER_ETH is not set
    # CONFIG_BLK_DEV_HD is not set
    CONFIG_MISC_DEVICES=y
    # CONFIG_PHANTOM is not set
    # CONFIG_SGI_IOC4 is not set
    # CONFIG_ENCLOSURE_SERVICES is not set
    # CONFIG_HP_ILO is not set
    # CONFIG_ISL29003 is not set
    # EEPROM support
    # CONFIG_EEPROM_AT24 is not set
    # CONFIG_EEPROM_LEGACY is not set
    # CONFIG_EEPROM_93CX6 is not set
    # CONFIG_CB710_CORE is not set
    CONFIG_HAVE_IDE=y
    # CONFIG_IDE is not set
    # SCSI device support
    # CONFIG_RAID_ATTRS is not set
    CONFIG_SCSI=y
    CONFIG_SCSI_DMA=y
    # CONFIG_SCSI_NETLINK is not set
    CONFIG_SCSI_PROC_FS=y
    # SCSI support type (disk, tape, CD-ROM)
    CONFIG_BLK_DEV_SD=y
    # CONFIG_CHR_DEV_ST is not set
    # CONFIG_CHR_DEV_OSST is not set
    CONFIG_BLK_DEV_SR=y
    CONFIG_BLK_DEV_SR_VENDOR=y
    CONFIG_CHR_DEV_SG=y
    # CONFIG_CHR_DEV_SCH is not set
    # CONFIG_SCSI_MULTI_LUN is not set
    CONFIG_SCSI_CONSTANTS=y
    # CONFIG_SCSI_LOGGING is not set
    CONFIG_SCSI_SCAN_ASYNC=y
    CONFIG_SCSI_WAIT_SCAN=m
    # SCSI Transports
    CONFIG_SCSI_SPI_ATTRS=y
    # CONFIG_SCSI_FC_ATTRS is not set
    # CONFIG_SCSI_ISCSI_ATTRS is not set
    # CONFIG_SCSI_SAS_ATTRS is not set
    # CONFIG_SCSI_SAS_LIBSAS is not set
    # CONFIG_SCSI_SRP_ATTRS is not set
    # CONFIG_SCSI_LOWLEVEL is not set
    # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
    CONFIG_SCSI_DH=m
    # CONFIG_SCSI_DH_RDAC is not set
    # CONFIG_SCSI_DH_HP_SW is not set
    # CONFIG_SCSI_DH_EMC is not set
    # CONFIG_SCSI_OSD_INITIATOR is not set
    CONFIG_ATA=y
    # CONFIG_ATA_NONSTANDARD is not set
    CONFIG_ATA_ACPI=y
    CONFIG_SATA_PMP=y
    CONFIG_SATA_AHCI=m
    # CONFIG_SATA_SIL24 is not set
    CONFIG_ATA_SFF=y
    # CONFIG_SATA_SVW is not set
    CONFIG_ATA_PIIX=y
    # CONFIG_SATA_MV is not set
    # CONFIG_SATA_NV is not set
    # CONFIG_PDC_ADMA is not set
    # CONFIG_SATA_QSTOR is not set
    # CONFIG_SATA_PROMISE is not set
    # CONFIG_SATA_SIL is not set
    # CONFIG_SATA_SIS is not set
    # CONFIG_SATA_ULI is not set
    # CONFIG_SATA_VIA is not set
    # CONFIG_SATA_VITESSE is not set
    # CONFIG_SATA_INIC162X is not set
    # CONFIG_PATA_ACPI is not set
    # CONFIG_PATA_ALI is not set
    # CONFIG_PATA_AMD is not set
    # CONFIG_PATA_ARTOP is not set
    # CONFIG_PATA_ATIIXP is not set
    # CONFIG_PATA_CMD64X is not set
    # CONFIG_PATA_CS5520 is not set
    # CONFIG_PATA_CS5530 is not set
    # CONFIG_PATA_CS5536 is not set
    # CONFIG_PATA_EFAR is not set
    # CONFIG_ATA_GENERIC is not set
    # CONFIG_PATA_HPT366 is not set
    # CONFIG_PATA_HPT3X3 is not set
    # CONFIG_PATA_IT821X is not set
    # CONFIG_PATA_JMICRON is not set
    # CONFIG_PATA_TRIFLEX is not set
    # CONFIG_PATA_MARVELL is not set
    # CONFIG_PATA_MPIIX is not set
    # CONFIG_PATA_OLDPIIX is not set
    # CONFIG_PATA_NETCELL is not set
    # CONFIG_PATA_NS87410 is not set
    # CONFIG_PATA_NS87415 is not set
    # CONFIG_PATA_PCMCIA is not set
    # CONFIG_PATA_PDC_OLD is not set
    # CONFIG_PATA_QDI is not set
    # CONFIG_PATA_RZ1000 is not set
    # CONFIG_PATA_SC1200 is not set
    # CONFIG_PATA_SERVERWORKS is not set
    # CONFIG_PATA_PDC2027X is not set
    # CONFIG_PATA_SIL680 is not set
    # CONFIG_PATA_SIS is not set
    # CONFIG_PATA_VIA is not set
    # CONFIG_PATA_WINBOND is not set
    # CONFIG_PATA_SCH is not set
    # CONFIG_MD is not set
    # CONFIG_FUSION is not set
    # IEEE 1394 (FireWire) support
    # You can enable one or both FireWire driver stacks.
    # See the help texts for more information.
    # CONFIG_FIREWIRE is not set
    CONFIG_IEEE1394=y
    CONFIG_IEEE1394_OHCI1394=y
    # CONFIG_IEEE1394_PCILYNX is not set
    # CONFIG_IEEE1394_SBP2 is not set
    # CONFIG_IEEE1394_ETH1394_ROM_ENTRY is not set
    # CONFIG_IEEE1394_RAWIO is not set
    # CONFIG_IEEE1394_VIDEO1394 is not set
    # CONFIG_IEEE1394_DV1394 is not set
    # CONFIG_IEEE1394_VERBOSEDEBUG is not set
    # CONFIG_I2O is not set
    CONFIG_MACINTOSH_DRIVERS=y
    CONFIG_MAC_EMUMOUSEBTN=y
    CONFIG_NETDEVICES=y
    # CONFIG_DUMMY is not set
    # CONFIG_BONDING is not set
    # CONFIG_EQUALIZER is not set
    # CONFIG_TUN is not set
    # CONFIG_VETH is not set
    # CONFIG_NET_SB1000 is not set
    # CONFIG_ARCNET is not set
    # CONFIG_NET_ETHERNET is not set
    CONFIG_MII=m
    CONFIG_NETDEV_1000=y
    # CONFIG_ACENIC is not set
    # CONFIG_DL2K is not set
    # CONFIG_E1000 is not set
    # CONFIG_E1000E is not set
    # CONFIG_IGB is not set
    # CONFIG_IGBVF is not set
    # CONFIG_NS83820 is not set
    # CONFIG_HAMACHI is not set
    CONFIG_R8169=m
    # CONFIG_SIS190 is not set
    # CONFIG_SKGE is not set
    # CONFIG_SKY2 is not set
    # CONFIG_VIA_VELOCITY is not set
    # CONFIG_TIGON3 is not set
    # CONFIG_BNX2 is not set
    # CONFIG_CNIC is not set
    # CONFIG_QLA3XXX is not set
    # CONFIG_ATL1 is not set
    # CONFIG_JME is not set
    # CONFIG_NETDEV_10000 is not set
    # CONFIG_TR is not set
    # Wireless LAN
    # CONFIG_WLAN_PRE80211 is not set
    CONFIG_WLAN_80211=y
    # CONFIG_PCMCIA_RAYCS is not set
    # CONFIG_LIBERTAS is not set
    # CONFIG_LIBERTAS_THINFIRM is not set
    # CONFIG_AIRO is not set
    # CONFIG_ATMEL is not set
    # CONFIG_AT76C50X_USB is not set
    # CONFIG_AIRO_CS is not set
    # CONFIG_USB_ZD1201 is not set
    # CONFIG_RTL8187 is not set
    # CONFIG_MAC80211_HWSIM is not set
    # CONFIG_ATH9K is not set
    # CONFIG_IPW2100 is not set
    # CONFIG_IPW2200 is not set
    # CONFIG_HOSTAP is not set
    # CONFIG_B43 is not set
    # CONFIG_B43LEGACY is not set
    # CONFIG_HERMES is not set
    CONFIG_IWLWIFI=m
    CONFIG_IWLWIFI_LEDS=y
    CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT=y
    # CONFIG_IWLWIFI_DEBUG is not set
    CONFIG_IWLAGN=m
    CONFIG_IWL3945=m
    CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y
    # Enable WiMAX (Networking options) to see the WiMAX drivers
    # USB Network Adapters
    # CONFIG_USB_KAWETH is not set
    # CONFIG_USB_PEGASUS is not set
    # CONFIG_USB_USBNET is not set
    # CONFIG_USB_HSO is not set
    # CONFIG_NET_PCMCIA is not set
    # CONFIG_WAN is not set
    # CONFIG_FDDI is not set
    # CONFIG_PPP is not set
    # CONFIG_SLIP is not set
    # CONFIG_NET_FC is not set
    # CONFIG_NETPOLL is not set
    # CONFIG_NET_POLL_CONTROLLER is not set
    # CONFIG_ISDN is not set
    # CONFIG_PHONE is not set
    # Input device support
    CONFIG_INPUT=y
    CONFIG_INPUT_FF_MEMLESS=y
    # CONFIG_INPUT_POLLDEV is not set
    # Userland interfaces
    CONFIG_INPUT_MOUSEDEV=y
    # CONFIG_INPUT_MOUSEDEV_PSAUX is not set
    CONFIG_INPUT_MOUSEDEV_SCREEN_X=1280
    CONFIG_INPUT_MOUSEDEV_SCREEN_Y=800
    # CONFIG_INPUT_JOYDEV is not set
    CONFIG_INPUT_EVDEV=y
    # CONFIG_INPUT_EVBUG is not set
    # Input Device Drivers
    CONFIG_INPUT_KEYBOARD=y
    CONFIG_KEYBOARD_ATKBD=y
    # CONFIG_KEYBOARD_LKKBD is not set
    # CONFIG_KEYBOARD_LM8323 is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    # CONFIG_KEYBOARD_STOWAWAY is not set
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    CONFIG_INPUT_MOUSE=y
    CONFIG_MOUSE_PS2=y
    CONFIG_MOUSE_PS2_ALPS=y
    CONFIG_MOUSE_PS2_LOGIPS2PP=y
    CONFIG_MOUSE_PS2_SYNAPTICS=y
    CONFIG_MOUSE_PS2_LIFEBOOK=y
    CONFIG_MOUSE_PS2_TRACKPOINT=y
    # CONFIG_MOUSE_PS2_ELANTECH is not set
    # CONFIG_MOUSE_PS2_TOUCHKIT is not set
    # CONFIG_MOUSE_SERIAL is not set
    # CONFIG_MOUSE_APPLETOUCH is not set
    # CONFIG_MOUSE_BCM5974 is not set
    # CONFIG_MOUSE_INPORT is not set
    # CONFIG_MOUSE_LOGIBM is not set
    # CONFIG_MOUSE_PC110PAD is not set
    # CONFIG_MOUSE_VSXXXAA is not set
    # CONFIG_MOUSE_SYNAPTICS_I2C is not set
    # CONFIG_INPUT_JOYSTICK is not set
    # CONFIG_INPUT_TABLET is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    # CONFIG_INPUT_MISC is not set
    # Hardware I/O ports
    CONFIG_SERIO=y
    CONFIG_SERIO_I8042=y
    CONFIG_SERIO_SERPORT=y
    # CONFIG_SERIO_CT82C710 is not set
    # CONFIG_SERIO_PCIPS2 is not set
    CONFIG_SERIO_LIBPS2=y
    # CONFIG_SERIO_RAW is not set
    # CONFIG_GAMEPORT is not set
    # Character devices
    CONFIG_VT=y
    CONFIG_CONSOLE_TRANSLATIONS=y
    CONFIG_VT_CONSOLE=y
    CONFIG_HW_CONSOLE=y
    CONFIG_VT_HW_CONSOLE_BINDING=y
    # CONFIG_DEVKMEM is not set
    CONFIG_SERIAL_NONSTANDARD=y
    # CONFIG_COMPUTONE is not set
    # CONFIG_ROCKETPORT is not set
    # CONFIG_CYCLADES is not set
    # CONFIG_DIGIEPCA is not set
    # CONFIG_MOXA_INTELLIO is not set
    # CONFIG_MOXA_SMARTIO is not set
    # CONFIG_ISI is not set
    # CONFIG_SYNCLINK is not set
    # CONFIG_SYNCLINKMP is not set
    # CONFIG_SYNCLINK_GT is not set
    # CONFIG_N_HDLC is not set
    # CONFIG_RISCOM8 is not set
    # CONFIG_SPECIALIX is not set
    # CONFIG_SX is not set
    # CONFIG_RIO is not set
    # CONFIG_STALDRV is not set
    # Serial drivers
    CONFIG_SERIAL_8250=m
    CONFIG_FIX_EARLYCON_MEM=y
    CONFIG_SERIAL_8250_PCI=m
    CONFIG_SERIAL_8250_PNP=m
    # CONFIG_SERIAL_8250_CS is not set
    CONFIG_SERIAL_8250_NR_UARTS=32
    CONFIG_SERIAL_8250_RUNTIME_UARTS=4
    CONFIG_SERIAL_8250_EXTENDED=y
    CONFIG_SERIAL_8250_MANY_PORTS=y
    # CONFIG_SERIAL_8250_FOURPORT is not set
    # CONFIG_SERIAL_8250_ACCENT is not set
    # CONFIG_SERIAL_8250_BOCA is not set
    # CONFIG_SERIAL_8250_EXAR_ST16C554 is not set
    # CONFIG_SERIAL_8250_HUB6 is not set
    CONFIG_SERIAL_8250_SHARE_IRQ=y
    CONFIG_SERIAL_8250_DETECT_IRQ=y
    CONFIG_SERIAL_8250_RSA=y
    # Non-8250 serial port support
    CONFIG_SERIAL_CORE=m
    # CONFIG_SERIAL_JSM is not set
    CONFIG_UNIX98_PTYS=y
    # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
    # CONFIG_LEGACY_PTYS is not set
    # CONFIG_IPMI_HANDLER is not set
    # CONFIG_HW_RANDOM is not set
    CONFIG_NVRAM=m
    # CONFIG_DTLK is not set
    # CONFIG_R3964 is not set
    # CONFIG_APPLICOM is not set
    # PCMCIA character devices
    # CONFIG_SYNCLINK_CS is not set
    # CONFIG_CARDMAN_4000 is not set
    # CONFIG_CARDMAN_4040 is not set
    # CONFIG_IPWIRELESS is not set
    # CONFIG_MWAVE is not set
    # CONFIG_PC8736x_GPIO is not set
    # CONFIG_NSC_GPIO is not set
    # CONFIG_CS5535_GPIO is not set
    # CONFIG_RAW_DRIVER is not set
    CONFIG_HPET=y
    # CONFIG_HPET_MMAP is not set
    # CONFIG_HANGCHECK_TIMER is not set
    CONFIG_DEVPORT=y
    CONFIG_I2C=y
    CONFIG_I2C_BOARDINFO=y
    # CONFIG_I2C_CHARDEV is not set
    CONFIG_I2C_HELPER_AUTO=y
    CONFIG_I2C_ALGOBIT=y
    # I2C Hardware Bus support
    # PC SMBus host controller drivers
    # CONFIG_I2C_ALI1535 is not set
    # CONFIG_I2C_ALI15X3 is not set
    # CONFIG_I2C_AMD756 is not set
    # CONFIG_I2C_AMD8111 is not set
    CONFIG_I2C_I801=y
    # CONFIG_I2C_ISCH is not set
    # CONFIG_I2C_PIIX4 is not set
    # CONFIG_I2C_NFORCE2 is not set
    # CONFIG_I2C_SIS5595 is not set
    # CONFIG_I2C_SIS630 is not set
    # CONFIG_I2C_SIS96X is not set
    # CONFIG_I2C_VIAPRO is not set
    # I2C system bus drivers (mostly embedded / system-on-chip)
    # CONFIG_I2C_SIMTEC is not set
    # External I2C/SMBus adapter drivers
    # CONFIG_I2C_PARPORT_LIGHT is not set
    # CONFIG_I2C_TINY_USB is not set
    # Graphics adapter I2C/DDC channel drivers
    # CONFIG_I2C_VOODOO3 is not set
    # Other I2C/SMBus bus drivers
    # CONFIG_I2C_PCA_ISA is not set
    # CONFIG_I2C_PCA_PLATFORM is not set
    # CONFIG_SCx200_ACB is not set
    # Miscellaneous I2C Chip support
    # CONFIG_PCF8575 is not set
    # CONFIG_I2C_DEBUG_CORE is not set
    # CONFIG_I2C_DEBUG_ALGO is not set
    # CONFIG_I2C_DEBUG_BUS is not set
    # CONFIG_I2C_DEBUG_CHIP is not set
    # CONFIG_SPI is not set
    # PPS support
    CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
    # CONFIG_GPIOLIB is not set
    # CONFIG_W1 is not set
    CONFIG_POWER_SUPPLY=y
    # CONFIG_POWER_SUPPLY_DEBUG is not set
    # CONFIG_PDA_POWER is not set
    # CONFIG_BATTERY_DS2760 is not set
    # CONFIG_BATTERY_DS2782 is not set
    # CONFIG_BATTERY_BQ27x00 is not set
    # CONFIG_BATTERY_MAX17040 is not set
    CONFIG_HWMON=y
    # CONFIG_HWMON_VID is not set
    # CONFIG_SENSORS_ADM1021 is not set
    # CONFIG_SENSORS_ADM1025 is not set
    # CONFIG_SENSORS_ADM9240 is not set
    # CONFIG_SENSORS_DS1621 is not set
    # CONFIG_SENSORS_FSCHER is not set
    # CONFIG_SENSORS_FSCPOS is not set
    # CONFIG_SENSORS_FSCHMD is not set
    # CONFIG_SENSORS_G760A is not set
    # CONFIG_SENSORS_GL518SM is not set
    # CONFIG_SENSORS_GL520SM is not set
    # CONFIG_SENSORS_IT87 is not set
    # CONFIG_SENSORS_LM63 is not set
    # CONFIG_SENSORS_LM75 is not set
    # CONFIG_SENSORS_LM77 is not set
    # CONFIG_SENSORS_LM78 is not set
    # CONFIG_SENSORS_LM83 is not set
    # CONFIG_SENSORS_LM87 is not set
    # CONFIG_SENSORS_LM90 is not set
    # CONFIG_SENSORS_LM92 is not set
    # CONFIG_SENSORS_LM93 is not set
    # CONFIG_SENSORS_LM95241 is not set
    # CONFIG_SENSORS_MAX1619 is not set
    # CONFIG_SENSORS_PC87360 is not set
    # CONFIG_SENSORS_PCF8591 is not set
    # CONFIG_SENSORS_SIS5595 is not set
    # CONFIG_SENSORS_SMSC47M1 is not set
    # CONFIG_SENSORS_ADS7828 is not set
    # CONFIG_SENSORS_VIA686A is not set
    # CONFIG_SENSORS_VT8231 is not set
    # CONFIG_SENSORS_W83781D is not set
    # CONFIG_SENSORS_W83627HF is not set
    # CONFIG_SENSORS_W83627EHF is not set
    # CONFIG_SENSORS_HDAPS is not set
    # CONFIG_SENSORS_LIS3LV02D is not set
    # CONFIG_SENSORS_APPLESMC is not set
    # CONFIG_HWMON_DEBUG_CHIP is not set
    CONFIG_THERMAL=y
    # CONFIG_THERMAL_HWMON is not set
    # CONFIG_WATCHDOG is not set
    CONFIG_SSB_POSSIBLE=y
    # Sonics Silicon Backplane
    # CONFIG_SSB is not set
    # Multifunction device drivers
    # CONFIG_MFD_CORE is not set
    # CONFIG_MFD_SM501 is not set
    # CONFIG_HTC_PASIC3 is not set
    # CONFIG_TWL4030_CORE is not set
    # CONFIG_MFD_TMIO is not set
    # CONFIG_PMIC_DA903X is not set
    # CONFIG_MFD_WM8400 is not set
    # CONFIG_MFD_WM8350_I2C is not set
    # CONFIG_MFD_PCF50633 is not set
    # CONFIG_AB3100_CORE is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_MEDIA_SUPPORT is not set
    # Graphics support
    CONFIG_AGP=y
    # CONFIG_AGP_ALI is not set
    # CONFIG_AGP_ATI is not set
    # CONFIG_AGP_AMD is not set
    # CONFIG_AGP_AMD64 is not set
    CONFIG_AGP_INTEL=y
    # CONFIG_AGP_NVIDIA is not set
    # CONFIG_AGP_SIS is not set
    # CONFIG_AGP_SWORKS is not set
    # CONFIG_AGP_VIA is not set
    # CONFIG_AGP_EFFICEON is not set
    CONFIG_DRM=y
    # CONFIG_DRM_TDFX is not set
    # CONFIG_DRM_R128 is not set
    # CONFIG_DRM_RADEON is not set
    # CONFIG_DRM_I810 is not set
    # CONFIG_DRM_I830 is not set
    CONFIG_DRM_I915=y
    CONFIG_DRM_I915_KMS=y
    # CONFIG_DRM_MGA is not set
    # CONFIG_DRM_SIS is not set
    # CONFIG_DRM_VIA is not set
    # CONFIG_DRM_SAVAGE is not set
    # CONFIG_VGASTATE is not set
    CONFIG_VIDEO_OUTPUT_CONTROL=y
    CONFIG_FB=y
    CONFIG_FIRMWARE_EDID=y
    # CONFIG_FB_DDC is not set
    # CONFIG_FB_BOOT_VESA_SUPPORT is not set
    CONFIG_FB_CFB_FILLRECT=y
    CONFIG_FB_CFB_COPYAREA=y
    CONFIG_FB_CFB_IMAGEBLIT=y
    # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
    # CONFIG_FB_SYS_FILLRECT is not set
    # CONFIG_FB_SYS_COPYAREA is not set
    # CONFIG_FB_SYS_IMAGEBLIT is not set
    # CONFIG_FB_FOREIGN_ENDIAN is not set
    # CONFIG_FB_SYS_FOPS is not set
    # CONFIG_FB_SVGALIB is not set
    # CONFIG_FB_MACMODES is not set
    # CONFIG_FB_BACKLIGHT is not set
    CONFIG_FB_MODE_HELPERS=y
    CONFIG_FB_TILEBLITTING=y
    # Frame buffer hardware drivers
    # CONFIG_FB_CIRRUS is not set
    # CONFIG_FB_PM2 is not set
    # CONFIG_FB_CYBER2000 is not set
    # CONFIG_FB_ARC is not set
    # CONFIG_FB_ASILIANT is not set
    # CONFIG_FB_IMSTT is not set
    # CONFIG_FB_VGA16 is not set
    # CONFIG_FB_UVESA is not set
    # CONFIG_FB_VESA is not set
    CONFIG_FB_EFI=y
    # CONFIG_FB_N411 is not set
    # CONFIG_FB_HGA is not set
    # CONFIG_FB_S1D13XXX is not set
    # CONFIG_FB_NVIDIA is not set
    # CONFIG_FB_RIVA is not set
    # CONFIG_FB_LE80578 is not set
    # CONFIG_FB_MATROX is not set
    # CONFIG_FB_RADEON is not set
    # CONFIG_FB_ATY128 is not set
    # CONFIG_FB_ATY is not set
    # CONFIG_FB_S3 is not set
    # CONFIG_FB_SIS is not set
    # CONFIG_FB_VIA is not set
    # CONFIG_FB_NEOMAGIC is not set
    # CONFIG_FB_KYRO is not set
    # CONFIG_FB_3DFX is not set
    # CONFIG_FB_VOODOO1 is not set
    # CONFIG_FB_VT8623 is not set
    # CONFIG_FB_TRIDENT is not set
    # CONFIG_FB_ARK is not set
    # CONFIG_FB_CARMINE is not set
    # CONFIG_FB_VIRTUAL is not set
    # CONFIG_FB_METRONOME is not set
    # CONFIG_FB_MB862XX is not set
    # CONFIG_FB_BROADSHEET is not set
    CONFIG_BACKLIGHT_LCD_SUPPORT=y
    CONFIG_LCD_CLASS_DEVICE=m
    # CONFIG_LCD_ILI9320 is not set
    CONFIG_LCD_PLATFORM=m
    CONFIG_BACKLIGHT_CLASS_DEVICE=y
    CONFIG_BACKLIGHT_GENERIC=y
    # CONFIG_BACKLIGHT_PROGEAR is not set
    # CONFIG_BACKLIGHT_MBP_NVIDIA is not set
    # CONFIG_BACKLIGHT_SAHARA is not set
    # Display device support
    CONFIG_DISPLAY_SUPPORT=m
    # Display hardware drivers
    # Console display driver support
    CONFIG_VGA_CONSOLE=y
    CONFIG_VGACON_SOFT_SCROLLBACK=y
    CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=128
    # CONFIG_MDA_CONSOLE is not set
    CONFIG_DUMMY_CONSOLE=y
    CONFIG_FRAMEBUFFER_CONSOLE=y
    # CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
    # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
    # CONFIG_FONTS is not set
    CONFIG_FONT_8x8=y
    CONFIG_FONT_8x16=y
    CONFIG_LOGO=y
    # CONFIG_LOGO_LINUX_MONO is not set
    # CONFIG_LOGO_LINUX_VGA16 is not set
    CONFIG_LOGO_LINUX_CLUT224=y
    CONFIG_SOUND=y
    CONFIG_SOUND_OSS_CORE=y
    CONFIG_SND=y
    CONFIG_SND_TIMER=y
    CONFIG_SND_PCM=y
    CONFIG_SND_HWDEP=y
    CONFIG_SND_JACK=y
    CONFIG_SND_SEQUENCER=y
    CONFIG_SND_SEQ_DUMMY=y
    CONFIG_SND_OSSEMUL=y
    CONFIG_SND_MIXER_OSS=y
    CONFIG_SND_PCM_OSS=y
    CONFIG_SND_PCM_OSS_PLUGINS=y
    CONFIG_SND_SEQUENCER_OSS=y
    CONFIG_SND_HRTIMER=m
    CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
    # CONFIG_SND_DYNAMIC_MINORS is not set
    CONFIG_SND_SUPPORT_OLD_API=y
    CONFIG_SND_VERBOSE_PROCFS=y
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    CONFIG_SND_VMASTER=y
    # CONFIG_SND_RAWMIDI_SEQ is not set
    # CONFIG_SND_OPL3_LIB_SEQ is not set
    # CONFIG_SND_OPL4_LIB_SEQ is not set
    # CONFIG_SND_SBAWE_SEQ is not set
    # CONFIG_SND_EMU10K1_SEQ is not set
    # CONFIG_SND_DRIVERS is not set
    CONFIG_SND_ISA=y
    # CONFIG_SND_ADLIB is not set
    # CONFIG_SND_AD1816A is not set
    # CONFIG_SND_AD1848 is not set
    # CONFIG_SND_ALS100 is not set
    # CONFIG_SND_AZT2320 is not set
    # CONFIG_SND_CMI8330 is not set
    # CONFIG_SND_CS4231 is not set
    # CONFIG_SND_CS4236 is not set
    # CONFIG_SND_DT019X is not set
    # CONFIG_SND_ES968 is not set
    # CONFIG_SND_ES1688 is not set
    # CONFIG_SND_ES18XX is not set
    # CONFIG_SND_SC6000 is not set
    # CONFIG_SND_GUSCLASSIC is not set
    # CONFIG_SND_GUSEXTREME is not set
    # CONFIG_SND_GUSMAX is not set
    # CONFIG_SND_INTERWAVE is not set
    # CONFIG_SND_INTERWAVE_STB is not set
    # CONFIG_SND_OPL3SA2 is not set
    # CONFIG_SND_OPTI92X_AD1848 is not set
    # CONFIG_SND_OPTI92X_CS4231 is not set
    # CONFIG_SND_OPTI93X is not set
    # CONFIG_SND_MIRO is not set
    # CONFIG_SND_SB8 is not set
    # CONFIG_SND_SB16 is not set
    # CONFIG_SND_SBAWE is not set
    # CONFIG_SND_SGALAXY is not set
    # CONFIG_SND_SSCAPE is not set
    # CONFIG_SND_WAVEFRONT is not set
    CONFIG_SND_PCI=y
    # CONFIG_SND_AD1889 is not set
    # CONFIG_SND_ALS300 is not set
    # CONFIG_SND_ALS4000 is not set
    # CONFIG_SND_ALI5451 is not set
    # CONFIG_SND_ATIIXP is not set
    # CONFIG_SND_ATIIXP_MODEM is not set
    # CONFIG_SND_AU8810 is not set
    # CONFIG_SND_AU8820 is not set
    # CONFIG_SND_AU8830 is not set
    # CONFIG_SND_AW2 is not set
    # CONFIG_SND_BT87X is not set
    # CONFIG_SND_CA0106 is not set
    # CONFIG_SND_CMIPCI is not set
    # CONFIG_SND_OXYGEN is not set
    # CONFIG_SND_CS4281 is not set
    # CONFIG_SND_CS46XX is not set
    # CONFIG_SND_CS5530 is not set
    # CONFIG_SND_CS5535AUDIO is not set
    # CONFIG_SND_CTXFI is not set
    # CONFIG_SND_DARLA20 is not set
    # CONFIG_SND_GINA20 is not set
    # CONFIG_SND_LAYLA20 is not set
    # CONFIG_SND_DARLA24 is not set
    # CONFIG_SND_GINA24 is not set
    # CONFIG_SND_LAYLA24 is not set
    # CONFIG_SND_MONA is not set
    # CONFIG_SND_MIA is not set
    # CONFIG_SND_ECHO3G is not set
    # CONFIG_SND_INDIGO is not set
    # CONFIG_SND_INDIGOIO is not set
    # CONFIG_SND_INDIGODJ is not set
    # CONFIG_SND_INDIGOIOX is not set
    # CONFIG_SND_INDIGODJX is not set
    # CONFIG_SND_EMU10K1 is not set
    # CONFIG_SND_EMU10K1X is not set
    # CONFIG_SND_ENS1370 is not set
    # CONFIG_SND_ENS1371 is not set
    # CONFIG_SND_ES1938 is not set
    # CONFIG_SND_ES1968 is not set
    # CONFIG_SND_FM801 is not set
    CONFIG_SND_HDA_INTEL=y
    CONFIG_SND_HDA_HWDEP=y
    CONFIG_SND_HDA_INPUT_BEEP=y
    CONFIG_SND_HDA_INPUT_JACK=y
    CONFIG_SND_HDA_CODEC_REALTEK=y
    # CONFIG_SND_HDA_CODEC_ANALOG is not set
    # CONFIG_SND_HDA_CODEC_SIGMATEL is not set
    # CONFIG_SND_HDA_CODEC_VIA is not set
    # CONFIG_SND_HDA_CODEC_ATIHDMI is not set
    # CONFIG_SND_HDA_CODEC_NVHDMI is not set
    # CONFIG_SND_HDA_CODEC_INTELHDMI is not set
    # CONFIG_SND_HDA_CODEC_CONEXANT is not set
    # CONFIG_SND_HDA_CODEC_CA0110 is not set
    # CONFIG_SND_HDA_CODEC_CMEDIA is not set
    # CONFIG_SND_HDA_CODEC_SI3054 is not set
    CONFIG_SND_HDA_GENERIC=y
    CONFIG_SND_HDA_POWER_SAVE=y
    CONFIG_SND_HDA_POWER_SAVE_DEFAULT=10
    # CONFIG_SND_HDSP is not set
    # CONFIG_SND_HDSPM is not set
    # CONFIG_SND_HIFIER is not set
    # CONFIG_SND_ICE1712 is not set
    # CONFIG_SND_ICE1724 is not set
    # CONFIG_SND_INTEL8X0 is not set
    # CONFIG_SND_INTEL8X0M is not set
    # CONFIG_SND_KORG1212 is not set
    # CONFIG_SND_LX6464ES is not set
    # CONFIG_SND_MAESTRO3 is not set
    # CONFIG_SND_MIXART is not set
    # CONFIG_SND_NM256 is not set
    # CONFIG_SND_PCXHR is not set
    # CONFIG_SND_RIPTIDE is not set
    # CONFIG_SND_RME32 is not set
    # CONFIG_SND_RME96 is not set
    # CONFIG_SND_RME9652 is not set
    # CONFIG_SND_SIS7019 is not set
    # CONFIG_SND_SONICVIBES is not set
    # CONFIG_SND_TRIDENT is not set
    # CONFIG_SND_VIA82XX is not set
    # CONFIG_SND_VIA82XX_MODEM is not set
    # CONFIG_SND_VIRTUOSO is not set
    # CONFIG_SND_VX222 is not set
    # CONFIG_SND_YMFPCI is not set
    # CONFIG_SND_USB is not set
    # CONFIG_SND_PCMCIA is not set
    # CONFIG_SND_SOC is not set
    # CONFIG_SOUND_PRIME is not set
    CONFIG_HID_SUPPORT=y
    CONFIG_HID=y
    CONFIG_HID_DEBUG=y
    CONFIG_HIDRAW=y
    # USB Input Devices
    CONFIG_USB_HID=y
    CONFIG_HID_PID=y
    CONFIG_USB_HIDDEV=y
    # Special HID drivers
    CONFIG_HID_A4TECH=y
    CONFIG_HID_APPLE=y
    CONFIG_HID_BELKIN=y
    CONFIG_HID_CHERRY=y
    CONFIG_HID_CHICONY=y
    CONFIG_HID_CYPRESS=y
    CONFIG_HID_DRAGONRISE=y
    # CONFIG_DRAGONRISE_FF is not set
    CONFIG_HID_EZKEY=y
    CONFIG_HID_KYE=y
    CONFIG_HID_GYRATION=y
    CONFIG_HID_KENSINGTON=y
    CONFIG_HID_LOGITECH=y
    CONFIG_LOGITECH_FF=y
    # CONFIG_LOGIRUMBLEPAD2_FF is not set
    CONFIG_HID_MICROSOFT=y
    CONFIG_HID_MONTEREY=y
    CONFIG_HID_NTRIG=y
    CONFIG_HID_PANTHERLORD=y
    CONFIG_PANTHERLORD_FF=y
    CONFIG_HID_PETALYNX=y
    CONFIG_HID_SAMSUNG=y
    CONFIG_HID_SONY=y
    CONFIG_HID_SUNPLUS=y
    CONFIG_HID_GREENASIA=y
    # CONFIG_GREENASIA_FF is not set
    CONFIG_HID_SMARTJOYPLUS=y
    # CONFIG_SMARTJOYPLUS_FF is not set
    CONFIG_HID_TOPSEED=y
    CONFIG_HID_THRUSTMASTER=y
    CONFIG_THRUSTMASTER_FF=y
    CONFIG_HID_ZEROPLUS=y
    CONFIG_ZEROPLUS_FF=y
    CONFIG_USB_SUPPORT=y
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB_ARCH_HAS_OHCI=y
    CONFIG_USB_ARCH_HAS_EHCI=y
    CONFIG_USB=y
    CONFIG_USB_DEBUG=y
    CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
    # Miscellaneous USB options
    CONFIG_USB_DEVICEFS=y
    # CONFIG_USB_DEVICE_CLASS is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    CONFIG_USB_SUSPEND=y
    CONFIG_USB_MON=y
    # CONFIG_USB_WUSB_CBAF is not set
    # USB Host Controller Drivers
    # CONFIG_USB_C67X00_HCD is not set
    CONFIG_USB_EHCI_HCD=y
    CONFIG_USB_EHCI_ROOT_HUB_TT=y
    # CONFIG_USB_OXU210HP_HCD is not set
    # CONFIG_USB_ISP116X_HCD is not set
    # CONFIG_USB_OHCI_HCD is not set
    CONFIG_USB_UHCI_HCD=y
    # CONFIG_USB_SL811_HCD is not set
    # CONFIG_USB_R8A66597_HCD is not set
    # USB Device Class drivers
    # CONFIG_USB_ACM is not set
    CONFIG_USB_PRINTER=m
    # CONFIG_USB_WDM is not set
    # CONFIG_USB_TMC is not set
    # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
    # also be needed; see USB_STORAGE Help for more info
    CONFIG_USB_STORAGE=y
    # CONFIG_USB_STORAGE_DEBUG is not set
    # CONFIG_USB_STORAGE_DATAFAB is not set
    # CONFIG_USB_STORAGE_FREECOM is not set
    # CONFIG_USB_STORAGE_ISD200 is not set
    # CONFIG_USB_STORAGE_USBAT is not set
    # CONFIG_USB_STORAGE_SDDR09 is not set
    # CONFIG_USB_STORAGE_SDDR55 is not set
    # CONFIG_USB_STORAGE_JUMPSHOT is not set
    # CONFIG_USB_STORAGE_ALAUDA is not set
    # CONFIG_USB_STORAGE_ONETOUCH is not set
    # CONFIG_USB_STORAGE_KARMA is not set
    # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
    CONFIG_USB_LIBUSUAL=y
    # USB Imaging devices
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USB_MICROTEK is not set
    # USB port drivers
    # CONFIG_USB_SERIAL is not set
    # USB Miscellaneous drivers
    # CONFIG_USB_EMI62 is not set
    # CONFIG_USB_EMI26 is not set
    # CONFIG_USB_ADUTUX is not set
    # CONFIG_USB_SEVSEG is not set
    # CONFIG_USB_RIO500 is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_BERRY_CHARGE is not set
    # CONFIG_USB_LED is not set
    # CONFIG_USB_CYPRESS_CY7C63 is not set
    # CONFIG_USB_CYTHERM is not set
    # CONFIG_USB_IDMOUSE is not set
    # CONFIG_USB_FTDI_ELAN is not set
    # CONFIG_USB_APPLEDISPLAY is not set
    # CONFIG_USB_SISUSBVGA is not set
    # CONFIG_USB_LD is not set
    # CONFIG_USB_TRANCEVIBRATOR is not set
    # CONFIG_USB_IOWARRIOR is not set
    # CONFIG_USB_TEST is not set
    # CONFIG_USB_ISIGHTFW is not set
    # CONFIG_USB_VST is not set
    # CONFIG_USB_GADGET is not set
    # OTG and related infrastructure
    # CONFIG_NOP_USB_XCEIV is not set
    CONFIG_MMC=m
    # CONFIG_MMC_DEBUG is not set
    # CONFIG_MMC_UNSAFE_RESUME is not set
    # MMC/SD/SDIO Card Drivers
    CONFIG_MMC_BLOCK=m
    CONFIG_MMC_BLOCK_BOUNCE=y
    # CONFIG_SDIO_UART is not set
    # CONFIG_MMC_TEST is not set
    # MMC/SD/SDIO Host Controller Drivers
    CONFIG_MMC_SDHCI=m
    CONFIG_MMC_SDHCI_PCI=m
    CONFIG_MMC_RICOH_MMC=m
    CONFIG_MMC_SDHCI_PLTFM=m
    # CONFIG_MMC_WBSD is not set
    # CONFIG_MMC_CB710 is not set
    # CONFIG_MMC_VIA_SDMMC is not set
    # CONFIG_MEMSTICK is not set
    CONFIG_NEW_LEDS=y
    CONFIG_LEDS_CLASS=y
    # LED drivers
    # CONFIG_LEDS_LP3944 is not set
    # CONFIG_LEDS_CLEVO_MAIL is not set
    # CONFIG_LEDS_PCA955X is not set
    # CONFIG_LEDS_BD2802 is not set
    # LED Triggers
    CONFIG_LEDS_TRIGGERS=y
    CONFIG_LEDS_TRIGGER_TIMER=m
    CONFIG_LEDS_TRIGGER_HEARTBEAT=m
    CONFIG_LEDS_TRIGGER_BACKLIGHT=m
    CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
    # iptables trigger is under Netfilter config (LED target)
    # CONFIG_ACCESSIBILITY is not set
    # CONFIG_INFINIBAND is not set
    CONFIG_EDAC=y
    # Reporting subsystems
    # CONFIG_EDAC_DEBUG is not set
    # CONFIG_EDAC_MM_EDAC is not set
    CONFIG_RTC_LIB=y
    CONFIG_RTC_CLASS=y
    # CONFIG_RTC_HCTOSYS is not set
    # CONFIG_RTC_DEBUG is not set
    # RTC interfaces
    CONFIG_RTC_INTF_SYSFS=y
    CONFIG_RTC_INTF_PROC=y
    CONFIG_RTC_INTF_DEV=y
    # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
    # CONFIG_RTC_DRV_TEST is not set
    # I2C RTC drivers
    # CONFIG_RTC_DRV_DS1307 is not set
    # CONFIG_RTC_DRV_DS1374 is not set
    # CONFIG_RTC_DRV_DS1672 is not set
    # CONFIG_RTC_DRV_MAX6900 is not set
    # CONFIG_RTC_DRV_RS5C372 is not set
    # CONFIG_RTC_DRV_ISL1208 is not set
    # CONFIG_RTC_DRV_X1205 is not set
    # CONFIG_RTC_DRV_PCF8563 is not set
    # CONFIG_RTC_DRV_PCF8583 is not set
    # CONFIG_RTC_DRV_M41T80 is not set
    # CONFIG_RTC_DRV_S35390A is not set
    # CONFIG_RTC_DRV_FM3130 is not set
    # CONFIG_RTC_DRV_RX8581 is not set
    # CONFIG_RTC_DRV_RX8025 is not set
    # SPI RTC drivers
    # Platform RTC drivers
    CONFIG_RTC_DRV_CMOS=y
    # CONFIG_RTC_DRV_DS1286 is not set
    # CONFIG_RTC_DRV_DS1511 is not set
    # CONFIG_RTC_DRV_DS1553 is not set
    # CONFIG_RTC_DRV_DS1742 is not set
    # CONFIG_RTC_DRV_STK17TA8 is not set
    # CONFIG_RTC_DRV_M48T86 is not set
    # CONFIG_RTC_DRV_M48T35 is not set
    # CONFIG_RTC_DRV_M48T59 is not set
    # CONFIG_RTC_DRV_BQ4802 is not set
    # CONFIG_RTC_DRV_V3020 is not set
    # on-CPU RTC drivers
    CONFIG_DMADEVICES=y
    # DMA Devices
    CONFIG_INTEL_IOATDMA=m
    CONFIG_DMA_ENGINE=y
    # DMA Clients
    CONFIG_NET_DMA=y
    # CONFIG_ASYNC_TX_DMA is not set
    # CONFIG_DMATEST is not set
    CONFIG_DCA=m
    # CONFIG_AUXDISPLAY is not set
    # CONFIG_UIO is not set
    # TI VLYNQ
    # CONFIG_STAGING is not set
    CONFIG_X86_PLATFORM_DEVICES=y
    # CONFIG_ACER_WMI is not set
    # CONFIG_ASUS_LAPTOP is not set
    # CONFIG_FUJITSU_LAPTOP is not set
    # CONFIG_MSI_LAPTOP is not set
    # CONFIG_PANASONIC_LAPTOP is not set
    # CONFIG_COMPAL_LAPTOP is not set
    # CONFIG_SONY_LAPTOP is not set
    # CONFIG_THINKPAD_ACPI is not set
    # CONFIG_INTEL_MENLOW is not set
    # CONFIG_ACPI_WMI is not set
    # CONFIG_ACPI_ASUS is not set
    # CONFIG_ACPI_TOSHIBA is not set
    # Firmware Drivers
    # CONFIG_EDD is not set
    CONFIG_FIRMWARE_MEMMAP=y
    CONFIG_EFI_VARS=m
    # CONFIG_DELL_RBU is not set
    # CONFIG_DCDBAS is not set
    CONFIG_DMIID=y
    # CONFIG_ISCSI_IBFT_FIND is not set
    # File systems
    CONFIG_EXT2_FS=y
    CONFIG_EXT2_FS_XATTR=y
    CONFIG_EXT2_FS_POSIX_ACL=y
    CONFIG_EXT2_FS_SECURITY=y
    CONFIG_EXT2_FS_XIP=y
    CONFIG_EXT3_FS=y
    # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set
    CONFIG_EXT3_FS_XATTR=y
    CONFIG_EXT3_FS_POSIX_ACL=y
    CONFIG_EXT3_FS_SECURITY=y
    CONFIG_EXT4_FS=y
    # CONFIG_EXT4DEV_COMPAT is not set
    CONFIG_EXT4_FS_XATTR=y
    CONFIG_EXT4_FS_POSIX_ACL=y
    CONFIG_EXT4_FS_SECURITY=y
    CONFIG_FS_XIP=y
    CONFIG_JBD=y
    CONFIG_JBD2=y
    CONFIG_FS_MBCACHE=y
    CONFIG_REISERFS_FS=y
    # CONFIG_REISERFS_CHECK is not set
    # CONFIG_REISERFS_PROC_INFO is not set
    CONFIG_REISERFS_FS_XATTR=y
    CONFIG_REISERFS_FS_POSIX_ACL=y
    CONFIG_REISERFS_FS_SECURITY=y
    # CONFIG_JFS_FS is not set
    CONFIG_FS_POSIX_ACL=y
    # CONFIG_XFS_FS is not set
    # CONFIG_OCFS2_FS is not set
    CONFIG_FILE_LOCKING=y
    CONFIG_FSNOTIFY=y
    CONFIG_DNOTIFY=y
    CONFIG_INOTIFY=y
    CONFIG_INOTIFY_USER=y
    # CONFIG_QUOTA is not set
    # CONFIG_AUTOFS_FS is not set
    CONFIG_AUTOFS4_FS=y
    CONFIG_FUSE_FS=y
    # CONFIG_CUSE is not set
    CONFIG_GENERIC_ACL=y
    # Caches
    # CD-ROM/DVD Filesystems
    CONFIG_ISO9660_FS=y
    CONFIG_JOLIET=y
    CONFIG_ZISOFS=y
    CONFIG_UDF_FS=m
    CONFIG_UDF_NLS=y
    # DOS/FAT/NT Filesystems
    CONFIG_FAT_FS=m
    CONFIG_MSDOS_FS=m
    CONFIG_VFAT_FS=m
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    CONFIG_NTFS_FS=m
    # CONFIG_NTFS_DEBUG is not set
    CONFIG_NTFS_RW=y
    # Pseudo filesystems
    CONFIG_PROC_FS=y
    CONFIG_PROC_KCORE=y
    CONFIG_PROC_VMCORE=y
    CONFIG_PROC_SYSCTL=y
    CONFIG_PROC_PAGE_MONITOR=y
    CONFIG_SYSFS=y
    CONFIG_TMPFS=y
    CONFIG_TMPFS_POSIX_ACL=y
    CONFIG_HUGETLBFS=y
    CONFIG_HUGETLB_PAGE=y
    # CONFIG_CONFIGFS_FS is not set
    # CONFIG_MISC_FILESYSTEMS is not set
    CONFIG_NETWORK_FILESYSTEMS=y
    CONFIG_NFS_FS=m
    CONFIG_NFS_V3=y
    CONFIG_NFS_V3_ACL=y
    # CONFIG_NFSD is not set
    CONFIG_LOCKD=m
    CONFIG_LOCKD_V4=y
    CONFIG_NFS_ACL_SUPPORT=m
    CONFIG_NFS_COMMON=y
    CONFIG_SUNRPC=m
    # CONFIG_SMB_FS is not set
    # CONFIG_CIFS is not set
    # CONFIG_NCP_FS is not set
    # CONFIG_CODA_FS is not set
    # Partition Types
    CONFIG_PARTITION_ADVANCED=y
    # CONFIG_ACORN_PARTITION is not set
    # CONFIG_OSF_PARTITION is not set
    # CONFIG_AMIGA_PARTITION is not set
    # CONFIG_ATARI_PARTITION is not set
    # CONFIG_MAC_PARTITION is not set
    CONFIG_MSDOS_PARTITION=y
    CONFIG_BSD_DISKLABEL=y
    # CONFIG_MINIX_SUBPARTITION is not set
    # CONFIG_SOLARIS_X86_PARTITION is not set
    CONFIG_UNIXWARE_DISKLABEL=y
    # CONFIG_LDM_PARTITION is not set
    # CONFIG_SGI_PARTITION is not set
    # CONFIG_ULTRIX_PARTITION is not set
    # CONFIG_SUN_PARTITION is not set
    # CONFIG_KARMA_PARTITION is not set
    # CONFIG_EFI_PARTITION is not set
    # CONFIG_SYSV68_PARTITION is not set
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="utf8"
    CONFIG_NLS_CODEPAGE_437=y
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    CONFIG_NLS_CODEPAGE_850=y
    CONFIG_NLS_CODEPAGE_852=y
    # CONFIG_NLS_CODEPAGE_855 is not set
    # CONFIG_NLS_CODEPAGE_857 is not set
    # CONFIG_NLS_CODEPAGE_860 is not set
    # CONFIG_NLS_CODEPAGE_861 is not set
    # CONFIG_NLS_CODEPAGE_862 is not set
    # CONFIG_NLS_CODEPAGE_863 is not set
    # CONFIG_NLS_CODEPAGE_864 is not set
    # CONFIG_NLS_CODEPAGE_865 is not set
    # CONFIG_NLS_CODEPAGE_866 is not set
    # CONFIG_NLS_CODEPAGE_869 is not set
    # CONFIG_NLS_CODEPAGE_936 is not set
    # CONFIG_NLS_CODEPAGE_950 is not set
    # CONFIG_NLS_CODEPAGE_932 is not set
    # CONFIG_NLS_CODEPAGE_949 is not set
    # CONFIG_NLS_CODEPAGE_874 is not set
    # CONFIG_NLS_ISO8859_8 is not set
    # CONFIG_NLS_CODEPAGE_1250 is not set
    # CONFIG_NLS_CODEPAGE_1251 is not set
    CONFIG_NLS_ASCII=y
    CONFIG_NLS_ISO8859_1=y
    # CONFIG_NLS_ISO8859_2 is not set
    # CONFIG_NLS_ISO8859_3 is not set
    # CONFIG_NLS_ISO8859_4 is not set
    # CONFIG_NLS_ISO8859_5 is not set
    # CONFIG_NLS_ISO8859_6 is not set
    # CONFIG_NLS_ISO8859_7 is not set
    # CONFIG_NLS_ISO8859_9 is not set
    # CONFIG_NLS_ISO8859_13 is not set
    # CONFIG_NLS_ISO8859_14 is not set
    # CONFIG_NLS_ISO8859_15 is not set
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    CONFIG_NLS_UTF8=y
    # Kernel hacking
    CONFIG_TRACE_IRQFLAGS_SUPPORT=y
    CONFIG_PRINTK_TIME=y
    # CONFIG_ENABLE_WARN_DEPRECATED is not set
    CONFIG_ENABLE_MUST_CHECK=y
    CONFIG_FRAME_WARN=2048
    CONFIG_MAGIC_SYSRQ=y
    # CONFIG_UNUSED_SYMBOLS is not set
    # CONFIG_DEBUG_FS is not set
    # CONFIG_HEADERS_CHECK is not set
    CONFIG_DEBUG_KERNEL=y
    # CONFIG_DEBUG_SHIRQ is not set
    # CONFIG_DETECT_SOFTLOCKUP is not set
    # CONFIG_DETECT_HUNG_TASK is not set
    # CONFIG_SCHED_DEBUG is not set
    # CONFIG_SCHEDSTATS is not set
    CONFIG_TIMER_STATS=y
    # CONFIG_DEBUG_OBJECTS is not set
    # CONFIG_SLUB_DEBUG_ON is not set
    # CONFIG_SLUB_STATS is not set
    # CONFIG_DEBUG_RT_MUTEXES is not set
    # CONFIG_RT_MUTEX_TESTER is not set
    # CONFIG_DEBUG_SPINLOCK is not set
    # CONFIG_DEBUG_MUTEXES is not set
    # CONFIG_DEBUG_LOCK_ALLOC is not set
    # CONFIG_PROVE_LOCKING is not set
    # CONFIG_LOCK_STAT is not set
    # CONFIG_DEBUG_SPINLOCK_SLEEP is not set
    # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
    # CONFIG_DEBUG_KOBJECT is not set
    # CONFIG_DEBUG_HIGHMEM is not set
    CONFIG_DEBUG_BUGVERBOSE=y
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_VM is not set
    # CONFIG_DEBUG_VIRTUAL is not set
    # CONFIG_DEBUG_WRITECOUNT is not set
    CONFIG_DEBUG_MEMORY_INIT=y
    # CONFIG_DEBUG_LIST is not set
    # CONFIG_DEBUG_SG is not set
    # CONFIG_DEBUG_NOTIFIERS is not set
    CONFIG_ARCH_WANT_FRAME_POINTERS=y
    CONFIG_FRAME_POINTER=y
    # CONFIG_BOOT_PRINTK_DELAY is not set
    # CONFIG_RCU_TORTURE_TEST is not set
    # CONFIG_RCU_CPU_STALL_DETECTOR is not set
    # CONFIG_BACKTRACE_SELF_TEST is not set
    # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
    # CONFIG_FAULT_INJECTION is not set
    # CONFIG_LATENCYTOP is not set
    CONFIG_SYSCTL_SYSCALL_CHECK=y
    # CONFIG_DEBUG_PAGEALLOC is not set
    CONFIG_USER_STACKTRACE_SUPPORT=y
    CONFIG_HAVE_FUNCTION_TRACER=y
    CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
    CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
    CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
    CONFIG_HAVE_DYNAMIC_FTRACE=y
    CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
    CONFIG_HAVE_FTRACE_SYSCALLS=y
    CONFIG_TRACING_SUPPORT=y
    CONFIG_FTRACE=y
    # CONFIG_FUNCTION_TRACER is not set
    # CONFIG_IRQSOFF_TRACER is not set
    # CONFIG_SYSPROF_TRACER is not set
    # CONFIG_SCHED_TRACER is not set
    # CONFIG_ENABLE_DEFAULT_TRACERS is not set
    # CONFIG_FTRACE_SYSCALLS is not set
    # CONFIG_BOOT_TRACER is not set
    CONFIG_BRANCH_PROFILE_NONE=y
    # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
    # CONFIG_PROFILE_ALL_BRANCHES is not set
    # CONFIG_POWER_TRACER is not set
    # CONFIG_STACK_TRACER is not set
    # CONFIG_KMEMTRACE is not set
    # CONFIG_WORKQUEUE_TRACER is not set
    # CONFIG_BLK_DEV_IO_TRACE is not set
    # CONFIG_MMIOTRACE is not set
    # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
    # CONFIG_DMA_API_DEBUG is not set
    # CONFIG_SAMPLES is not set
    CONFIG_HAVE_ARCH_KGDB=y
    CONFIG_HAVE_ARCH_KMEMCHECK=y
    # CONFIG_STRICT_DEVMEM is not set
    CONFIG_X86_VERBOSE_BOOTUP=y
    CONFIG_EARLY_PRINTK=y
    # CONFIG_EARLY_PRINTK_DBGP is not set
    # CONFIG_DEBUG_STACKOVERFLOW is not set
    # CONFIG_DEBUG_STACK_USAGE is not set
    # CONFIG_DEBUG_PER_CPU_MAPS is not set
    # CONFIG_X86_PTDUMP is not set
    CONFIG_DEBUG_RODATA=y
    # CONFIG_DEBUG_RODATA_TEST is not set
    # CONFIG_DEBUG_NX_TEST is not set
    # CONFIG_4KSTACKS is not set
    CONFIG_DOUBLEFAULT=y
    # CONFIG_IOMMU_STRESS is not set
    CONFIG_HAVE_MMIOTRACE_SUPPORT=y
    CONFIG_IO_DELAY_TYPE_0X80=0
    CONFIG_IO_DELAY_TYPE_0XED=1
    CONFIG_IO_DELAY_TYPE_UDELAY=2
    CONFIG_IO_DELAY_TYPE_NONE=3
    CONFIG_IO_DELAY_0X80=y
    # CONFIG_IO_DELAY_0XED is not set
    # CONFIG_IO_DELAY_UDELAY is not set
    # CONFIG_IO_DELAY_NONE is not set
    CONFIG_DEFAULT_IO_DELAY_TYPE=0
    # CONFIG_CPA_DEBUG is not set
    CONFIG_OPTIMIZE_INLINING=y
    # Security options
    CONFIG_KEYS=y
    CONFIG_KEYS_DEBUG_PROC_KEYS=y
    CONFIG_SECURITY=y
    # CONFIG_SECURITYFS is not set
    CONFIG_SECURITY_NETWORK=y
    # CONFIG_SECURITY_NETWORK_XFRM is not set
    # CONFIG_SECURITY_PATH is not set
    CONFIG_SECURITY_FILE_CAPABILITIES=y
    # CONFIG_SECURITY_ROOTPLUG is not set
    CONFIG_LSM_MMAP_MIN_ADDR=65536
    CONFIG_SECURITY_SELINUX=y
    CONFIG_SECURITY_SELINUX_BOOTPARAM=y
    CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
    CONFIG_SECURITY_SELINUX_DISABLE=y
    CONFIG_SECURITY_SELINUX_DEVELOP=y
    CONFIG_SECURITY_SELINUX_AVC_STATS=y
    CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
    # CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
    # CONFIG_SECURITY_SMACK is not set
    # CONFIG_SECURITY_TOMOYO is not set
    # CONFIG_IMA is not set
    CONFIG_CRYPTO=y
    # Crypto core or helper
    # CONFIG_CRYPTO_FIPS is not set
    CONFIG_CRYPTO_ALGAPI=y
    CONFIG_CRYPTO_ALGAPI2=y
    CONFIG_CRYPTO_AEAD=y
    CONFIG_CRYPTO_AEAD2=y
    CONFIG_CRYPTO_BLKCIPHER=y
    CONFIG_CRYPTO_BLKCIPHER2=y
    CONFIG_CRYPTO_HASH=y
    CONFIG_CRYPTO_HASH2=y
    CONFIG_CRYPTO_RNG2=y
    CONFIG_CRYPTO_PCOMP=y
    CONFIG_CRYPTO_MANAGER=y
    CONFIG_CRYPTO_MANAGER2=y
    # CONFIG_CRYPTO_NULL is not set
    CONFIG_CRYPTO_WORKQUEUE=y
    # CONFIG_CRYPTO_CRYPTD is not set
    CONFIG_CRYPTO_AUTHENC=y
    # CONFIG_CRYPTO_TEST is not set
    # Authenticated Encryption with Associated Data
    # CONFIG_CRYPTO_CCM is not set
    # CONFIG_CRYPTO_GCM is not set
    # CONFIG_CRYPTO_SEQIV is not set
    # Block modes
    CONFIG_CRYPTO_CBC=y
    # CONFIG_CRYPTO_CTR is not set
    # CONFIG_CRYPTO_CTS is not set
    CONFIG_CRYPTO_ECB=y
    # CONFIG_CRYPTO_PCBC is not set
    # Hash modes
    CONFIG_CRYPTO_HMAC=y
    # Digest
    # CONFIG_CRYPTO_CRC32C is not set
    # CONFIG_CRYPTO_CRC32C_INTEL is not set
    # CONFIG_CRYPTO_MD4 is not set
    CONFIG_CRYPTO_MD5=y
    # CONFIG_CRYPTO_MICHAEL_MIC is not set
    # CONFIG_CRYPTO_RMD128 is not set
    # CONFIG_CRYPTO_RMD160 is not set
    # CONFIG_CRYPTO_RMD256 is not set
    # CONFIG_CRYPTO_RMD320 is not set
    CONFIG_CRYPTO_SHA1=y
    # CONFIG_CRYPTO_SHA256 is not set
    # CONFIG_CRYPTO_SHA512 is not set
    # CONFIG_CRYPTO_TGR192 is not set
    # CONFIG_CRYPTO_WP512 is not set
    # Ciphers
    CONFIG_CRYPTO_AES=y
    CONFIG_CRYPTO_AES_586=y
    # CONFIG_CRYPTO_ANUBIS is not set
    CONFIG_CRYPTO_ARC4=y
    # CONFIG_CRYPTO_BLOWFISH is not set
    # CONFIG_CRYPTO_CAMELLIA is not set
    # CONFIG_CRYPTO_CAST5 is not set
    # CONFIG_CRYPTO_CAST6 is not set
    CONFIG_CRYPTO_DES=y
    # CONFIG_CRYPTO_FCRYPT is not set
    # CONFIG_CRYPTO_KHAZAD is not set
    # CONFIG_CRYPTO_SEED is not set
    # CONFIG_CRYPTO_SERPENT is not set
    # CONFIG_CRYPTO_TEA is not set
    # CONFIG_CRYPTO_TWOFISH is not set
    # CONFIG_CRYPTO_TWOFISH_586 is not set
    # Compression
    CONFIG_CRYPTO_DEFLATE=y
    # CONFIG_CRYPTO_ZLIB is not set
    # CONFIG_CRYPTO_LZO is not set
    # Random Number Generation
    # CONFIG_CRYPTO_ANSI_CPRNG is not set
    # CONFIG_CRYPTO_HW is not set
    CONFIG_HAVE_KVM=y
    CONFIG_HAVE_KVM_IRQCHIP=y
    CONFIG_VIRTUALIZATION=y
    CONFIG_KVM=m
    CONFIG_KVM_INTEL=m
    # CONFIG_KVM_AMD is not set
    # CONFIG_KVM_TRACE is not set
    # CONFIG_VIRTIO_BALLOON is not set
    # CONFIG_BINARY_PRINTF is not set
    # Library routines
    CONFIG_BITREVERSE=y
    CONFIG_GENERIC_FIND_FIRST_BIT=y
    CONFIG_GENERIC_FIND_NEXT_BIT=y
    CONFIG_GENERIC_FIND_LAST_BIT=y
    # CONFIG_CRC_CCITT is not set
    CONFIG_CRC16=y
    CONFIG_CRC_T10DIF=y
    CONFIG_CRC_ITU_T=m
    CONFIG_CRC32=y
    # CONFIG_CRC7 is not set
    # CONFIG_LIBCRC32C is not set
    CONFIG_AUDIT_GENERIC=y
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_DECOMPRESS_GZIP=y
    CONFIG_DECOMPRESS_BZIP2=y
    CONFIG_DECOMPRESS_LZMA=y
    CONFIG_HAS_IOMEM=y
    CONFIG_HAS_IOPORT=y
    CONFIG_HAS_DMA=y
    CONFIG_NLATTR=y

    sry, idk how to get the error output of a compiled package via mkpkg. i know its a weird error...
    has anyone tryed to open my kerenel configuration with a graphical cofiguration font end, and to see if the 3945 wireless module is marked as module? when i do it its not aviable. maybe today ill find some time to do the config and compile...
    my arch: x86 ; core duo; pentium m (kernel-processor-type); -march=prescott -O2 -pipe -fomit-frame-pointer
    yeah, config from testing *.31 works fine, but the job needs to be done to strip out all useless stuff out of that general kernel

  • Runaway RAM Usage leading to Kernel Panic using FilmConvert Plugin (updated x3)

    Hello, filed a bug report on this but cuious if anyone sees it.
    Late 2012 27 iMac, top line i7 with 680MX, 32 GB RAM.
    Promise R6 TB RAID.
    Trying to render out a 15 min edit from Premiere that has each clip with 3 filters on it - MB Looks, MB Colorista, Filmconvert.
    Since 7.01, every time I render previews or encode out, RAM use skyrockets way past the 25GB I allocated. I get up to a 50GB swap file in fact before the computer just craps out and I can't finish my render. (Nothing past 15 min anyway, I can do under that length ok.) As of this moment PPro Headless in Activity Monior has allocated 40GB and climbing....
    Any ideas?  Kind of a major issue. Does not happen on CS6 with same filters and similar project.
    PS - The same issue is happening with the same project on my Macbook Pro 15" retina with 16GB of RAM. It's creating a huge swap file. On the iMac with Fusion drive I can't complete the render at all due to the system SSD filling up on the Fusion drive. It eventually crashes and reboots. I can complete the render on the laptop, but it ends up with a 50+ GB swap file.
    UPDATE 1:
    I had my suspicions a Plugin I am using, the excellent (but now unusable for over 10 min projects) plugin "FilmConvert" was causing the issue on all my Macs.
    To prove it's the plugin, I removed duplicated my main 15 min sequence, removed the FilmConvert plugin from all clips while keeping the two Magic Bullet effects on. So, all filters (MB Looks, MB Colorista II) BUT filmConvert.
    Result?
    RAM usage stays where it should be (at the limit set in Premiere Pro CC) and there is zero swap file usage. Same project, same filters, same everything except FilmConvert was removed on this duplicate timeline.
    As it stands, the plugin is unusable for longer projects.  I'm still curious if anyone else has seen this, or if Adobe has any input.
    UPDATE 2: I developed a workaround workflow and the vendor wrote back and thinks it's a bug in PPro CC, but will try to see if they can't code around it:
    "We have had one other very recent report of this type of behaviour, but when rendering through the CC version
    of Adobe Media Encoder or Premiere (but not After Effects). I believe the issue is with Media Encoder / Premiere,
    although it's probably preventable within our plugin. The problem I believe is that Premiere and Media Encoder
    create many instances of the plugin during a  render, one instance per frame, and it seems in CC those instances
    do not get cleaned up until after the render finishes.
    As each plugin instance is expecting to be called many times, to render multiple frames, it keeps a certain amount
    of memory allocated, in order to gain a speed advantage."
    I am using the render previews workflow to deal with it for now. I set my sequence to my master codec (in this case ProRes 422 HQ, with maximum quality checked). Then I preview chunks of the timeline setting in/out, render. Then I quit the program, which frees up the RAM and the need for the swap file, which starts reducing itself. Then I run PPro again, and preview another chunk, and repeat the process until done.
    To export final piece, I just export using previews matching the sequence (which is ProRes 422 HQ) and it is a straight copy at that point and quick. This is a useful workflow if you are making tons of minor edits for a client anyway, as it vastly speeds up re-renders of the final file.  No loss in quality as the previews are the same as my final encode would be anyway.
    Still, it would be nice if Adobe/FilmConvert or both could fix this bug so I can just queue up a whole sequence and walk away without chunking it up if I need to.
    Update 3: If only Adobe could move so fast. Rubber Monkey sent me a new version to test today, and it fixed the problem. Amazing customer service!! It has not been released yet but I suspect it will be at some point. Case closed.

    Glad I'm not the only one. My temporary solution was to download the kernel and wl package from December 2012 found http://repo-ck.com/PKG_source/ and then mkpkg and install it. It'll work as an alternative for now, without messing up the primary kernel setup.

  • Fsck problem Diagnosis: Systemd dropping to emergency console

    Title says it all. I have no idea why.
    First, it said fsck was unable and I had to enter fsck /dev/sdaX manually. Then emergency console dropped on me.
    The thing is that if I continue without giving the password thus entering to console, computer loads just fine.
    Probably problems are quoted from the next complete journal are as follows:
    -- The start-up result is done.
    Aug 26 09:54:39 machine kernel: sound hdaudioC0D0: autoconfig: line_outs=1 (0xd/0x0/0x0/0x0/0x0) type:speaker
    Aug 26 09:54:39 machine kernel: sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    Aug 26 09:54:39 machine kernel: sound hdaudioC0D0: hp_outs=1 (0xb/0x0/0x0/0x0/0x0)
    Aug 26 09:54:39 machine kernel: sound hdaudioC0D0: mono: mono_out=0x0
    Aug 26 09:54:39 machine kernel: sound hdaudioC0D0: inputs:
    Aug 26 09:54:39 machine kernel: sound hdaudioC0D0: Internal Mic=0x11
    Aug 26 09:54:39 machine kernel: sound hdaudioC0D0: Mic=0xc
    Aug 26 09:54:40 machine kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input9
    Aug 26 09:54:40 machine kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    Aug 26 09:54:40 machine kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    Aug 26 09:54:40 machine kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    Aug 26 09:54:40 machine systemd-fsck[216]: /dev/sda3: Inodes that were part of a corrupted orphan linked list found.
    Aug 26 09:54:40 machine systemd-fsck[216]: /dev/sda3: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
    Aug 26 09:54:40 machine systemd-fsck[216]: (i.e., without -a or -p options)
    Aug 26 09:54:40 machine systemd-fsck[216]: fsck failed with error code 4.
    Aug 26 09:54:40 machine systemd-fsck[216]: Running request emergency.target/start/replace
    Aug 26 09:54:40 machine systemd[1]: Stopped TLP system startup/shutdown.
    -- Subject: Unit tlp.service has finished shutting down
    Systemd Journal:
    -- Logs begin at Fri 2014-04-18 01:39:00 EEST, end at Tue 2014-08-26 10:24:28 EE
    Aug 26 09:54:35 machine systemd-journal[149]: Runtime journal is using 8.0M (max
    Aug 26 09:54:35 machine systemd-journal[149]: Runtime journal is using 8.0M (max
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys cpuset
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys cpu
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys cpuacct
    Aug 26 09:54:35 machine kernel: Linux version 3.16.1-1-zen (nobody@var-lib-archb
    Aug 26 09:54:35 machine kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-zen
    Aug 26 09:54:35 machine kernel: e820: BIOS-provided physical RAM map:
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000000000000-0x00000000000
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000000088000-0x00000000000
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001ff
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000020200000-0x00000000400
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000040004000-0x00000000400
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000040005000-0x000000009a0
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009a0bf000-0x000000009a4
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009a4bf000-0x000000009ae
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009aebf000-0x000000009af
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009afbf000-0x000000009af
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009afff000-0x000000009af
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009b000000-0x000000009f9
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000eff
    lines 1-23...skipping...
    -- Logs begin at Fri 2014-04-18 01:39:00 EEST, end at Tue 2014-08-26 10:24:28 EEST. --
    Aug 26 09:54:35 machine systemd-journal[149]: Runtime journal is using 8.0M (max allowed 192.4M, trying to leave 288.7M free of 1.8G available → current limit 192.4M).
    Aug 26 09:54:35 machine systemd-journal[149]: Runtime journal is using 8.0M (max allowed 192.4M, trying to leave 288.7M free of 1.8G available → current limit 192.4M).
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys cpuset
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys cpu
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys cpuacct
    Aug 26 09:54:35 machine kernel: Linux version 3.16.1-1-zen (nobody@var-lib-archbuild-extra-x86_64-heftig-mkpkg-23970) (gcc version 4.9.1 (GCC) ) #1 ZEN SMP PREEMPT Fri Aug 15 22:06:09 UTC 2014
    Aug 26 09:54:35 machine kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-zen root=UUID=09b369ae-e074-442f-ae02-101a7421b569 rw drm.rnodes=1
    Aug 26 09:54:35 machine kernel: e820: BIOS-provided physical RAM map:
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000040005000-0x000000009a0befff] usable
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009a0bf000-0x000000009a4befff] type 20
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009a4bf000-0x000000009aebefff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    Aug 26 09:54:35 machine kernel: BIOS-e820: [mem 0x0000000100000000-0x000000015f5fffff] usable
    Aug 26 09:54:35 machine kernel: NX (Execute Disable) protection: active
    Aug 26 09:54:35 machine kernel: efi: EFI v2.31 by INSYDE Corp.
    Aug 26 09:54:35 machine kernel: efi: ACPI=0x9affe000 ACPI 2.0=0x9affe014 SMBIOS=0x9aebef98
    Aug 26 09:54:35 machine kernel: efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem02: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem04: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem05: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001048000) (15MB)
    Aug 26 09:54:35 machine kernel: efi: mem06: type=7, attr=0xf, range=[0x0000000001048000-0x0000000002000000) (15MB)
    Aug 26 09:54:35 machine kernel: efi: mem07: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f48000) (15MB)
    Aug 26 09:54:35 machine kernel: efi: mem08: type=7, attr=0xf, range=[0x0000000002f48000-0x0000000020000000) (464MB)
    Aug 26 09:54:35 machine kernel: efi: mem09: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
    Aug 26 09:54:35 machine kernel: efi: mem10: type=7, attr=0xf, range=[0x0000000020200000-0x0000000037976000) (375MB)
    Aug 26 09:54:35 machine kernel: efi: mem11: type=2, attr=0xf, range=[0x0000000037976000-0x0000000037cb3000) (3MB)
    Aug 26 09:54:35 machine kernel: efi: mem12: type=7, attr=0xf, range=[0x0000000037cb3000-0x0000000040004000) (131MB)
    Aug 26 09:54:35 machine kernel: efi: mem13: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem14: type=7, attr=0xf, range=[0x0000000040005000-0x0000000068bcb000) (651MB)
    Aug 26 09:54:35 machine kernel: efi: mem15: type=2, attr=0xf, range=[0x0000000068bcb000-0x000000008e6c0000) (602MB)
    Aug 26 09:54:35 machine kernel: efi: mem16: type=4, attr=0xf, range=[0x000000008e6c0000-0x000000008e6e0000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem17: type=7, attr=0xf, range=[0x000000008e6e0000-0x0000000090ca6000) (37MB)
    Aug 26 09:54:35 machine kernel: efi: mem18: type=4, attr=0xf, range=[0x0000000090ca6000-0x00000000916b0000) (10MB)
    Aug 26 09:54:35 machine kernel: efi: mem19: type=7, attr=0xf, range=[0x00000000916b0000-0x00000000918a1000) (1MB)
    Aug 26 09:54:35 machine kernel: efi: mem20: type=1, attr=0xf, range=[0x00000000918a1000-0x00000000918bf000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem21: type=7, attr=0xf, range=[0x00000000918bf000-0x000000009716c000) (88MB)
    Aug 26 09:54:35 machine kernel: efi: mem22: type=4, attr=0xf, range=[0x000000009716c000-0x00000000979ee000) (8MB)
    Aug 26 09:54:35 machine kernel: efi: mem23: type=7, attr=0xf, range=[0x00000000979ee000-0x0000000097cef000) (3MB)
    Aug 26 09:54:35 machine kernel: efi: mem24: type=4, attr=0xf, range=[0x0000000097cef000-0x0000000097d36000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem25: type=7, attr=0xf, range=[0x0000000097d36000-0x0000000097d47000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem26: type=4, attr=0xf, range=[0x0000000097d47000-0x0000000097d87000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem27: type=7, attr=0xf, range=[0x0000000097d87000-0x0000000097d91000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem28: type=4, attr=0xf, range=[0x0000000097d91000-0x0000000097db3000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem29: type=7, attr=0xf, range=[0x0000000097db3000-0x0000000097db5000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem30: type=4, attr=0xf, range=[0x0000000097db5000-0x0000000097db7000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem31: type=7, attr=0xf, range=[0x0000000097db7000-0x0000000097db8000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem32: type=4, attr=0xf, range=[0x0000000097db8000-0x0000000097df9000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem33: type=7, attr=0xf, range=[0x0000000097df9000-0x0000000097e00000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem34: type=4, attr=0xf, range=[0x0000000097e00000-0x0000000097e09000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem35: type=7, attr=0xf, range=[0x0000000097e09000-0x0000000097e0a000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem36: type=4, attr=0xf, range=[0x0000000097e0a000-0x0000000097e17000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem37: type=7, attr=0xf, range=[0x0000000097e17000-0x0000000097e1a000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem38: type=4, attr=0xf, range=[0x0000000097e1a000-0x0000000097f51000) (1MB)
    Aug 26 09:54:35 machine kernel: efi: mem39: type=7, attr=0xf, range=[0x0000000097f51000-0x0000000097f52000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem40: type=4, attr=0xf, range=[0x0000000097f52000-0x0000000097f55000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem41: type=7, attr=0xf, range=[0x0000000097f55000-0x0000000097f58000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem42: type=4, attr=0xf, range=[0x0000000097f58000-0x0000000097f7a000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem43: type=7, attr=0xf, range=[0x0000000097f7a000-0x0000000097f7c000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem44: type=4, attr=0xf, range=[0x0000000097f7c000-0x0000000097fa0000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem45: type=7, attr=0xf, range=[0x0000000097fa0000-0x0000000097faa000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem46: type=4, attr=0xf, range=[0x0000000097faa000-0x0000000097fd7000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem47: type=7, attr=0xf, range=[0x0000000097fd7000-0x0000000097fde000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem48: type=4, attr=0xf, range=[0x0000000097fde000-0x0000000098032000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem49: type=7, attr=0xf, range=[0x0000000098032000-0x0000000098033000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem50: type=4, attr=0xf, range=[0x0000000098033000-0x0000000098049000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem51: type=7, attr=0xf, range=[0x0000000098049000-0x000000009804a000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem52: type=4, attr=0xf, range=[0x000000009804a000-0x0000000098393000) (3MB)
    Aug 26 09:54:35 machine kernel: efi: mem53: type=7, attr=0xf, range=[0x0000000098393000-0x000000009839c000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem54: type=4, attr=0xf, range=[0x000000009839c000-0x00000000983b6000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem55: type=7, attr=0xf, range=[0x00000000983b6000-0x00000000983b8000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem56: type=4, attr=0xf, range=[0x00000000983b8000-0x00000000983bf000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem57: type=7, attr=0xf, range=[0x00000000983bf000-0x00000000983c0000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem58: type=4, attr=0xf, range=[0x00000000983c0000-0x00000000998bf000) (20MB)
    Aug 26 09:54:35 machine kernel: efi: mem59: type=7, attr=0xf, range=[0x00000000998bf000-0x0000000099d1e000) (4MB)
    Aug 26 09:54:35 machine kernel: efi: mem60: type=2, attr=0xf, range=[0x0000000099d1e000-0x0000000099d28000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem61: type=3, attr=0xf, range=[0x0000000099d28000-0x000000009a0bf000) (3MB)
    Aug 26 09:54:35 machine kernel: efi: mem62: type=5, attr=0x800000000000000f, range=[0x000000009a0bf000-0x000000009a4bf000) (4MB)
    Aug 26 09:54:35 machine kernel: efi: mem63: type=6, attr=0x800000000000000f, range=[0x000000009a4bf000-0x000000009a6bf000) (2MB)
    Aug 26 09:54:35 machine kernel: efi: mem64: type=0, attr=0xf, range=[0x000000009a6bf000-0x000000009aebf000) (8MB)
    Aug 26 09:54:35 machine kernel: efi: mem65: type=10, attr=0xf, range=[0x000000009aebf000-0x000000009afbf000) (1MB)
    Aug 26 09:54:35 machine kernel: efi: mem66: type=9, attr=0xf, range=[0x000000009afbf000-0x000000009afff000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem67: type=4, attr=0xf, range=[0x000000009afff000-0x000000009b000000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem68: type=7, attr=0xf, range=[0x0000000100000000-0x000000015f600000) (1526MB)
    Aug 26 09:54:35 machine kernel: efi: mem69: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem70: type=0, attr=0x0, range=[0x000000009b000000-0x000000009fa00000) (74MB)
    Aug 26 09:54:35 machine kernel: efi: mem71: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    Aug 26 09:54:35 machine kernel: efi: mem72: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem73: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem74: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem75: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem76: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    Aug 26 09:54:35 machine kernel: efi: mem77: type=11, attr=0x8000000000000000, range=[0x00000000ffd80000-0x0000000100000000) (2MB)
    Aug 26 09:54:35 machine kernel: SMBIOS 2.7 present.
    Aug 26 09:54:35 machine kernel: DMI: Hewlett-Packard HP Pavilion g6 Notebook PC/183E, BIOS F.25 05/29/2013
    Aug 26 09:54:35 machine kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Aug 26 09:54:35 machine kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Aug 26 09:54:35 machine kernel: AGP: No AGP bridge found
    Aug 26 09:54:35 machine kernel: e820: last_pfn = 0x15f600 max_arch_pfn = 0x400000000
    Aug 26 09:54:35 machine kernel: MTRR default type: uncachable
    Aug 26 09:54:35 machine kernel: MTRR fixed ranges enabled:
    Aug 26 09:54:35 machine kernel: 00000-9FFFF write-back
    Aug 26 09:54:35 machine kernel: A0000-BFFFF uncachable
    Aug 26 09:54:35 machine kernel: C0000-E7FFF write-protect
    Aug 26 09:54:35 machine kernel: E8000-EFFFF write-combining
    Aug 26 09:54:35 machine kernel: F0000-FFFFF write-protect
    Aug 26 09:54:35 machine kernel: MTRR variable ranges enabled:
    Aug 26 09:54:35 machine kernel: 0 base 000000000 mask F80000000 write-back
    Aug 26 09:54:35 machine kernel: 1 base 080000000 mask FE0000000 write-back
    Aug 26 09:54:35 machine kernel: 2 base 09B000000 mask FFF000000 uncachable
    Aug 26 09:54:35 machine kernel: 3 base 09C000000 mask FFC000000 uncachable
    Aug 26 09:54:35 machine kernel: 4 base 0FFC00000 mask FFFC00000 write-protect
    Aug 26 09:54:35 machine kernel: 5 base 100000000 mask F80000000 write-back
    Aug 26 09:54:35 machine kernel: 6 base 15F600000 mask FFFE00000 uncachable
    Aug 26 09:54:35 machine kernel: 7 base 15F800000 mask FFF800000 uncachable
    Aug 26 09:54:35 machine kernel: 8 base 160000000 mask FE0000000 uncachable
    Aug 26 09:54:35 machine kernel: 9 disabled
    Aug 26 09:54:35 machine kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Aug 26 09:54:35 machine kernel: e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
    Aug 26 09:54:35 machine kernel: Scanning 1 areas for low memory corruption
    Aug 26 09:54:35 machine kernel: Base memory trampoline at [ffff88000007e000] 7e000 size 24576
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Aug 26 09:54:35 machine kernel: [mem 0x00000000-0x000fffff] page 4k
    Aug 26 09:54:35 machine kernel: BRK [0x02b24000, 0x02b24fff] PGTABLE
    Aug 26 09:54:35 machine kernel: BRK [0x02b25000, 0x02b25fff] PGTABLE
    Aug 26 09:54:35 machine kernel: BRK [0x02b26000, 0x02b26fff] PGTABLE
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x15f400000-0x15f5fffff]
    Aug 26 09:54:35 machine kernel: [mem 0x15f400000-0x15f5fffff] page 2M
    Aug 26 09:54:35 machine kernel: BRK [0x02b27000, 0x02b27fff] PGTABLE
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x15c000000-0x15f3fffff]
    Aug 26 09:54:35 machine kernel: [mem 0x15c000000-0x15f3fffff] page 2M
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x100000000-0x15bffffff]
    Aug 26 09:54:35 machine kernel: [mem 0x100000000-0x15bffffff] page 2M
    Aug 26 09:54:35 machine kernel: BRK [0x02b28000, 0x02b28fff] PGTABLE
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x00100000-0x1fffffff]
    Aug 26 09:54:35 machine kernel: [mem 0x00100000-0x001fffff] page 4k
    Aug 26 09:54:35 machine kernel: [mem 0x00200000-0x1fffffff] page 2M
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x20200000-0x40003fff]
    Aug 26 09:54:35 machine kernel: [mem 0x20200000-0x3fffffff] page 2M
    Aug 26 09:54:35 machine kernel: [mem 0x40000000-0x40003fff] page 4k
    Aug 26 09:54:35 machine kernel: BRK [0x02b29000, 0x02b29fff] PGTABLE
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x40005000-0x9a0befff]
    Aug 26 09:54:35 machine kernel: [mem 0x40005000-0x401fffff] page 4k
    Aug 26 09:54:35 machine kernel: [mem 0x40200000-0x99ffffff] page 2M
    Aug 26 09:54:35 machine kernel: [mem 0x9a000000-0x9a0befff] page 4k
    Aug 26 09:54:35 machine kernel: init_memory_mapping: [mem 0x9afff000-0x9affffff]
    Aug 26 09:54:35 machine kernel: [mem 0x9afff000-0x9affffff] page 4k
    Aug 26 09:54:35 machine kernel: RAMDISK: [mem 0x37976000-0x37cb2fff]
    Aug 26 09:54:35 machine kernel: ACPI: Early table checksum verification disabled
    Aug 26 09:54:35 machine kernel: ACPI: RSDP 0x000000009AFFE014 000024 (v02 HPQOEM)
    Aug 26 09:54:35 machine kernel: ACPI: XSDT 0x000000009AFFE210 0000AC (v01 HPQOEM SLIC-MPC 00000001 HP 01000013)
    Aug 26 09:54:35 machine kernel: ACPI: FACP 0x000000009AFFB000 00010C (v05 HPQOEM SLIC-MPC 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: DSDT 0x000000009AFE9000 00E963 (v01 HPQOEM INSYDE 00000000 INTL 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: FACS 0x000000009AFBA000 000040
    Aug 26 09:54:35 machine kernel: ACPI: UEFI 0x000000009AFFD000 000236 (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: ASF! 0x000000009AFFC000 0000A5 (v32 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: HPET 0x000000009AFFA000 000038 (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: APIC 0x000000009AFF9000 00008C (v03 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: MCFG 0x000000009AFF8000 00003C (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: WDAT 0x000000009AFE8000 000224 (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: SSDT 0x000000009AFE7000 000E21 (v01 HPQOEM INSYDE 00001000 INTL 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: BOOT 0x000000009AFE5000 000028 (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: ASPT 0x000000009AFE3000 000034 (v07 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: DBGP 0x000000009AFE2000 000034 (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: FPDT 0x000000009AFE0000 000044 (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: MSDM 0x000000009AFDF000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: SSDT 0x000000009AFDE000 000968 (v01 HPQOEM INSYDE 00003000 INTL 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: SSDT 0x000000009AFDD000 000B22 (v01 HPQOEM INSYDE 00003000 INTL 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: SSDT 0x000000009AFDA000 001EED (v01 HPQOEM INSYDE 00001000 INTL 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: BGRT 0x000000009AFDC000 000038 (v01 HPQOEM 183E 00000001 HP 00040000)
    Aug 26 09:54:35 machine kernel: ACPI: Local APIC address 0xfee00000
    Aug 26 09:54:35 machine kernel: No NUMA configuration found
    Aug 26 09:54:35 machine kernel: Faking a node at [mem 0x0000000000000000-0x000000015f5fffff]
    Aug 26 09:54:35 machine kernel: Initmem setup node 0 [mem 0x00000000-0x15f5fffff]
    Aug 26 09:54:35 machine kernel: NODE_DATA [mem 0x15f5f7000-0x15f5fbfff]
    Aug 26 09:54:35 machine kernel: [ffffea0000000000-ffffea00057fffff] PMD -> [ffff88015ac00000-ffff88015ebfffff] on node 0
    Aug 26 09:54:35 machine kernel: Zone ranges:
    Aug 26 09:54:35 machine kernel: DMA [mem 0x00001000-0x00ffffff]
    Aug 26 09:54:35 machine kernel: DMA32 [mem 0x01000000-0xffffffff]
    Aug 26 09:54:35 machine kernel: Normal [mem 0x100000000-0x15f5fffff]
    Aug 26 09:54:35 machine kernel: Movable zone start for each node
    Aug 26 09:54:35 machine kernel: Early memory node ranges
    Aug 26 09:54:35 machine kernel: node 0: [mem 0x00001000-0x00087fff]
    Aug 26 09:54:35 machine kernel: node 0: [mem 0x00100000-0x1fffffff]
    Aug 26 09:54:35 machine kernel: node 0: [mem 0x20200000-0x40003fff]
    Aug 26 09:54:35 machine kernel: node 0: [mem 0x40005000-0x9a0befff]
    Aug 26 09:54:35 machine kernel: node 0: [mem 0x9afff000-0x9affffff]
    Aug 26 09:54:35 machine kernel: node 0: [mem 0x100000000-0x15f5fffff]
    Aug 26 09:54:35 machine kernel: On node 0 totalpages: 1020998
    Aug 26 09:54:35 machine kernel: DMA zone: 64 pages used for memmap
    Aug 26 09:54:35 machine kernel: DMA zone: 23 pages reserved
    Aug 26 09:54:35 machine kernel: DMA zone: 3975 pages, LIFO batch:0
    Aug 26 09:54:35 machine kernel: DMA32 zone: 9787 pages used for memmap
    Aug 26 09:54:35 machine kernel: DMA32 zone: 626367 pages, LIFO batch:31
    Aug 26 09:54:35 machine kernel: Normal zone: 6104 pages used for memmap
    Aug 26 09:54:35 machine kernel: Normal zone: 390656 pages, LIFO batch:31
    Aug 26 09:54:35 machine kernel: Reserving Intel graphics stolen memory at 0x9ba00000-0x9f9fffff
    Aug 26 09:54:35 machine kernel: ACPI: PM-Timer IO Port: 0x408
    Aug 26 09:54:35 machine kernel: ACPI: Local APIC address 0xfee00000
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    Aug 26 09:54:35 machine kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    Aug 26 09:54:35 machine kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    Aug 26 09:54:35 machine kernel: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    Aug 26 09:54:35 machine kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Aug 26 09:54:35 machine kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Aug 26 09:54:35 machine kernel: ACPI: IRQ0 used by override.
    Aug 26 09:54:35 machine kernel: ACPI: IRQ2 used by override.
    Aug 26 09:54:35 machine kernel: ACPI: IRQ9 used by override.
    Aug 26 09:54:35 machine kernel: Using ACPI (MADT) for SMP configuration information
    Aug 26 09:54:35 machine kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Aug 26 09:54:35 machine kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    Aug 26 09:54:35 machine kernel: nr_irqs_gsi: 40
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x9a0bf000-0x9a4befff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x9a4bf000-0x9aebefff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x9aebf000-0x9afbefff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x9afbf000-0x9affefff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x9b000000-0x9f9fffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfeafffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
    Aug 26 09:54:35 machine kernel: PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
    Aug 26 09:54:35 machine kernel: e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
    Aug 26 09:54:35 machine kernel: Booting paravirtualized kernel on bare hardware
    Aug 26 09:54:35 machine kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Aug 26 09:54:35 machine kernel: PERCPU: Embedded 29 pages/cpu @ffff88015f200000 s86784 r8192 d23808 u262144
    Aug 26 09:54:35 machine kernel: pcpu-alloc: s86784 r8192 d23808 u262144 alloc=1*2097152
    Aug 26 09:54:35 machine kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Aug 26 09:54:35 machine kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 1005020
    Aug 26 09:54:35 machine kernel: Policy zone: Normal
    Aug 26 09:54:35 machine kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-zen root=UUID=09b369ae-e074-442f-ae02-101a7421b569 rw drm.rnodes=1
    Aug 26 09:54:35 machine kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Aug 26 09:54:35 machine kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Aug 26 09:54:35 machine kernel: AGP: Checking aperture...
    Aug 26 09:54:35 machine kernel: AGP: No AGP bridge found
    Aug 26 09:54:35 machine kernel: Calgary: detecting Calgary via BIOS EBDA area
    Aug 26 09:54:35 machine kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Aug 26 09:54:35 machine kernel: Memory: 3885380K/4083992K available (5370K kernel code, 890K rwdata, 1696K rodata, 1128K init, 1164K bss, 198612K reserved)
    Aug 26 09:54:35 machine kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Aug 26 09:54:35 machine kernel: Preemptible hierarchical RCU implementation.
    Aug 26 09:54:35 machine kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Aug 26 09:54:35 machine kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Aug 26 09:54:35 machine kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    Aug 26 09:54:35 machine kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    Aug 26 09:54:35 machine kernel: NR_IRQS:8448 nr_irqs:744 16
    Aug 26 09:54:35 machine kernel: Console: colour dummy device 80x25
    Aug 26 09:54:35 machine kernel: console [tty0] enabled
    Aug 26 09:54:35 machine kernel: allocated 16777216 bytes of page_cgroup
    Aug 26 09:54:35 machine kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Aug 26 09:54:35 machine kernel: hpet clockevent registered
    Aug 26 09:54:35 machine kernel: tsc: Fast TSC calibration using PIT
    Aug 26 09:54:35 machine kernel: tsc: Detected 2494.477 MHz processor
    Aug 26 09:54:35 machine kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4990.82 BogoMIPS (lpj=8314923)
    Aug 26 09:54:35 machine kernel: pid_max: default: 32768 minimum: 301
    Aug 26 09:54:35 machine kernel: ACPI: Core revision 20140424
    Aug 26 09:54:35 machine kernel: ACPI: All ACPI Tables successfully acquired
    Aug 26 09:54:35 machine kernel: Security Framework initialized
    Aug 26 09:54:35 machine kernel: Yama: becoming mindful.
    Aug 26 09:54:35 machine kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Aug 26 09:54:35 machine kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Aug 26 09:54:35 machine kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Aug 26 09:54:35 machine kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys memory
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys devices
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys freezer
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys net_cls
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys blkio
    Aug 26 09:54:35 machine kernel: Initializing cgroup subsys bfqio
    Aug 26 09:54:35 machine kernel: CPU: Physical Processor ID: 0
    Aug 26 09:54:35 machine kernel: CPU: Processor Core ID: 0
    Aug 26 09:54:35 machine kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    Aug 26 09:54:35 machine kernel: mce: CPU supports 7 MCE banks
    Aug 26 09:54:35 machine kernel: CPU0: Thermal monitoring enabled (TM1)
    Aug 26 09:54:35 machine kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    tlb_flushall_shift: 2
    Aug 26 09:54:35 machine kernel: Freeing SMP alternatives memory: 20K (ffffffff819fa000 - ffffffff819ff000)
    Aug 26 09:54:35 machine kernel: ftrace: allocating 20549 entries in 81 pages
    Aug 26 09:54:35 machine kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Aug 26 09:54:35 machine kernel: smpboot: CPU0: Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz (fam: 06, model: 3a, stepping: 09)
    Aug 26 09:54:35 machine kernel: TSC deadline timer enabled
    Aug 26 09:54:35 machine kernel: Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    Aug 26 09:54:35 machine kernel: ... version: 3
    Aug 26 09:54:35 machine kernel: ... bit width: 48
    Aug 26 09:54:35 machine kernel: ... generic registers: 4
    Aug 26 09:54:35 machine kernel: ... value mask: 0000ffffffffffff
    Aug 26 09:54:35 machine kernel: ... max period: 0000ffffffffffff
    Aug 26 09:54:35 machine kernel: ... fixed-purpose events: 3
    Aug 26 09:54:35 machine kernel: ... event mask: 000000070000000f
    Aug 26 09:54:35 machine kernel: x86: Booting SMP configuration:
    Aug 26 09:54:35 machine kernel: .... node #0, CPUs: #1
    Aug 26 09:54:35 machine kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Aug 26 09:54:35 machine kernel: #2 #3
    Aug 26 09:54:35 machine kernel: x86: Booted up 1 node, 4 CPUs
    Aug 26 09:54:35 machine kernel: smpboot: Total of 4 processors activated (19963.30 BogoMIPS)
    Aug 26 09:54:35 machine kernel: devtmpfs: initialized
    Aug 26 09:54:35 machine kernel: PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
    Aug 26 09:54:35 machine kernel: pinctrl core: initialized pinctrl subsystem
    Aug 26 09:54:35 machine kernel: RTC time: 6:54:21, date: 08/26/14
    Aug 26 09:54:35 machine kernel: NET: Registered protocol family 16
    Aug 26 09:54:35 machine kernel: cpuidle: using governor ladder
    Aug 26 09:54:35 machine kernel: cpuidle: using governor menu
    Aug 26 09:54:35 machine kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Aug 26 09:54:35 machine kernel: ACPI: bus type PCI registered
    Aug 26 09:54:35 machine kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Aug 26 09:54:35 machine kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Aug 26 09:54:35 machine kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Aug 26 09:54:35 machine kernel: PCI: Using configuration type 1 for base access
    Aug 26 09:54:35 machine kernel: ACPI: Added _OSI(Module Device)
    Aug 26 09:54:35 machine kernel: ACPI: Added _OSI(Processor Device)
    Aug 26 09:54:35 machine kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Aug 26 09:54:35 machine kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Aug 26 09:54:35 machine kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Aug 26 09:54:35 machine kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Aug 26 09:54:35 machine kernel: ACPI: Dynamic OEM Table Load:
    Aug 26 09:54:35 machine kernel: ACPI: SSDT 0xFFFF880158F0D000 00083B (v01 PmRef Cpu0Cst 00003001 INTL 20120816)
    Aug 26 09:54:35 machine kernel: ACPI: Dynamic OEM Table Load:
    Aug 26 09:54:35 machine kernel: ACPI: SSDT 0xFFFF880158F59000 000303 (v01 PmRef ApIst 00003000 INTL 20120816)
    Aug 26 09:54:35 machine kernel: ACPI: Dynamic OEM Table Load:
    Aug 26 09:54:35 machine kernel: ACPI: SSDT 0xFFFF880158F11E00 000119 (v01 PmRef ApCst 00003000 INTL 20120816)
    Aug 26 09:54:35 machine kernel: ACPI: Interpreter enabled
    Aug 26 09:54:35 machine kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    Aug 26 09:54:35 machine kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    Aug 26 09:54:35 machine kernel: ACPI: (supports S0 S3 S4 S5)
    Aug 26 09:54:35 machine kernel: ACPI: Using IOAPIC for interrupt routing
    Aug 26 09:54:35 machine kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Aug 26 09:54:35 machine kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    Aug 26 09:54:35 machine kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Aug 26 09:54:35 machine kernel: \_SB_.PCI0:_OSC invalid UUID
    Aug 26 09:54:35 machine kernel: _OSC request data:1 1f 0
    Aug 26 09:54:35 machine kernel: acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    Aug 26 09:54:35 machine kernel: PCI host bridge to bus 0000:00
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    Aug 26 09:54:35 machine kernel: pci 0000:00:02.0: reg 0x10: [mem 0xc3000000-0xc33fffff 64bit]
    Aug 26 09:54:35 machine kernel: pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
    Aug 26 09:54:35 machine kernel: pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    Aug 26 09:54:35 machine kernel: pci 0000:00:14.0: reg 0x10: [mem 0xc3600000-0xc360ffff 64bit]
    Aug 26 09:54:35 machine kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    Aug 26 09:54:35 machine kernel: pci 0000:00:16.0: reg 0x10: [mem 0xc3614000-0xc361400f 64bit]
    Aug 26 09:54:35 machine kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    Aug 26 09:54:35 machine kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xc3619000-0xc36193ff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    Aug 26 09:54:35 machine kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xc3610000-0xc3613fff 64bit]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    Aug 26 09:54:35 machine kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xc3618000-0xc36183ff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: reg 0x10: [io 0x5088-0x508f]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: reg 0x14: [io 0x5094-0x5097]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: reg 0x18: [io 0x5080-0x5087]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x5090-0x5093]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: reg 0x20: [io 0x5060-0x507f]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xc3617000-0xc36177ff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xc3615000-0xc36150ff 64bit]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1f.3: reg 0x20: [io 0x5040-0x505f]
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: [1002:6840] type 00 class 0x030000
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: reg 0x18: [mem 0xc2000000-0xc201ffff 64bit]
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: reg 0x20: [io 0x4000-0x40ff]
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: supports D1 D2
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: PCI bridge to [bus 01-06]
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: bridge window [mem 0xc2000000-0xc2ffffff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:07:00.0: [1814:3290] type 00 class 0x028000
    Aug 26 09:54:35 machine kernel: pci 0000:07:00.0: reg 0x10: [mem 0xc3510000-0xc351ffff]
    Aug 26 09:54:35 machine kernel: pci 0000:07:00.0: PME# supported from D0 D3hot
    Aug 26 09:54:35 machine kernel: pci 0000:07:00.1: [1814:3298] type 00 class 0x0d1100
    Aug 26 09:54:35 machine kernel: pci 0000:07:00.1: reg 0x10: [mem 0xc3500000-0xc350ffff]
    Aug 26 09:54:35 machine kernel: pci 0000:07:00.1: supports D1
    Aug 26 09:54:35 machine kernel: pci 0000:07:00.1: PME# supported from D0 D1 D3hot
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.0: PCI bridge to [bus 07]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.0: bridge window [mem 0xc3500000-0xc35fffff]
    Aug 26 09:54:35 machine kernel: pci 0000:08:00.0: [10ec:8136] type 00 class 0x020000
    Aug 26 09:54:35 machine kernel: pci 0000:08:00.0: reg 0x10: [io 0x3000-0x30ff]
    Aug 26 09:54:35 machine kernel: pci 0000:08:00.0: reg 0x18: [mem 0xc3404000-0xc3404fff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:08:00.0: reg 0x20: [mem 0xc3400000-0xc3403fff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:08:00.0: supports D1 D2
    Aug 26 09:54:35 machine kernel: pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Aug 26 09:54:35 machine kernel: pci 0000:08:00.0: System wakeup disabled by ACPI
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: PCI bridge to [bus 08]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: bridge window [mem 0xc3400000-0xc34fffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:09:00.0: [10ec:5229] type 00 class 0xff0000
    Aug 26 09:54:35 machine kernel: pci 0000:09:00.0: reg 0x10: [mem 0xc1000000-0xc1000fff]
    Aug 26 09:54:35 machine kernel: pci 0000:09:00.0: supports D1 D2
    Aug 26 09:54:35 machine kernel: pci 0000:09:00.0: PME# supported from D1 D2 D3hot
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: PCI bridge to [bus 09-0e]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: bridge window [mem 0xc1000000-0xc1ffffff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: bridge window [mem 0xc0000000-0xc0ffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Aug 26 09:54:35 machine kernel: ACPI: Enabled 4 GPEs in block 00 to 3F
    Aug 26 09:54:35 machine kernel: ACPI : EC: GPE = 0x1d, I/O: command/status = 0x66, data = 0x62
    Aug 26 09:54:35 machine kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Aug 26 09:54:35 machine kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Aug 26 09:54:35 machine kernel: vgaarb: loaded
    Aug 26 09:54:35 machine kernel: vgaarb: bridge control possible 0000:01:00.0
    Aug 26 09:54:35 machine kernel: vgaarb: no bridge control possible 0000:00:02.0
    Aug 26 09:54:35 machine kernel: PCI: Using ACPI for IRQ routing
    Aug 26 09:54:35 machine kernel: PCI: pci_cache_line_size set to 64 bytes
    Aug 26 09:54:35 machine kernel: e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    Aug 26 09:54:35 machine kernel: e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    Aug 26 09:54:35 machine kernel: e820: reserve RAM buffer [mem 0x9a0bf000-0x9bffffff]
    Aug 26 09:54:35 machine kernel: e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
    Aug 26 09:54:35 machine kernel: e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
    Aug 26 09:54:35 machine kernel: NetLabel: Initializing
    Aug 26 09:54:35 machine kernel: NetLabel: domain hash size = 128
    Aug 26 09:54:35 machine kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Aug 26 09:54:35 machine kernel: NetLabel: unlabeled traffic allowed by default
    Aug 26 09:54:35 machine kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Aug 26 09:54:35 machine kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Aug 26 09:54:35 machine kernel: Switched to clocksource hpet
    Aug 26 09:54:35 machine kernel: pnp: PnP ACPI init
    Aug 26 09:54:35 machine kernel: ACPI: bus type PNP registered
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x0680-0x069f] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x1000-0x100f] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0xffff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0xffff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x0400-0x0453] could not be reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x0458-0x047f] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x0500-0x057f] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x164e-0x164f] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x0454-0x0457] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: [io 0x0380-0x0387] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Aug 26 09:54:35 machine kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
    Aug 26 09:54:35 machine kernel: pnp 00:02: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
    Aug 26 09:54:35 machine kernel: pnp 00:03: Plug and Play ACPI device, IDs SYN1e60 SYN1e00 SYN0002 PNP0f13 (active)
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
    Aug 26 09:54:35 machine kernel: system 00:04: [mem 0x9fa00000-0x9fa00fff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    Aug 26 09:54:35 machine kernel: system 00:05: [mem 0x20000000-0x201fffff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:05: [mem 0x40004000-0x40004fff] has been reserved
    Aug 26 09:54:35 machine kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
    Aug 26 09:54:35 machine kernel: pnp: PnP ACPI: found 6 devices
    Aug 26 09:54:35 machine kernel: ACPI: bus type PNP unregistered
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
    Aug 26 09:54:35 machine kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xc2020000-0xc203ffff pref]
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: PCI bridge to [bus 01-06]
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: bridge window [mem 0xc2000000-0xc2ffffff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:01.0: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.0: PCI bridge to [bus 07]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.0: bridge window [mem 0xc3500000-0xc35fffff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: PCI bridge to [bus 08]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.1: bridge window [mem 0xc3400000-0xc34fffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: PCI bridge to [bus 09-0e]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: bridge window [mem 0xc1000000-0xc1ffffff]
    Aug 26 09:54:35 machine kernel: pci 0000:00:1c.2: bridge window [mem 0xc0000000-0xc0ffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:01: resource 1 [mem 0xc2000000-0xc2ffffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:01: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:07: resource 1 [mem 0xc3500000-0xc35fffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:08: resource 2 [mem 0xc3400000-0xc34fffff 64bit pref]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:09: resource 0 [io 0x2000-0x2fff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:09: resource 1 [mem 0xc1000000-0xc1ffffff]
    Aug 26 09:54:35 machine kernel: pci_bus 0000:09: resource 2 [mem 0xc0000000-0xc0ffffff 64bit pref]
    Aug 26 09:54:35 machine kernel: NET: Registered protocol family 2
    Aug 26 09:54:35 machine kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    Aug 26 09:54:35 machine kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    Aug 26 09:54:35 machine kernel: TCP: Hash tables configured (established 32768 bind 32768)
    Aug 26 09:54:35 machine kernel: TCP: reno registered
    Aug 26 09:54:35 machine kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Aug 26 09:54:35 machine kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Aug 26 09:54:35 machine kernel: NET: Registered protocol family 1
    Aug 26 09:54:35 machine kernel: pci 0000:00:02.0: Boot video device
    Aug 26 09:54:35 machine kernel: PCI: CLS 64 bytes, default 64
    Aug 26 09:54:35 machine kernel: Unpacking initramfs...
    Aug 26 09:54:35 machine kernel: Freeing initrd memory: 3316K (ffff880037976000 - ffff880037cb3000)
    Aug 26 09:54:35 machine kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Aug 26 09:54:35 machine kernel: software IO TLB [mem 0x9316c000-0x9716c000] (64MB) mapped at [ffff88009316c000-ffff88009716bfff]
    Aug 26 09:54:35 machine kernel: Simple Boot Flag at 0x44 set to 0x1
    Aug 26 09:54:35 machine kernel: RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
    Aug 26 09:54:35 machine kernel: Scanning for low memory corruption every 60 seconds
    Aug 26 09:54:35 machine kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
    Aug 26 09:54:35 machine kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Aug 26 09:54:35 machine kernel: zbud: loaded
    Aug 26 09:54:35 machine kernel: VFS: Disk quotas dquot_6.5.2
    Aug 26 09:54:35 machine kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Aug 26 09:54:35 machine kernel: msgmni has been set to 7694
    Aug 26 09:54:35 machine kernel: Key type big_key registered
    Aug 26 09:54:35 machine kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Aug 26 09:54:35 machine kernel: io scheduler noop registered
    Aug 26 09:54:35 machine kernel: io scheduler deadline registered
    Aug 26 09:54:35 machine kernel: io scheduler cfq registered
    Aug 26 09:54:35 machine kernel: io scheduler bfq registered (default)
    Aug 26 09:54:35 machine kernel: BFQ I/O-scheduler version: v7r5
    Aug 26 09:54:35 machine kernel: pcieport 0000:00:01.0: device [8086:0151] has invalid IRQ; check vendor BIOS
    Aug 26 09:54:35 machine kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    Aug 26 09:54:35 machine kernel: pcieport 0000:00:1c.0: device [8086:1e10] has invalid IRQ; check vendor BIOS
    Aug 26 09:54:35 machine kernel: pcieport 0000:00:1c.1: device [8086:1e12] has invalid IRQ; check vendor BIOS
    Aug 26 09:54:35 machine kernel: pcieport 0000:00:1c.2: device [8086:1e14] has invalid IRQ; check vendor BIOS
    Aug 26 09:54:35 machine kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Aug 26 09:54:35 machine kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Aug 26 09:54:35 machine kernel: efifb: probing for efifb
    Aug 26 09:54:35 machine kernel: efifb: framebuffer at 0xb0000000, mapped to 0xffffc90010800000, using 4160k, total 4160k
    Aug 26 09:54:35 machine kernel: efifb: mode is 1366x768x32, linelength=5504, pages=1
    Aug 26 09:54:35 machine kernel: efifb: scrolling: redraw
    Aug 26 09:54:35 machine kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Aug 26 09:54:35 machine kernel: Console: switching to colour frame buffer device 170x48
    Aug 26 09:54:35 machine kernel: fb0: EFI VGA frame buffer device
    Aug 26 09:54:35 machine kernel: intel_idle: MWAIT substates: 0x21120
    Aug 26 09:54:35 machine kernel: intel_idle: v0.4 model 0x3A
    Aug 26 09:54:35 machine kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Aug 26 09:54:35 machine kernel: GHES: HEST is not enabled!
    Aug 26 09:54:35 machine kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Aug 26 09:54:35 machine kernel: Linux agpgart interface v0.103
    Aug 26 09:54:35 machine kernel: rtc_cmos 00:01: RTC can wake from S4
    Aug 26 09:54:35 machine kernel: rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
    Aug 26 09:54:35 machine kernel: rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
    Aug 26 09:54:35 machine kernel: Intel P-state driver initializing.
    Aug 26 09:54:35 machine kernel: Intel pstate controlling: cpu 0
    Aug 26 09:54:35 machine kernel: Intel pstate controlling: cpu 1
    Aug 26 09:54:35 machine kernel: Intel pstate controlling: cpu 2
    Aug 26 09:54:35 machine kernel: Intel pstate controlling: cpu 3
    Aug 26 09:54:35 machine kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Aug 26 09:54:35 machine kernel: TCP: vegas registered
    Aug 26 09:54:35 machine kernel: TCP: yeah registered
    Aug 26 09:54:35 machine kernel: NET: Registered protocol family 10
    Aug 26 09:54:35 machine kernel: NET: Registered protocol family 17
    Aug 26 09:54:35 machine kernel: registered taskstats version 1
    Aug 26 09:54:35 machine kernel: Magic number: 10:491:924
    Aug 26 09:54:35 machine kernel: rtc_cmos 00:01: setting system clock to 2014-08-26 06:54:21 UTC (1409036061)
    Aug 26 09:54:35 machine kernel: PM: Hibernation image not present or could not be loaded.
    Aug 26 09:54:35 machine kernel: Freeing unused kernel memory: 1128K (ffffffff818e0000 - ffffffff819fa000)
    Aug 26 09:54:35 machine kernel: Write protecting the kernel read-only data: 8192k
    Aug 26 09:54:35 machine kernel: Freeing unused kernel memory: 764K (ffff880002541000 - ffff880002600000)
    Aug 26 09:54:35 machine kernel: Freeing unused kernel memory: 352K (ffff8800027a8000 - ffff880002800000)
    Aug 26 09:54:35 machine kernel: CFS CPU scheduler.
    Aug 26 09:54:35 machine kernel: random: systemd-tmpfile urandom read with 18 bits of entropy available
    Aug 26 09:54:35 machine systemd-udevd[58]: starting version 215
    Aug 26 09:54:35 machine kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Aug 26 09:54:35 machine kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Aug 26 09:54:35 machine kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Aug 26 09:54:35 machine kernel: ACPI: bus type USB registered
    Aug 26 09:54:35 machine kernel: usbcore: registered new interface driver usbfs
    Aug 26 09:54:35 machine kernel: usbcore: registered new interface driver hub
    Aug 26 09:54:35 machine kernel: usbcore: registered new device driver usb
    Aug 26 09:54:35 machine kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Aug 26 09:54:35 machine kernel: ehci-pci: EHCI PCI platform driver
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1a.0: debug port 2
    Aug 26 09:54:35 machine kernel: rtsx_pci 0000:09:00.0: irq 41 for MSI/MSI-X
    Aug 26 09:54:35 machine kernel: rtsx_pci 0000:09:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 41
    Aug 26 09:54:35 machine kernel: SCSI subsystem initialized
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xc3619000
    Aug 26 09:54:35 machine kernel: libata version 3.00 loaded.
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    Aug 26 09:54:35 machine kernel: hub 1-0:1.0: USB hub found
    Aug 26 09:54:35 machine kernel: hub 1-0:1.0: 2 ports detected
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1d.0: debug port 2
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1d.0: irq 20, io mem 0xc3618000
    Aug 26 09:54:35 machine kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    Aug 26 09:54:35 machine kernel: hub 2-0:1.0: USB hub found
    Aug 26 09:54:35 machine kernel: hub 2-0:1.0: 2 ports detected
    Aug 26 09:54:35 machine kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    Aug 26 09:54:35 machine kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
    Aug 26 09:54:35 machine kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    Aug 26 09:54:35 machine kernel: xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
    Aug 26 09:54:35 machine kernel: hub 3-0:1.0: USB hub found
    Aug 26 09:54:35 machine kernel: hub 3-0:1.0: 4 ports detected
    Aug 26 09:54:35 machine kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
    Aug 26 09:54:35 machine kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
    Aug 26 09:54:35 machine kernel: hub 4-0:1.0: USB hub found
    Aug 26 09:54:35 machine kernel: hub 4-0:1.0: 4 ports detected
    Aug 26 09:54:35 machine kernel: ahci 0000:00:1f.2: version 3.0
    Aug 26 09:54:35 machine kernel: ahci 0000:00:1f.2: irq 43 for MSI/MSI-X
    Aug 26 09:54:35 machine kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Aug 26 09:54:35 machine kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x11 impl SATA mode
    Aug 26 09:54:35 machine kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
    Aug 26 09:54:35 machine kernel: scsi0 : ahci
    Aug 26 09:54:35 machine kernel: scsi1 : ahci
    Aug 26 09:54:35 machine kernel: scsi2 : ahci
    Aug 26 09:54:35 machine kernel: scsi3 : ahci
    Aug 26 09:54:35 machine kernel: scsi4 : ahci
    Aug 26 09:54:35 machine kernel: scsi5 : ahci
    Aug 26 09:54:35 machine kernel: ata1: SATA max UDMA/133 abar m2048@0xc3617000 port 0xc3617100 irq 43
    Aug 26 09:54:35 machine kernel: ata2: DUMMY
    Aug 26 09:54:35 machine kernel: ata3: DUMMY
    Aug 26 09:54:35 machine kernel: ata4: DUMMY
    Aug 26 09:54:35 machine kernel: ata5: SATA max UDMA/133 abar m2048@0xc3617000 port 0xc3617300 irq 43
    Aug 26 09:54:35 machine kernel: ata6: DUMMY
    Aug 26 09:54:35 machine kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
    Aug 26 09:54:35 machine kernel: ata1: SATA l

    It was already hooked, however, I moved it from the last line to this: `HOOKS="colors base udev autodetect fsck modconf block filesystems keyboard"`
    Not a change. It, I guess only works on the root partition.
    I just ran a `fsck /dev/sdaX` from the emergency console after unmounting it. Problem is solved but the bug is, I guess is still there.
    Thank you anyway.

  • Custom kernel (2.6.31) - USB Mouse & Keyboard not working [solved]

    So I've just recompiled the new kernel (2.6.31) as a custom, as is my custom!
    USB Mouse and keyboard no worky (but do as PS/2).
    As a quick thing to check - what kernel .config settings haven't I enabled properly? A quick check though and everything SEEMS to be in order.
    The stock 2.6.31 kernel works fine with the USB inputs.
    Thanks in advance.
    [solved] I realised I was operating off an older kernel26 package (2.6.30), so synching abs and rebuilding using the 2.6.31 package and leaving a few more stock options enabled, seems to have worked.
    Last edited by sultanoswing (2009-10-12 11:46:36)

    sry, idk how to get the error output of a compiled package via mkpkg. i know its a weird error...
    has anyone tryed to open my kerenel configuration with a graphical cofiguration font end, and to see if the 3945 wireless module is marked as module? when i do it its not aviable. maybe today ill find some time to do the config and compile...
    my arch: x86 ; core duo; pentium m (kernel-processor-type); -march=prescott -O2 -pipe -fomit-frame-pointer
    yeah, config from testing *.31 works fine, but the job needs to be done to strip out all useless stuff out of that general kernel

  • Recent HP encryption v.8.6.14.20ap1 update bricks my Elitebook 820 G1

    Every time I install HP Drive Encryption v.8.6.14.20ap1 (SP71113) as prompted by HP Support Assitant my laptop blue screens when attemtping to reboot.   The Error Message flashes up too quickly to read & I can recover the laptop to a recovery point & get it working again, but I want this update if possible. I have switched off all HP Security levels prior to the install & I do not, and have not had HP Drive Encryption activated before on this partiular machine. BIOS is upto date as is every other prompted update. Any ideas what is causing this or is anyone else experiencing the same issue? OS: Win7 64bit home edt. 

    sry, idk how to get the error output of a compiled package via mkpkg. i know its a weird error...
    has anyone tryed to open my kerenel configuration with a graphical cofiguration font end, and to see if the 3945 wireless module is marked as module? when i do it its not aviable. maybe today ill find some time to do the config and compile...
    my arch: x86 ; core duo; pentium m (kernel-processor-type); -march=prescott -O2 -pipe -fomit-frame-pointer
    yeah, config from testing *.31 works fine, but the job needs to be done to strip out all useless stuff out of that general kernel

  • XQuery - In search of alternatives for "ora:view"

    Instead of the following XQuery statement, what could be alternatives, regarding re-writing the statement, via options like:
    - xmltable
    - xsql
    - xpath
    - table(xmlsequence())
    - etc
    So I am looking for alternative statements and/or an alternative for ora:view
    Thanks for the effort
    Marco
    xquery
    let $auction := ora:view("XMLType_Table") return
    for $b in $auction/site/people/person[@id = "person0"] return $b/name/text()
    /Edited by: Marco Gralike on Oct 19, 2008 3:48 PM

    The file is to big to fit in VARCHAR2, so therefore it was loaded via the bfilename method.
    Content of file X.XML in directory C:\TEMP
    <?xml version="1.0" standalone="yes"?>
    <site>
    <regions>
    <africa>
    <item id="item0">
    <location>United States</location>
    <quantity>1</quantity>
    <name>duteous nine eighteen </name>
    <payment>Creditcard</payment>
    <description>
    <parlist>
    <listitem>
    <text>
    page rous lady idle authority capt professes stabs monster petition heave humbly removes rescue runs shady peace most piteous worser oak assembly holes patience but malice whoreson mirrors master tenants smocks yielded <keyword> officer embrace such fears distinction attires </keyword>
    </text>
    </listitem>
    <listitem>
    <text>
    shepherd noble supposed dotage humble servilius bitch theirs venus dismal wounds gum merely raise red breaks earth god folds closet captain dying reek
    </text>
    </listitem>
    </parlist>
    </description>
    <shipping>Will ship internationally, See description for charges</shipping>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <mailbox>
    <mail>
    <from>Dominic Takano mailto:[email protected]</from>
    <to>Mechthild Renear mailto:[email protected]</to>
    <date>10/12/1999</date>
    <text>
    asses scruple learned crowns preventions half whisper logotype weapons doors factious already pestilent sacks dram atwain girdles deserts flood park lest graves discomfort sinful conceiv therewithal motion stained preventions greatly suit observe sinews enforcement <emph> armed </emph> gold gazing set almost catesby turned servilius cook doublet preventions shrunk
    </text>
    </mail>
    </mailbox>
    </item>
    </africa>
    <asia>
    <item id="item1">
    <location>United States</location>
    <quantity>1</quantity>
    <name>great </name>
    <payment>Money order, Cash</payment>
    <description>
    <text>
    print deceit arming ros apes unjustly oregon spring hamlet containing leaves italian turn <bold> spirit model favour disposition </bold> approach charg gold promotions despair flow assured terror assembly marry concluded author debase get bourn openly gonzago wisest bane continue cries
    </text>
    </description>
    <shipping>Will ship internationally</shipping>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <mailbox>
    <mail>
    <from>Fumitaka Cenzer mailto:[email protected]</from>
    <to>Lanju Takano mailto:[email protected]</to>
    <date>02/24/2000</date>
    <text>
    entreaty hath fowl prescience bounds roof fiend intellect boughs caught add jests feelingly doubt trojans wisdom greatness tune worship doors fields reads canst france pay progeny wisdom stir mov impious promis clothes hangman trebonius choose men fits preparation <keyword> benefit since eclipse gates </keyword>
    </text>
    </mail>
    <mail>
    <from>Papa Godskesen mailto:[email protected]</from>
    <to>Ioana Blumberg mailto:[email protected]</to>
    <date>08/02/2001</date>
    <text>
    jealousy back greg folded gauntlets conduct hardness across sickness peter enough royal herb embrace piteous die servilius avoid <keyword> laying chance dungeons pleasant thyself fellow purse steward heaven ambassador terrible doubtfully </keyword> milk sky clouds unbraced put sacrifices seas childish longer flout heavy pitch rosalind orderly music delivery appease
    </text>
    </mail>
    </mailbox>
    </item>
    </asia>
    <australia>
    <item id="item2">
    <location>United States</location>
    <quantity>1</quantity>
    <name>scarce brook </name>
    <payment></payment>
    <description>
    <parlist>
    <listitem>
    <text>
    senses concave valiant star further instruments bankrupts countrymen horrid costard youth necessity tend curiously waken witness navy there honest interest perceive defendant chief traffic where nuptial descent travel prepare agreed voices swears remember peerless doing <keyword> preparation rejoice </keyword>
    </text>
    </listitem>
    <listitem>
    <text>
    swear canker barbarian parching coxcomb excess conspiring nobles sounded consider sayings fishified prime may spirit <emph> untruths misgives choughs mew here garments tenfold </emph> error discontent hung beatrice straight muse shame deep twice mann maecenas any conveyance fingers whereupon child case <keyword> season presently victory women beating </keyword> deprive almost wed dreams slew reveal
    </text>
    </listitem>
    <listitem>
    <text>
    spotted attend burden camillo field enlarge stead corporal ground tormenting <bold> naturally sanctuary riddle exile coming awake senseless chance famous albans </bold> service cricket limb from clouds amongst shore penker defend quantity dumb churlish uncover swung eros figur sulphur sky birth stare negligent unction shield instance ambition gate injury fort put infants find slavish hugh see afterwards slanders chides eyes minds alb loved endure combating voyage
    </text>
    </listitem>
    <listitem>
    <parlist>
    <listitem>
    <text>
    maintained peril rivall suddenly finds studies weary truth indulgence anatomy assisted imminent may excepted yonder aches regal
    </text>
    </listitem>
    <listitem>
    <text>
    <bold> friar prophetess </bold> spirits delays turning cassio finding unpractis steel sweets promises credulity err nym complete star greatly mope sorry experience virtues been offending bed drives faction learnt hurl eleven huge
    </text>
    </listitem>
    <listitem>
    <text>
    piece hours cruelly april league winged <keyword> tract element sails course placed fouler four plac joint </keyword> words blessing fortified loving forfeit doctor valiant crying wife county planet charge haughty precious alexander longboat bells lewd kingdoms knife giver frantic raz commend sit sovereignty engaged perceive its art alliance forge bestow perforce complete roof fie confident raging possible cassio teen crave park reign lords sounded our requite fourth confidence high
    </text>
    </listitem>
    </parlist>
    </listitem>
    <listitem>
    <parlist>
    <listitem>
    <text>
    sent fled bids oswald help answer artillery jealous hugh fingers gladly mows our craving <emph> preventions spurr edmund drunk how faction quickly bolingbroke painfully </emph> valorous line clasp cheek patchery encompassed honest after auspicious home engaged prompt mortimer bird dread jephthah prithee unfold deeds fifty goose either herald temperance coctus took sought fail each ado checking funeral thinks linger advantage bag ridiculous along accomplishment flower glittering school disguis portia beloved crown sheets garish rather forestall vaults doublet embassy ecstasy crimson rheum befall sin devout pedro little exquisite mote messenger lancaster hideous object arrows smites gently skins bora parting desdemona longing third throng character hat sov quit mounts true house field nearest lucrece tidings fought logotype eaten commanding treason censur ripe praises windsor temperate jealous made sleeve scorn throats fits uncape tended science preventions preventions high pipes reprieves <bold> sold </bold> marriage sampson safety distrust witch christianlike plague doubling visited with bleed offenders catching attendants <emph> cars livery stand </emph> denay <keyword> cimber paper admittance tread character </keyword> battlements seen dun irish throw redeem afflicts suspicion
    </text>
    </listitem>
    <listitem>
    <text>
    traduc barks twenty secure pursuit believing necessities longs mental lack further observancy uncleanly understanding vault athens lucius sleeps nor safety evidence repay whensoever senses proudest restraint love mouths slaves water athenian willingly hot grieves delphos pavilion sword indeed lepidus taking disguised proffer salt before educational streets things osw rey stern lap studies finger doomsday pots bounty famous manhood observe hopes unless languish <keyword> transformed nourish breeds north </keyword>
    </text>
    </listitem>
    </parlist>
    </listitem>
    </parlist>
    </description>
    <shipping>Will ship internationally</shipping>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <mailbox>
    <mail>
    <from>Aspi L'Ecuyer mailto:L'[email protected]</from>
    <to>Lesley Jeris mailto:[email protected]</to>
    <date>10/09/1998</date>
    <text>
    necessities chains rosencrantz house heed course lawn diest unvirtuous supposed sees chough swor numbers game roman soundest wrestler sky lodovico beast shivers desolate norfolk forgot paulina wars george while beggar sheath thursday capable presently his protector father orchard enemies believe drains tokens prison charge cloud stab york mild scene true devotion confidence hundred those guiltless pricks sort himself mutiny officers directive wholesome edge acts dion ride draw brings custom chapless beside sex dowry casca goods priam blasphemy prick octavia brain curer thinkest idiot inward missing conspiracy tents scab inundation caesar officer dramatis
    </text>
    </mail>
    </mailbox>
    </item>
    </australia>
    <europe>
    <item id="item3">
    <location>Uzbekistan</location>
    <quantity>1</quantity>
    <name>abhorr execution beckon rue </name>
    <payment>Money order, Creditcard, Cash</payment>
    <description>
    <parlist>
    <listitem>
    <text>
    <keyword> perjur kills insanie unfortunate conjuration deeper confounded belied first guard </keyword> pale profits height desir ashore france strength kept entrench poisons worth fought ignorance moody poniards speaks jack egg offspring victory food double emperor round jewel abbey apparel untainted lass protest start wings acquit lake lady battles further low thief try brook cake mounted officers dean shrunk lowness dew sandy prologue armies suspicion eighty advance thankfulness albany ended experience halt doubted wert kingdom fiend directed pair perhaps
    </text>
    </listitem>
    <listitem>
    <text>
    prayer odds rend condemn conrade swearing dispos losses boar little from thought different couch respected human robe dictynna later pays edward babe distemper bards damned mayst sustain while self alcibiades listen weak soil <keyword> view presume loggets feed </keyword> afoot yields erection balthasar fathers datchet thankless lear cause evil cheerfully instance tarried because cough ancient testimony tarquin cousin reported porter beastly jade bark sex slack lear devil devoured amiable mason moss shoulders labour meanest feign eggs encount forbid enobarbus halters nam emilia fiends bearing food inheritor wiser <emph> hedge </emph> functions there capital greasy dark crush your sequest between devout thou strikes demand dost reverent conference least told ado modena jealousy nunnery mistrust nightly worthy closes tall proudly fierce receive nearness safer jacks shut dire mates wind unfortunate monsieur parcels sauced extremities throat dog empty treasury etc detested stand taxations edges mourner sue knavery unlook perseus diadem heartily peer tut compounded art reconcile study thought cockatrice money pity intend thing claud edmund throws torments ropes contrive story slain advise lecher ardea relics keeping treads buckingham defences lag neighbour ourself marshal disordered moderate venus afeard article rot hazards craft crowns <emph> plainness patient </emph> lying knowledge diseases meritorious medicine instead lid happy without them bands answer
    </text>
    </listitem>
    </parlist>
    </description>
    <shipping>Will ship only within country</shipping>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <mailbox>
    </mailbox>
    </item>
    </europe>
    <namerica>
    <item id="item4">
    <location>United States</location>
    <quantity>1</quantity>
    <name>unsur brutish </name>
    <payment>Money order, Creditcard</payment>
    <description>
    <parlist>
    <listitem>
    <text>
    prepar likelihood eagle body walk borachio month writing left speed patents coach through protectorship congruent confusion favours following populous garden henceforth shoots function fourscore mangled favorably slain secretly vice distinguish bardolph content hence boy worse bring usurers stew beard longed creep hid pursuivant beholders senators son mercutio woo bestow trumpet excess muffler pick ugly felt causes remove adding tear often rounds underbearing tree purer kibes endless women benefit throw <emph> claim firmness <keyword> arrived sees wrestled multitude repent preventions infamy reproof shalt hearted prais knave doubtless </keyword> deny </emph> merely grave voluble late loath digest horn slave hunger stronger amazed salt killing ross cry dry tongue kiss yields auspicious quietness perpetual ways
    </text>
    </listitem>
    <listitem>
    <text>
    court mean returning brook creatures appointed paunches henry sights west prunes flutes regiment seems bed musicians slumber post friendship prevention abreast wouldst words vexation builds unfelt holly walk inform moods deck bulk begin action school nobles antique people unkennel stomach into petitions jack assail yongrey ages betimes golden sink droop kernel hoppedance perfection weight <emph> whining safe english rod other featur </emph> betwixt orator across amiss mine guests guard yon willing remit longing goneril visitation honey
    </text>
    </listitem>
    </parlist>
    </description>
    <shipping>Will ship only within country, Buyer pays fixed shipping charges, See description for charges</shipping>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <mailbox>
    <mail>
    <from>Honari Castan mailto:[email protected]</from>
    <to>Maz Lucky mailto:[email protected]</to>
    <date>01/24/1998</date>
    <text>
    scene disposition substance prick counsel start temples
    </text>
    </mail>
    </mailbox>
    </item>
    </namerica>
    <samerica>
    <item id="item5">
    <location>United States</location>
    <quantity>1</quantity>
    <name>nakedness </name>
    <payment>Creditcard, Personal Check, Cash</payment>
    <description>
    <text>
    music sift kissing design airy office dismantled hope reconcil combat wert quite translate overcome unthrifty <emph> fell othello <bold> wolf entreat audaciously down sands sports pilgrimage duellist league holiday cheek that tables merrily knot selves ionia impure </bold> prophet draw throwing solemn yonder </emph> rightful foam worthless polack veronesa antony beget thereby carry untread hales
    </text>
    </description>
    <shipping>Will ship only within country, Will ship internationally</shipping>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <incategory category="category0"/>
    <mailbox>
    </mailbox>
    </item>
    </samerica>
    </regions>
    <categories>
    <category id="category0">
    <name>dispatch reported dotard holofernes </name>
    <description>
    <parlist>
    <listitem>
    <text>
    shift carrion doubtful strangle sounding crowned troubled naked yesterday overthrow owe silent recount waters derive sans four
    </text>
    </listitem>
    <listitem>
    <parlist>
    <listitem>
    <text>
    fragment pamper arthur thrive wound fouler streets preventions obey vow bawds myrtle said infinite montague fierce sense ride souls commended gainsay profession labour intents persuade alter
    </text>
    </listitem>
    <listitem>
    <text>
    ord villain wore thunder congeal pawned alack customary deny faithful top office spoken please neighbour office afternoon drum embowell touch sue lifeless leapt called weary congregation yield
    </text>
    </listitem>
    <listitem>
    <text>
    mental fatal hard ancient stands cor dishes therein gramercy discipline farewell dire tricks protest cut horatio brother speech sleeping adultress pitch cave liv nurse drink state plants combating desired requir rebellion afraid repented tree scald stopp wine advise undermine norfolk vilely whet scars companions hanging foolish scene musty fruitful unburthen teacher garments betimes sight now for oaths vouchsafe particulars globe laertes afflictions rouse once news humanity buck destroy military lucius lap <keyword> considered forc mourning verona </keyword> waters triumphing officer hastily <emph> resign subject figure hay thwart written signs gout bred distance period glove players change folly </emph> going wat lost song hautboys pick business crocodile leading cave twice frenzy sprightly dislike invite forbids morn devour ambassador seldom speak tickling rejoice triumphant ascanius forward
    </text>
    </listitem>
    </parlist>
    </listitem>
    </parlist>
    </description>
    </category>
    </categories>
    <catgraph>
    <edge from="category0" to="category0"/>
    </catgraph>
    <people>
    <person id="person0">
    <name>Jaak Tempesti</name>
    <emailaddress>mailto:[email protected]</emailaddress>
    <phone>+0 (873) 14873867</phone>
    <homepage>http://www.labs.com/~Tempesti</homepage>
    <creditcard>5048 5813 2703 8253</creditcard>
    <watches>
    <watch open_auction="open_auction0"/>
    </watches>
    </person>
    </people>
    <open_auctions>
    <open_auction id="open_auction0">
    <initial>13.56</initial>
    <reserve>33.78</reserve>
    <bidder>
    <date>10/22/2001</date>
    <time>10:21:43</time>
    <personref person="person0"/>
    <increase>55.50</increase>
    </bidder>
    <bidder>
    <date>07/27/2001</date>
    <time>12:36:50</time>
    <personref person="person0"/>
    <increase>19.50</increase>
    </bidder>
    <bidder>
    <date>02/14/2000</date>
    <time>16:40:16</time>
    <personref person="person0"/>
    <increase>19.50</increase>
    </bidder>
    <bidder>
    <date>05/09/2001</date>
    <time>11:39:57</time>
    <personref person="person0"/>
    <increase>30.00</increase>
    </bidder>
    <bidder>
    <date>07/12/1999</date>
    <time>23:20:27</time>
    <personref person="person0"/>
    <increase>13.50</increase>
    </bidder>
    <bidder>
    <date>10/21/2001</date>
    <time>01:19:47</time>
    <personref person="person0"/>
    <increase>3.00</increase>
    </bidder>
    <bidder>
    <date>09/28/2001</date>
    <time>17:03:24</time>
    <personref person="person0"/>
    <increase>6.00</increase>
    </bidder>
    <bidder>
    <date>11/15/1999</date>
    <time>14:23:15</time>
    <personref person="person0"/>
    <increase>9.00</increase>
    </bidder>
    <bidder>
    <date>01/02/1998</date>
    <time>22:18:07</time>
    <personref person="person0"/>
    <increase>1.50</increase>
    </bidder>
    <bidder>
    <date>12/24/2001</date>
    <time>16:46:32</time>
    <personref person="person0"/>
    <increase>13.50</increase>
    </bidder>
    <bidder>
    <date>08/12/2000</date>
    <time>11:41:54</time>
    <personref person="person0"/>
    <increase>3.00</increase>
    </bidder>
    <bidder>
    <date>11/15/2000</date>
    <time>15:53:40</time>
    <personref person="person0"/>
    <increase>6.00</increase>
    </bidder>
    <bidder>
    <date>03/04/2000</date>
    <time>20:46:15</time>
    <personref person="person0"/>
    <increase>16.50</increase>
    </bidder>
    <bidder>
    <date>07/22/1998</date>
    <time>10:34:11</time>
    <personref person="person0"/>
    <increase>25.50</increase>
    </bidder>
    <bidder>
    <date>04/01/1998</date>
    <time>10:44:22</time>
    <personref person="person0"/>
    <increase>7.50</increase>
    </bidder>
    <current>243.06</current>
    <itemref item="item0"/>
    <seller person="person0"/>
    <annotation>
    <author person="person0"/>
    <description>
    <text>
    debauch corpse canons domain night forsake yea satisfy between fume were monsters ear players moreover ungentleness sorrows prouder tonight favours rome bastard unshown excellence journey loves swearing proceeds stone buck battle breathless kindness prophesy entomb urging rogues hector conquer provoke nothing raw wight places needy feasted romeo rivers worser occupation brook stoops brooch plucks level samp tent windsor rubs whereof beam signior built suff heavy dull husbands roman favour urge spear gone wolf cheeks execute resolv such horrid drives provide twice spoke trade friar taking pheasant sentenc scarf corrections brothers charge spur ass agamemnon truepenny saves roots practis impatient diest didest starv seeing beneath interpose gods home black forgot snuff dress dozen napkins <emph> countess northumberland headlong needless angry pleading </emph> better joy <emph> meagre </emph> reap enquire crab wales died violent rear past liberty <emph> braggart armour infer bankrupt winds teeth </emph> case wore pouch crows cognition <keyword> reports expedition free chief cressida hearsed </keyword> loath monuments silent congregation soon farm doct ross susan ready empty dedicate shilling whole soul foot beseech higher lifeless hay postmaster distress disposition <bold> inherits </bold> marcus betters pitch betray beam corse player quality ros conduct thersites greediness boast pilgrims startles contented belch hung thus captain early blood par brook jul gain needs above ensign grapes revelling glean thank
    </text>
    </description>
    <happiness>6</happiness>
    </annotation>
    <quantity>1</quantity>
    <type>Regular</type>
    <interval>
    <start>06/16/1999</start>
    <end>05/12/2001</end>
    </interval>
    </open_auction>
    </open_auctions>
    <closed_auctions>
    <closed_auction>
    <seller person="person0"/>
    <buyer person="person0"/>
    <itemref item="item1"/>
    <price>113.87</price>
    <date>06/06/2000</date>
    <quantity>1</quantity>
    <type>Regular</type>
    <annotation>
    <author person="person0"/>
    <description>
    <parlist>
    <listitem>
    <parlist>
    <listitem>
    <text>
    farewells religion fetch bells rage names valued exeunt soul albans ungently advised serving ratcliff braggarts knowest desp sheep died repeat toy corrupted michael help dunghill trembles pill reap office early secure desires hated garland carriage impatient deserts feel challenger evil <bold> editions depart laur hereford richer </bold>
    </text>
    </listitem>
    <listitem>
    <text>
    proudest lust approve rey should spectacles fiery perfect worshipp foul quod yes remorse young tyburn thrust attending spear shun doctor wild
    </text>
    </listitem>
    </parlist>
    </listitem>
    <listitem>
    <text>
    throng grandam awak helpless ventidius tread defeat teem durst wonderful attaint chaste sees fulfill mortality arme expedient attendants themselves performed leading sing villain skill store mischief see consciences sail text speed sons spleen die oft girl atomies commodity honor fall stopp they
    </text>
    </listitem>
    <listitem>
    <text>
    rain pays spilling rancour reasons grieves camp bachelor crow can whom soldiers growth invite less for vaughan properties <keyword> record penury herself reasons merits villainous whereupon wrote penny mar </keyword> preventions followed best eternity bestow blots rocks barnardine torn cassio tailor fame forfeit triumphant conceived deem cowardly merciful topgallant flint purgation whosoever ventidius befits forever bankrupt choughs stains certain violated burgundy shadows possesseth men repent predominant burns revelry swore prodigious next tyrant oath noses apart balth trade feasting field importunity expect experience kingly stay babe hopes liege astonished suspicion unmannerd alexander crown soil committed god stately incensed trance oracle slowness fast princes damned corn grandsire change tender end fields slain palm softly samp shore notion herod messengers horseman <bold> riggish </bold> quirks shut thence beware jewels sland preventions has sells assails influences oppression pow maggot caught methought mechanical durst liker not seat <emph> assigns flesh made his third <keyword> seemeth </keyword> peril gain they stroke forsworn scape full determin professes commons </emph> lordship clear operation practice pyrrhus earnest broke devil posterity company text misbegotten oregon strike saw arthur earnestly brow popilius ugly serves presentation commandment metal comparing thereon true secretly gallows preventions horridly slack lieutenant hers stop clown rosalinde wed pretty wildly
    </text>
    </listitem>
    </parlist>
    </description>
    <happiness>9</happiness>
    </annotation>
    </closed_auction>
    <closed_auction>
    <seller person="person0"/>
    <buyer person="person0"/>
    <itemref item="item2"/>
    <price>96.92</price>
    <date>12/05/2001</date>
    <quantity>1</quantity>
    <type>Featured</type>
    <annotation>
    <author person="person0"/>
    <description>
    <text>
    hitherto queen painted seat fords clay recall countryman divided delicate mocking active bills filth pledge surrender madness sufficiency moved converse goot claw show edmundsbury torment tough fish mediators tarquin pyrrhus <keyword> heathen </keyword>
    </text>
    </description>
    <happiness>6</happiness>
    </annotation>
    </closed_auction>
    <closed_auction>
    <seller person="person0"/>
    <buyer person="person0"/>
    <itemref item="item3"/>
    <price>53.85</price>
    <date>05/11/1999</date>
    <quantity>1</quantity>
    <type>Featured</type>
    <annotation>
    <author person="person0"/>
    <description>
    <text>
    strives occasion question sticks shall ingenious sinews liquid ashy gentlewomen authority assay hole selves living near doting modest wiltshire mocker eton profess forgeries butt wade lawful maccabaeus wert forced succeeding becomes wayward got
    </text>
    </description>
    <happiness>6</happiness>
    </annotation>
    </closed_auction>
    <closed_auction>
    <seller person="person0"/>
    <buyer person="person0"/>
    <itemref item="item4"/>
    <price>123.52</price>
    <date>02/11/1999</date>
    <quantity>1</quantity>
    <type>Regular</type>
    <annotation>
    <author person="person0"/>
    <description>
    <text>
    vowed keys imperial were swinstead forsake cat aliena spies crave requite forfeit doctor <emph> possess </emph> aught demand ceremonies obscure engross hero restraint bolingbroke neighbour crimes dominions common turns conduct wav therewithal abandon yet hunger
    </text>
    </description>
    <happiness>5</happiness>
    </annotation>
    </closed_auction>
    <closed_auction>
    <seller person="person0"/>
    <buyer person="person0"/>
    <itemref item="item5"/>
    <price>96.06</price>
    <date>04/24/1999</date>
    <quantity>2</quantity>
    <type>Featured</type>
    <annotation>
    <author person="person0"/>
    <description>
    <text>
    jove superiors prolong which conspirator crowns fellowship indisposition skins filthy divers fault apparell worthiness supposition parchment restitution rings rages remains lass dependent pelican contrive paradoxes unmask desdemona weak pleases shame wisely cheek poison avoid ulysses exeunt answer smoothing punishment much anointed bloody shook here armado supply four digestion unresisted consummate glou ding figure made unwrung worst repute envious meanest read nan stake shriek tower nights armed drinking instant scruple citizens rightful nonino shame hills dismal other fasting attends judge aspire hand putting repeal grounds bestrid commission crave mess tarries sport view freely lame done intend cast shun kills presented body landed question hem same burdens plenty esteem weak sigh sunday body preventions revenge horses cleomenes thrust what albeit foolishly mirror gently mock allow index evils should consider deeds suit damsons willoughby thousand number morn banish barricado unfolding perhaps gently stalk degree oblivion wars monsieur companies swords shifted clay strives frozen jour <emph> ajax states mark parcels advertised utterly virtue flatter sleeping ope </emph> lucilius tybalt glow killed account obdurate kindly <bold> heart light bosom garden cog yet daughters tott </bold> lifted offer
    </text>
    </description>
    <happiness>4</happiness>
    </annotation>
    </closed_auction>
    </closed_auctions>
    </site>

  • Turning Off Backlight Causes Kernel Panic Lenovo y550p Laptop

    Recently my Lenovo y550p has started with an issue that seems to be persistent with others using a similar hardware profile with newer 3.1 kernels.
    When using the function keys, or letting the screen backlight turn off after a certain amount of time through power settings, upon turning the screen back on I receive a kernel panic. The issue has been documented here: https://bugzilla.redhat.com/show_bug.cgi?id=748210, by others with the same issue. I haven't seen anything for this with Arch and was wondering if it will be looked into or if a fix is known?
    Thanks

    Glad I'm not the only one. My temporary solution was to download the kernel and wl package from December 2012 found http://repo-ck.com/PKG_source/ and then mkpkg and install it. It'll work as an alternative for now, without messing up the primary kernel setup.

  • PaCkAgE DaTaStReAm input/output stream utilities

    I am trying to read/write Solaris installable package streams and I was wondering if someone had already invented this wheel. Since I cannot seem to find ANY documentation on the internet about the file format (and, more importantly, the header encoding) for the items in these files I was hoping someone here would have information about this.
    And, no, I am not able to exec() mkpkg, pkgtrans, etc as I may not be running on a Solaris machine.

    Wow. That was easy. The Sun package datastream format is simply two cpio files concatenated together on a 512 byte boundary. Still trying to figure out the main package header (which is also 512 bytes) and contains the "PaCkAgE DaTaStReAm" tag and the name of the package itself followed by two numbers, a '1', which hold no special meaning yet and the number of 512-byte blocks occupied by the installed package). So far my ant task is shaping up nicely and I'll be able to create Solaris packages via build.xml :D

  • *-svn AUR mega bug.

    SourceForge ([url]http://sourceforge.net/docs/A04[/url]) wrote:
    Project Subversion (SVN) Service:       Online [1]          Last updated: 2007-01-05 Pacific
    Recent Updates »
    ( 2007-07-09 10:43:54 - Project Subversion (SVN) Service )   As announced, support for the deprecated subversion access method (svn.sourceforge.net) was removed. Please use the PROJECT.svn.sourceforge.net access method that is described in our docs.
    This is affecting A LOT of *-svn packages from AUR. They are fetching their SVN sources from https://svn.sourceforge.net and THIS ISN'T WORKING ANYMORE, because they must now specify the project name BEFORE "svn" (https://[projectname].svn.sourceforge.net).
    Can any TU fix all of those packages?
    Thanks in advance.
    Last edited by Alejandro Nova (2007-07-11 04:26:58)

    you could try alerting the maintainers/devs of such scripts as yaourt/pacbuild/etc.
    alternatively
    function sfs() {
    pattern="://svn.\(sourceforge\|sf\).net/"
    if [[ "${_svntrunk}x" != "x" && `echo $_svntrunk | grep "$pattern"` ]];
    then _svntrunk=`echo $_svntrunk | sed "s@$pattern@://${_svnmod}.sourceforge.net/@g"`
    fi
    alias build="sfs;build;"
    in /etc/makepkg.conf should be a sufficient workaround while the pkgbuild maintainers catch-up .
    unfortnately i am nowhere near an AL system so i can't confirm that it works.. but simple test with
    _svntrunk=https://sf.net/svn/project/trunk
    _svnmod=project
    function build() {
    echo $_svntrunk
    #::how i tested it::
    #file1: mkpkg > above function + . pb \n build
    #file2: pkgbuild >above code
    shows promising results
    sorry my bash programming isn't as good as I'd like feel free to rip it apart if you like
    hope it works;)
    Last edited by raeven (2007-07-12 19:38:00)

  • [SOLVED] Problem whilst trying to build kernel26-ck from source

    I've spent some time reading about kernel patch sets, and after some research and valuable info from the Arch community, I've decided that the ck patchset is most appropriate for my system, however,  I receive the following error after issuing a mkpkg -sc command:
    ==> Validating source files with md5sums...
        linux-2.6.36.tar.bz2 ... Passed
        patch-2.6.36-2-ARCH.bz2 ... Passed
        config ... Passed
        config.x86_64 ... Passed
        kernel26.preset ... Passed
        patch-2.6.36-ck2.bz2 ... Passed
        0001-bfq_iosched-block-prepare_IO_context_code-v1-2.6.36.patch ... Passed
        0002-bfq_iosched-block-add-cgroups-kconfig-and-build-bits-for-BFQ-v1-2.6.36.patch ... Passed
        0003-bfq_iosched-block-introduce_BFQ-v1-2.6.36.patch ... Passed
    ==> Extracting Sources...
      -> Extracting linux-2.6.36.tar.bz2 with bsdtar
      -> Extracting patch-2.6.36-2-ARCH.bz2 with bzip2
      -> Extracting patch-2.6.36-ck2.bz2 with bzip2
    ==> Starting build()...
    ==> Patching source with-ARCH patches
    patching file drivers/video/logo/logo_linux_clut224.ppm
    patching file drivers/video/logo/logo_linux_mono.pbm
    patching file drivers/video/logo/logo_linux_vga16.ppm
    patching file fs/file_table.c
    patching file fs/namei.c
    patching file fs/namespace.c
    patching file fs/notify/group.c
    patching file fs/notify/mark.c
    patching file fs/open.c
    patching file fs/splice.c
    patching file fs/statfs.c
    patching file include/linux/fs.h
    patching file include/linux/namei.h
    patching file include/linux/splice.h
    patching file security/commoncap.c
    patching file security/device_cgroup.c
    patching file security/security.c
    ==> Patching source with BFQ patches
    patching file block/Kconfig.iosched
    patching file block/blk-ioc.c
    patching file block/cfq-iosched.c
    patching file fs/ioprio.c
    patching file include/linux/iocontext.h
    patching file block/Makefile
    patching file include/linux/cgroup_subsys.h
    patching file block/bfq-cgroup.c
    patching file block/bfq-ioc.c
    patching file block/bfq-iosched.c
    patching file block/bfq-sched.c
    patching file block/bfq.h
    ==> Patching source with ck1 patch set
    patching file arch/powerpc/platforms/cell/spufs/sched.c
    patching file Documentation/scheduler/sched-BFS.txt
    patching file Documentation/sysctl/kernel.txt
    patching file fs/proc/base.c
    patching file include/linux/init_task.h
    patching file include/linux/ioprio.h
    patching file include/linux/sched.h
    patching file init/Kconfig
    patching file init/main.c
    patching file kernel/delayacct.c
    patching file kernel/exit.c
    patching file kernel/kthread.c
    patching file kernel/posix-cpu-timers.c
    patching file kernel/sched_bfs.c
    patching file kernel/sched.c
    patching file kernel/sysctl.c
    patching file lib/Kconfig.debug
    patching file mm/vmscan.c
    patching file include/linux/swap.h
    patching file mm/memory.c
    patching file mm/swapfile.c
    patching file include/linux/mmzone.h
    patching file include/linux/mm_inline.h
    patching file mm/filemap.c
    patching file mm/swap.c
    patching file mm/page-writeback.c
    patching file arch/x86/Kconfig
    patching file kernel/Kconfig.hz
    patching file arch/x86/kernel/cpu/proc.c
    patching file arch/x86/kernel/smpboot.c
    patching file include/linux/nfsd/stats.h
    patching file include/net/inet_timewait_sock.h
    patching file init/calibrate.c
    patching file kernel/Kconfig.preempt
    patching file drivers/cpufreq/cpufreq_ondemand.c
    patching file Makefile
    ==> Running make mrproper to clean source tree
    ==> Running make prepare for you to enable patched options of your choosing
      HOSTCC  scripts/basic/fixdep
    /bin/sh: scripts/basic/fixdep: Permission denied
    make[2]: *** [scripts/basic/fixdep] Error 1
    make[1]: *** [scripts_basic] Error 2
    make: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'.  Stop.
        Aborting...
    [taylor-unix@Legion kernel26-ck]$
    Issuing a mkpkg command '--asroot' fails to make any difference whatsoever.
    Am I missing something here?
    Last edited by edward.taylor89 (2010-11-09 22:38:29)

    SOLVED!
    The trick was to remove 'noexec' along the mount options for /home from fstab.
    Last edited by edward.taylor89 (2010-11-09 17:22:01)

  • Help Compressor won't open!

    Hi,
    I had to reinstall FCStudio 2 on my iMAC. Now Compressor just won't open anymore.
    I tried all the steps suggested by Apple (Disk Permissions, trashing Preferences, uninstalling and reinstalling Compressor). Nothing seems to work. It was working fine just yesterday.
    It drives me nuts, and I'm also in a real timecrunch for an internet web series.
    Any suggestions?
    Jochen

    I too could not get Compressor 3 to open- I tried this:
    Went to Logic Studio Install DVD and found the installer/Packages folder, installed the following:
    Compressor.mkpg
    PluginManager.pkg
    Qmaster.mkpkg
    (some of these install other packages too, btw)
    And it now works...
    Tip off was detail in error report: could not find PluginManager.framework stuff in Library/Frameworks
    Maybe this will help... Maybe I was lucky.
    -R
    PS
    I did not delete any files anywhere

  • [SOLVED] WPA_SUPPLICANT and rt2500 chipset cards [SOLVED]

    EDIT:
    If you want to make an rt2500 chipset wireless card work with wpa_supplicant (and it doesn't already), maybe you have tried to run wpa_supplicant and got a bunch of errors saying nasty things about IOCTRL, this means, most likely, that wpa_supplicant is having trouble communicating with your wireless card.  One problem (my problem) was the driver, the old rt2500 driver.
    Are you using an old rt2500 driver, or the newer rt2500pci driver?  You can probably tell by looking at your rc.conf file, in the section called "MODULES", if you have rt2500 listed, you're
    loading the old driver, so you should put an "!" in front to disable it.  You also need to make sure you have the rt2500pci drive and (I think) the rt2x00lib and rt2x00pci modules listed.  I'm pretty sure these are included with an up to date stock kernel.
    I guess another way to look for the driver would be to boot your computer and run "dmesg | more" and parse through the output, or "dmesg | more | grep | rt2500", which should find you any lines that contain text "rt2500".
    Now, if you've been using that old rt2500 driver, your wireless card has probably been calling itself "ra0", assuming it's your only card using the rt2500 driver, when you switch to the new driver, it will call itself "wlan?" where ? is some number.  It's probably wlan0, unless you have another wireless card, I do (a Broadcom card that has never worked) so mine is actually called wlan1.  There are tutorials for making Broadcom cards work, but that's a different kettle of worms and I'm not qualified to talk about it since mine doesn't.
    Now it should work with wpa_supplicant using the driver "wext", which should be the default for wpa_supplicant, but just to be safe you can type:
    wpa_supplicant  -d -iwlan? -Dwext -c/path_to_config_file/your_config_file
                             |   |          |            |
                             |   |          |         Config file to use
                             |   |         driver to use
                             |  interface to use
                             |
                            tell wpa_supplicant to be more verbose, -dd is even more verbose
    You probably already read the man pages and wiki for wpa_supplicant, but if you haven't noticed yet the syntax for the options is -oPARAMETER there's no seperation between the option and it's argument.
    Now if you did all this, and you're not getting IOCTRL errors, then you're wireless driver and wpa_supplicant are probably communicating just fine.  If you're still not able to connect then the problem could be one of:
    Unable to associate with access point, possibly because of weak signal or MAC filtering
    Errors in your wpa_supplicant config file, maybe a PSK is wrong, maybe you're specifying a protocol wrong?  If you have some sort of complex configuration / AP setup, it might be best too try a simpler configuration with an AP you can administer (like a home portal, if you have one), see if you can get that to work, and then figure out why your super complex configuration to work.
    If you want too, read tomk's posts below, my other posts are (most likely) not helpful.
    _____________________________ORGINAL POST__ORGINAL TOPIC:Can BSD drivers work w/ WPA_SUPPLICANT in Linux?_____________________________________
    Hello all,
    Recently I installed FreeBSD on a laptap with a rt2500 chipset wireless card and was able, for the first time ever, to use wpa encrypted networking via wpa_supplicant.  Then I screwed up my rc.conf file, tried to fix it, and apparently completely broke the system. 
    So I decided to install arch, because I didn't really want to rebuild the ports I had installed, but then, it appears, I can't get wpa_supplicant to work.  Not so, so bad for my home network (I can either use an ethernet connection or switch my router to an open connection), but I'm intrigued enough at the prospect of being able to use the wifi network at my university, that I really want this to work now. 
    So I messed around with wpa_supplicant, but apparently wpa_supplicant doesn't support the rt2500 driver.  But I know the generic BSD driver works (wext does not), so, perhaps naively, I tried to build wpa_supplicant with the BSD driver enabled. 
    But, when I did this, mkpkg tells me that my config file is bad.  Is this because I'm trying to enable the BSD driver?
    I realize it might be helpful to look at my config file, but for the moment, I'm too lazy to fiddle with things to get the file of the laptop, but it occurs to me that it might just be downright silly to expect a bsd driver to work with linux.  So if I"m being stupid, could someone please tell me?
    -thanks!
    Last edited by pseudonomous (2008-08-24 21:29:26)

    This is the last config file I tried:
    # Example wpa_supplicant build time configuration
    # This file lists the configuration options that are used when building the
    # hostapd binary. All lines starting with # are ignored. Configuration option
    # lines must be commented out complete, if they are not to be included, i.e.,
    # just setting VARIABLE=n is not disabling that variable.
    # This file is included in Makefile, so variables like CFLAGS and LIBS can also
    # be modified from here. In most cases, these lines should use += in order not
    # to override previous values of the variables.
    # Uncomment following two lines and fix the paths if you have installed OpenSSL
    # or GnuTLS in non-default location
    #CFLAGS += -I/usr/local/openssl/include
    #LIBS += -L/usr/local/openssl/lib
    # Some Red Hat versions seem to include kerberos header files from OpenSSL, but
    # the kerberos files are not in the default include path. Following line can be
    # used to fix build issues on such systems (krb5.h not found).
    #CFLAGS += -I/usr/include/kerberos
    # Example configuration for various cross-compilation platforms
    #### sveasoft (e.g., for Linksys WRT54G) ######################################
    #CC=mipsel-uclibc-gcc
    #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
    #CFLAGS += -Os
    #CPPFLAGS += -I../src/include -I../../src/router/openssl/include
    #LIBS += -L/opt/brcm/hndtools-mipsel-uclibc-0.9.19/lib -lssl
    #### openwrt (e.g., for Linksys WRT54G) #######################################
    #CC=mipsel-uclibc-gcc
    #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc
    #CFLAGS += -Os
    #CPPFLAGS=-I../src/include -I../openssl-0.9.7d/include \
    #-I../WRT54GS/release/src/include
    #LIBS = -lssl
    # Driver interface for Host AP driver
    CONFIG_DRIVER_HOSTAP=y
    # Driver interface for Agere driver
    #CONFIG_DRIVER_HERMES=y
    # Change include directories to match with the local setup
    #CFLAGS += -I../../hcf -I../../include -I../../include/hcf
    #CFLAGS += -I../../include/wireless
    # Driver interface for madwifi driver
    CONFIG_DRIVER_MADWIFI=y
    # Change include directories to match with the local setup
    CFLAGS += -I../madwifi
    # Driver interface for Prism54 driver
    # (Note: Prism54 is not yet supported, i.e., this will not work as-is and is
    # for developers only)
    #CONFIG_DRIVER_PRISM54=y
    # Driver interface for ndiswrapper
    CONFIG_DRIVER_NDISWRAPPER=y
    # Driver interface for Atmel driver
    CONFIG_DRIVER_ATMEL=y
    # Driver interface for Broadcom driver
    #CONFIG_DRIVER_BROADCOM=y
    # Example path for wlioctl.h; change to match your configuration
    #CFLAGS += -I/opt/WRT54GS/release/src/include
    # Driver interface for Intel ipw2100/2200 driver
    #CONFIG_DRIVER_IPW=y
    # Driver interface for generic Linux wireless extensions
    CONFIG_DRIVER_WEXT=y
    # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver)
    CONFIG_DRIVER_BSD=y
    CFLAGS += -I/usr/local/include
    LIBS += -L/usr/local/lib
    # Driver interface for Windows NDIS
    #CONFIG_DRIVER_NDIS=y
    #CFLAGS += -I/usr/include/w32api/ddk
    #LIBS += -L/usr/local/lib
    # For native build using mingw
    #CONFIG_NATIVE_WINDOWS=y
    # Additional directories for cross-compilation on Linux host for mingw target
    #CFLAGS += -I/opt/mingw/mingw32/include/ddk
    #LIBS += -L/opt/mingw/mingw32/lib
    #CC=mingw32-gcc
    # By default, driver_ndis uses WinPcap for low-level operations. This can be
    # replaced with the following option which replaces WinPcap calls with NDISUIO.
    # However, this requires that WZC is disabled (net stop wzcsvc) before starting
    # wpa_supplicant.
    # CONFIG_USE_NDISUIO=y
    # Driver interface for development testing
    #CONFIG_DRIVER_TEST=y
    # Driver interface for wired Ethernet drivers
    CONFIG_DRIVER_WIRED=y
    # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is
    # included)
    CONFIG_IEEE8021X_EAPOL=y
    # EAP-MD5
    CONFIG_EAP_MD5=y
    # EAP-MSCHAPv2
    CONFIG_EAP_MSCHAPV2=y
    # EAP-TLS
    CONFIG_EAP_TLS=y
    # EAL-PEAP
    CONFIG_EAP_PEAP=y
    # EAP-TTLS
    CONFIG_EAP_TTLS=y
    # EAP-GTC
    CONFIG_EAP_GTC=y
    # EAP-OTP
    CONFIG_EAP_OTP=y
    # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used)
    #CONFIG_EAP_SIM=y
    # EAP-PSK (experimental; this is _not_ needed for WPA-PSK)
    #CONFIG_EAP_PSK=y
    # EAP-PAX
    #CONFIG_EAP_PAX=y
    # LEAP
    CONFIG_EAP_LEAP=y
    # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used)
    #CONFIG_EAP_AKA=y
    # EAP-SAKE
    #CONFIG_EAP_SAKE=y
    # EAP-GPSK
    #CONFIG_EAP_GPSK=y
    # Include support for optional SHA256 cipher suite in EAP-GPSK
    #CONFIG_EAP_GPSK_SHA256=y
    # PKCS#12 (PFX) support (used to read private key and certificate file from
    # a file that usually has extension .p12 or .pfx)
    CONFIG_PKCS12=y
    # Smartcard support (i.e., private key on a smartcard), e.g., with openssl
    # engine.
    CONFIG_SMARTCARD=y
    # PC/SC interface for smartcards (USIM, GSM SIM)
    # Enable this if EAP-SIM or EAP-AKA is included
    #CONFIG_PCSC=y
    # Development testing
    #CONFIG_EAPOL_TEST=y
    # Replace native Linux implementation of packet sockets with libdnet/libpcap.
    # This will be automatically set for non-Linux OS.
    #CONFIG_DNET_PCAP=y
    # Select control interface backend for external programs, e.g, wpa_cli:
    # unix = UNIX domain sockets (default for Linux/*BSD)
    # udp = UDP sockets (default for Windows)
    # y = use default (backwards compatibility)
    # If this option is commented out, control interface is not included in the
    # build.
    CONFIG_CTRL_IFACE=y
    # Include support for GNU Readline and History Libraries in wpa_cli.
    # When building a wpa_cli binary for distribution, please note that these
    # libraries are licensed under GPL and as such, BSD license may not apply for
    # the resulting binary.
    #CONFIG_READLINE=y
    # Remove debugging code that is printing out debug message to stdout.
    # This can be used to reduce the size of the wpa_supplicant considerably
    # if debugging code is not needed. The size reduction can be around 35%
    # (e.g., 90 kB).
    #CONFIG_NO_STDOUT_DEBUG=y
    # Remove WPA support, e.g., for wired-only IEEE 802.1X supplicant, to save
    # 35-50 kB in code size.
    #CONFIG_NO_WPA=y
    # Remove WPA2 support. This allows WPA to be used, but removes WPA2 code to
    # save about 1 kB in code size when building only WPA-Personal (no EAP support)
    # or 6 kB if building for WPA-Enterprise.
    #CONFIG_NO_WPA2=y
    # Remove AES extra functions. This can be used to reduce code size by about
    # 1.5 kB by removing extra AES modes that are not needed for commonly used
    # client configurations (they are needed for some EAP types).
    #CONFIG_NO_AES_EXTRAS=y
    # Select configuration backend:
    # file = text file (e.g., wpa_supplicant.conf)
    # winreg = Windows registry (see win_example.reg for an example)
    CONFIG_BACKEND=file
    # Select program entry point implementation:
    # main = UNIX/POSIX like main() function (default)
    # main_winsvc = Windows service (read parameters from registry)
    # main_none = Very basic example (development use only)
    #CONFIG_MAIN=main
    # Select wrapper for operatins system and C library specific functions
    # unix = UNIX/POSIX like systems (default)
    # win32 = Windows systems
    # none = Empty template
    #CONFIG_OS=unix
    # Select event loop implementation
    # eloop = select() loop (default)
    # eloop_win = Windows events and WaitForMultipleObject() loop
    # eloop_none = Empty template
    #CONFIG_ELOOP=eloop
    # Select layer 2 packet implementation
    # linux = Linux packet socket (default)
    # pcap = libpcap/libdnet/WinPcap
    # freebsd = FreeBSD libpcap
    # winpcap = WinPcap with receive thread
    # ndis = Windows NDISUIO (note: requires CONFIG_USE_NDISUIO=y)
    # none = Empty template
    #CONFIG_L2_PACKET=linux
    # IEEE 802.11i/IEEE 802.11e STAKey negotiation for direct link connection
    #CONFIG_STAKEY=y
    # Proposed replacement for STAKey negotiation: PeerKey handshake for
    # Station to Station Link
    CONFIG_PEERKEY=y
    # Select TLS implementation
    # openssl = OpenSSL (default)
    # gnutls = GnuTLS (needed for TLS/IA, see also CONFIG_GNUTLS_EXTRA)
    # internal = Internal TLSv1 implementation (experimental)
    # none = Empty template
    #CONFIG_TLS=openssl
    # Whether to enable TLS/IA support, which is required for EAP-TTLSv1.
    # You need CONFIG_TLS=gnutls for this to have any effect. Please note that
    # even though the core GnuTLS library is released under LGPL, this extra
    # library uses GPL and as such, the terms of GPL apply to the combination
    # of wpa_supplicant and GnuTLS if this option is enabled. BSD license may not
    # apply for distribution of the resulting binary.
    #CONFIG_GNUTLS_EXTRA=y
    # If CONFIG_TLS=internal is used, additional library and include paths are
    # needed for LibTomCrypt and TomsFastMath.
    #LTC_PATH=/usr/src/libtomcrypt-1.11
    #TFM_PATH=/usr/src/tomsfastmath-0.09
    #CFLAGS += -I$(LTC_PATH)/src/headers
    #LIBS += -L$(LTC_PATH) -L$(TFM_PATH)
    #LIBS_p += -L$(LTC_PATH) -L$(TFM_PATH)
    # Integrate ndis_events.exe functionality into wpa_supplicant.
    # This is only for Windows builds and requires WMI-related header files and
    # WbemUuid.Lib from Platform SDK even when building with MinGW.
    #CONFIG_NDIS_EVENTS_INTEGRATED=y
    #PLATFORMSDKLIB="/opt/Program Files/Microsoft Platform SDK/Lib"
    # Add support for DBus control interface
    #CONFIG_CTRL_IFACE_DBUS=y
    # Add support for loading EAP methods dynamically as shared libraries.
    # When this option is enabled, each EAP method can be either included
    # statically (CONFIG_EAP_<method>=y) or dynamically (CONFIG_EAP_<method>=dyn).
    # Dynamic EAP methods are build as shared objects (eap_*.so) and they need to
    # be loaded in the beginning of the wpa_supplicant configuration file
    # (see load_dynamic_eap parameter in the example file) before being used in
    # the network blocks.
    # Note that some shared parts of EAP methods are included in the main program
    # and in order to be able to use dynamic EAP methods using these parts, the
    # main program must have been build with the EAP method enabled (=y or =dyn).
    # This means that EAP-TLS/PEAP/TTLS/FAST cannot be added as dynamic libraries
    # unless at least one of them was included in the main build to force inclusion
    # of the shared code. Similarly, at least one of EAP-SIM/AKA must be included
    # in the main build to be able to load these methods dynamically.
    # Please also note that using dynamic libraries will increase the total binary
    # size. Thus, it may not be the best option for targets that have limited
    # amount of memory/flash.
    CONFIG_DYNAMIC_EAP_METHODS=y
    # Include client MLME (management frame processing).
    # This can be used to move MLME processing of Devicescape IEEE 802.11 stack
    # into user space.
    #CONFIG_CLIENT_MLME=y
    # Currently, driver_devicescape.c build requires some additional parameters
    # to be able to include some of the kernel header files. Following lines can
    # be used to set these (WIRELESS_DEV must point to the root directory of the
    # wireless-dev.git tree).
    WIRELESS_DEV=/lib/modules/2.6.24-ARCH/build
    CFLAGS += -I$(WIRELESS_DEV)/net/mac80211
    Last edited by pseudonomous (2008-08-24 08:23:23)

  • [SOLVED] Error during makepkg

    I'm trying to build a package for exaile-plugin-mmkeys, but the process gets stopped. After I run "packer -S exaile-plugin-mmkeys," it proceeds fine until it reaches the "build()" step:
    ==> Entering fakeroot environment...
    ==> Starting build()...
    pygtk-codegen-2.0 --prefix mmkeys \
    --register `pkg-config --variable=defsdir pygtk-2.0`/gdk-types.defs \
    --register `pkg-config --variable=defsdir pygtk-2.0`/gtk-types.defs \
    --override mmkeys.override \
    mmkeys.defs > gen-tmp
    note: pygtk-codegen-2.0 is deprecated, use pygobject-codegen-2.0 instead
    note: I will now try to invoke pygobject-codegen-2.0 in the same directory
    /usr/bin/pygtk-codegen-2.0: line 10: /usr/bin/pygobject-codegen-2.0: No such file or directory
    make: *** [mmkeyspy.c] Error 127
    ==> ERROR: A failure occurred in build().
    Aborting...
    The build failed.
    Apparently a similar issure is being experienced by a user over here. Just to be sure, after packer failed I downloaded the PKGBUILD and ran mkpkg myself, but got the same error
    I have pygobject-2.28.4-1 and pygobject-devel-2.28.4-1 installed, so I don't know why "pygobject-codegen-2.0" isn't being found. Any ideas?
    Last edited by foolishgrunt (2011-05-24 00:22:32)

    I’m not familiar with any of these programs, so this is just a stab in the dark, but maybe see if you actually have a /usr/bin/pygobject-codegen-2.0 file installed. If not, reinstall pygobject-devel-2.28.4-1 which is meant to have it according to the web package contents list.

Maybe you are looking for

  • What's wrong with my Mac's disk drive?

    I have a Macbook running OS X Mountain Lion (10.7.5). It has multiple users on it because I share it with other family members. A member of our family is getting a new computer and is giving me and those who share the computer with me, the old one. T

  • MacBook is not starting up, flashing ? symbol

    I have a 2007 MacBook running OS 10.5.7. It has been working fine for 2 years now. Suddenly, today, it is freezing during startup and flashing a question mark on a folder sign. I know that this means the startup disk cannot be found, but it was worki

  • CAN'T OPEN CS4  **URGENT**

    Help!!!!! When I Try To Open Adobe Photoshop CS4 The Program Tells Me That I Have To Reboot The Computer, I Do It And That Stupid Message Appears Again, With An Error Message 148:3 HELP ME!! UGH **MAD**

  • How to keep the repeating table and all of its contents on the same page

    Hi All, I use 5.6 build version of xml publisher. My problem is about, repeating table in rtf is divided, so i want to keep the object and its contents on the same logical page. How it can be done? Thanks.

  • Work status question

    Hi gurus, I've a problem with work status, maybe i'm a little lost. I've the following hierarchy (5 level hierarchy) 099-- (owner: user2)     -001   (owner: user2)      00101   (owner:user1)           0010101    (owner:user1)