[solved] XFCE: bind custom script to backlight keys, including Notify?

Hello, the situation is as follows:
My (Toshiba Z30) backlight keys toggle the XFCE-brightness control popup, but they don't control the display brightness.
I found out why: they control /sys/class/backlight/toshiba/brightness instead of /sys/class/backlight/intel_backlight/brightness. I wasn't able to change that, although testing the kernel parameters acpi_backlight=vendor and acpi_osi='!Windows 2012'. That tip (bottom of the page) given in the arch wiki had no effect OR didn't even let me boot when I tried to adjust the BusID to the output of lspci...
So I got another solution, these selfmade scripts:
/usr/local/bin/darker
#!/bin/bash
CURR=`cat /sys/class/backlight/intel_backlight/brightness`
MIN=3
NEW=$(($CURR-50))
if [ $NEW -lt 5 ]
then
NEW=5
fi
echo $NEW > /sys/class/backlight/intel_backlight/brightness
and
/usr/local/bin/brighter
#!/bin/bash
CURR=`cat /sys/class/backlight/intel_backlight/brightness`
MAX=`cat /sys/class/backlight/intel_backlight/max_brightness`
NEW=$(($CURR+50))
if [ $NEW -gt $MAX ]
then
NEW=$MAX
fi
echo $NEW > /sys/class/backlight/intel_backlight/brightness
which work.
Assigning these scripts to keys also works with "sudo darker" / "sudo brighter" and adding them via visudo.
The only thing missing to make it perfect, is the combination:
Using the default brightness keys including the XFCE onscreen notification/popup binded to those scripts. (Just assigning to the brightness keys would make me lose the on screen notifiaction/popup...)
So how is that possible, has anyone an idea?
Last edited by Carl Karl (2014-10-14 15:21:14)

Thanks, that's quite good, except that multiple key-presses lead to multiple notification popups which is not sooo nice bad acceptable. (And as this is run by root, a sudo xfce4-notifyd-config is necessary to configure the notification.)
for reference:
/usr/local/bin/brighter
#!/bin/bash
CURR=`cat /sys/class/backlight/intel_backlight/brightness`
MAX=`cat /sys/class/backlight/intel_backlight/max_brightness`
NEW=$(($CURR+20))
if [ $NEW -gt $MAX ]
then
NEW=$MAX
fi
echo $NEW > /sys/class/backlight/intel_backlight/brightness
notify-send "Backlight $(($NEW*100/$MAX)) %"
/usr/local/bin/darker
#!/bin/bash
CURR=`cat /sys/class/backlight/intel_backlight/brightness`
MIN=3
MAX=`cat /sys/class/backlight/intel_backlight/max_brightness`
NEW=$(($CURR-20))
if [ $NEW -lt 5 ]
then
NEW=5
fi
echo $NEW > /sys/class/backlight/intel_backlight/brightness
notify-send "Backlight $(($NEW*100/$MAX)) %"
So any idea how to avoid these multiple notifications? notify-send --help wasn't helpful for me.

Similar Messages

  • [solved] XFCE - Help customizing for touchscreen / finger friendly UI

    Now that I've managed to get the touchscreen installed and working on my daughter's xmas gift I need some help with making it a bit more finger friendly.
    1) I'm looking either for a theme (or just a setting somewhere) to make the window/title bar larger.  She needs to be able to close windows easily.
    2) I'm using wbar and can't get the settings to stick.  I've increased the icon size (both manually and with the gui from AUR) but when I reboot it never seems to stick.
    3) Is there a setting somewhere to make all programs open full screen?
    Thanks all.
    **edit: I've got it figured out. 
    1) I just went to the .gtkrc file of my theme and changed the settings of the following lines:  GtkRange::slider_width & GtkRange::stepper_size  (both are 30 now)
    2) You have to start wbar with a command to change the default icon size
    3) devilspie will work, thanks for the heads up.
    Last edited by ctarwater (2009-12-24 21:21:56)

    3) you can use devilspie for that - here is a great howto: http://foosel.org/linux/devilspie

  • [SOLVED] Backlight keys not working

    The backlight keys on my laptop aren't working in arch. xbacklight also does not work. Both of these things work in Ubuntu. Here is my GRUB_CMDLINE_LINUX_DEFAULT:
    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_aspm=force i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 acpi_backlight=vendor acpi_osi=Linux radeon.modeset=1"
    When I installed Ubuntu, I had to add "acpi_backlight=vendor acpi_osi=Linux", although that doesn't seem to be helping here.
    in /sys/class/backlight I see acpi_video0, acpi_video1, and intel_backlight. After echoing values into all of them, only intel_backlight seems to do anything. On Ubuntu, the only thing I see in that folder is intel_backlight.
    Does anyone have any suggestions? The wiki doesn't have anything I haven't already tried.
    Last edited by gsingh93 (2013-07-23 16:02:39)

    I figured it out.
    I confirmed from Xorg.0.log that acpi_video1 was being used instead of intel_backlight. However, I had already tried the fix here: http://bugs.debian.org/cgi-bin/bugrepor … =651741#73, which is also mentioned by WonderWoofy, but X server wouldn't start. I tried it again, but this time I took a look at the logs and I realized that the fix listed in the bug report has two Identifier lines, causing X server to not start. I removed the Card0 line and X started fine and I was able to control the backlight. I'll add this information to the bug report.
    Thanks for the help.
    Last edited by gsingh93 (2013-07-23 16:03:03)

  • [Solved] Lenovo u460 Ambient Light Sensor/Backlight/Keyboard Weirdness

    Hi all,
    I have tried to figure this problem out ever since I first installed Arch a few months ago (coming from Fedora/Ubuntu where this never occured). This is going to be a little hard to describe, so please bear with me. Here are the symptoms:
    1) The brightness controls (Fn+Up/Fn+Down) don't affect the screen brightness. Also, if acpi_backlight=legacy, then the message "ACPI: Failed to switch the brightness" pops up in dmesg. If acpi_backlight=vendor, then nothing gets printed, though the tty console cursor does "blip" as if a normal key were pressed.
    2) If acpi_backlight=legacy, the message "ACPI: Failed to switch the brightness" pops up in dmesg repeatedly until I do what I think "resets" the ALS, which is to press Fn+Down several times followed by Fn+Up several times. If ambient light conditions change, these messages start again.
    3) The characters ^@ appear in the console occasionally (thought it only seems to happen before the login prompt or after a shutdown signal).
    4) Occasionally I will get a system beep during boot (which may or may not be related).
    5) This problem seems to insert invisible characters into stdin, so I cannot login in a tty (unless I do the aforementioned "reset"). This does not happen in an X session.
    6) I can set the screen brightness through /sys/class/backlight/acpi_video0/brightness (0-10) and /sys/class/backlight/intel_backlight/brightness (0-4882). I believe I can also use setpci. If acpi_backlight=vendor, then acpi_video0 gets renamed to ideapad, and brightness can no longer be changed through there. intel_backlight still works.
    7) Keys do not repeat (unless I do the "reset" above).
    What I've tried:
    1) Setting acpi_backlight and acpi_osi
    2) Extract and recompile the DSDT, fixing errors and warnings, compile custom kernel with new DSDT included.
    3) Reinstall from scratch
    4) Looked to see if there was a BIOS update. I seem to have the latest (v1.04)
    So, any ideas on how to fix this? Let me know if I forgot to post something.
    Some system information:
    # uname -a
    Linux gbpits 3.6.11-1-ARCH #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012 x86_64 GNU/Linux
    # lspci -v
    00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 02)
    Subsystem: Lenovo Device 391e
    Flags: bus master, fast devsel, latency 0
    Capabilities: [e0] Vendor Specific Information: Len=0c <?>
    Kernel driver in use: agpgart-intel
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02) (prog-if 00 [VGA controller])
    Subsystem: Lenovo Device 3920
    Flags: bus master, fast devsel, latency 0, IRQ 40
    Memory at d0000000 (64-bit, non-prefetchable) [size=4M]
    Memory at c0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 4050 [size=8]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [d0] Power Management version 2
    Capabilities: [a4] PCI Advanced Features
    Kernel driver in use: i915
    00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06)
    Subsystem: Lenovo Device 38a5
    Flags: bus master, fast devsel, latency 0, IRQ 42
    Memory at d6406100 (64-bit, non-prefetchable) [size=16]
    Capabilities: [50] Power Management version 3
    Capabilities: [8c] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Kernel driver in use: mei
    00:1a.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI])
    Subsystem: Lenovo Device 38aa
    Flags: bus master, medium devsel, latency 0, IRQ 16
    Memory at d6405c00 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    Kernel driver in use: ehci_hcd
    00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
    Subsystem: Lenovo Device 38af
    Flags: bus master, fast devsel, latency 0, IRQ 43
    Memory at d6400000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [50] Power Management version 2
    Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Capabilities: [70] Express Root Complex Integrated Endpoint, MSI 00
    Capabilities: [100] Virtual Channel
    Capabilities: [130] Root Complex Link
    Kernel driver in use: snd_hda_intel
    00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
    I/O behind bridge: 00003000-00003fff
    Memory behind bridge: d5400000-d63fffff
    Prefetchable memory behind bridge: 00000000d0400000-00000000d13fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Capabilities: [90] Subsystem: Lenovo Device 38b0
    Capabilities: [a0] Power Management version 2
    Kernel driver in use: pcieport
    00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    I/O behind bridge: 00002000-00002fff
    Memory behind bridge: d4400000-d53fffff
    Prefetchable memory behind bridge: 00000000d1400000-00000000d23fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Capabilities: [90] Subsystem: Lenovo Device 38b1
    Capabilities: [a0] Power Management version 2
    Kernel driver in use: pcieport
    00:1c.2 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 3 (rev 05) (prog-if 00 [Normal decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
    I/O behind bridge: 00001000-00001fff
    Memory behind bridge: d3400000-d43fffff
    Prefetchable memory behind bridge: 00000000d2400000-00000000d33fffff
    Capabilities: [40] Express Root Port (Slot+), MSI 00
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Capabilities: [90] Subsystem: Lenovo Device 38b2
    Capabilities: [a0] Power Management version 2
    Kernel driver in use: pcieport
    00:1d.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05) (prog-if 20 [EHCI])
    Subsystem: Lenovo Device 38b8
    Flags: bus master, medium devsel, latency 0, IRQ 23
    Memory at d6405800 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    Kernel driver in use: ehci_hcd
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a5) (prog-if 01 [Subtractive decode])
    Flags: bus master, fast devsel, latency 0
    Bus: primary=00, secondary=04, subordinate=04, sec-latency=32
    Capabilities: [50] Subsystem: Lenovo Device 383f
    00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 05)
    Subsystem: Lenovo Device 38be
    Flags: bus master, medium devsel, latency 0
    Capabilities: [e0] Vendor Specific Information: Len=10 <?>
    Kernel driver in use: lpc_ich
    00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0])
    Subsystem: Lenovo Device 38c1
    Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 41
    I/O ports at 4048 [size=8]
    I/O ports at 405c [size=4]
    I/O ports at 4040 [size=8]
    I/O ports at 4058 [size=4]
    I/O ports at 4020 [size=32]
    Memory at d6405000 (32-bit, non-prefetchable) [size=2K]
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [70] Power Management version 3
    Capabilities: [a8] SATA HBA v1.0
    Capabilities: [b0] PCI Advanced Features
    Kernel driver in use: ahci
    00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
    Subsystem: Lenovo Device 38bf
    Flags: medium devsel, IRQ 19
    Memory at d6406000 (64-bit, non-prefetchable) [size=256]
    I/O ports at 4000 [size=32]
    00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 05)
    Subsystem: Lenovo Device 38c0
    Flags: bus master, fast devsel, latency 0, IRQ 21
    Memory at d6404000 (64-bit, non-prefetchable) [size=4K]
    Capabilities: [50] Power Management version 3
    Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
    Kernel driver in use: intel ips
    02:00.0 Network controller: Intel Corporation Centrino Wireless-N 1000 [Condor Peak]
    Subsystem: Intel Corporation Centrino Wireless-N 1000 BGN
    Flags: bus master, fast devsel, latency 0, IRQ 44
    Memory at d4400000 (64-bit, non-prefetchable) [size=8K]
    Capabilities: [c8] Power Management version 3
    Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Capabilities: [e0] Express Endpoint, MSI 00
    Capabilities: [100] Advanced Error Reporting
    Capabilities: [140] Device Serial Number 00-26-c7-ff-ff-50-da-20
    Kernel driver in use: iwlwifi
    03:00.0 Ethernet controller: Atheros Communications Inc. AR8131 Gigabit Ethernet (rev c0)
    Subsystem: Lenovo Device 3958
    Flags: fast devsel, IRQ 45
    Memory at d3400000 (64-bit, non-prefetchable) [disabled] [size=256K]
    I/O ports at 1000 [disabled] [size=128]
    Capabilities: [40] Power Management version 3
    Capabilities: [48] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Capabilities: [58] Express Endpoint, MSI 00
    Capabilities: [6c] Vital Product Data
    Capabilities: [100] Advanced Error Reporting
    Capabilities: [180] Device Serial Number ff-30-2b-91-88-ae-1d-ff
    Kernel driver in use: atl1c
    7f:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    7f:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 02)
    Subsystem: Lenovo Device 392b
    Flags: bus master, fast devsel, latency 0
    # journalctl
    -- Logs begin at Wed 2013-01-16 00:09:32 EST, end at Wed 2013-01-16 00:35:58 EST. --
    Jan 16 00:09:32 gbpits systemd-journal[148]: Allowing runtime journal files to grow to 187.9M.
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys cpuset
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys cpu
    Jan 16 00:09:32 gbpits kernel: Linux version 3.6.11-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012
    Jan 16 00:09:32 gbpits kernel: Command line: BOOT_IMAGE=/__active/boot/vmlinuz-linux root=UUID=b568f59c-f490-4404-afdf-cd0b7dd1fbc4 ro rootflags=subvol=__active quiet acpi_osi=Linux
    Jan 16 00:09:32 gbpits kernel: e820: BIOS-provided physical RAM map:
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bb63efff] usable
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb63f000-0x00000000bb6befff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb6bf000-0x00000000bb7befff] ACPI NVS
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb7bf000-0x00000000bb7fefff] ACPI data
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb7ff000-0x00000000bb7fffff] usable
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000bb800000-0x00000000bfffffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
    Jan 16 00:09:32 gbpits kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000137ffffff] usable
    Jan 16 00:09:32 gbpits kernel: NX (Execute Disable) protection: active
    Jan 16 00:09:32 gbpits kernel: DMI 2.6 present.
    Jan 16 00:09:32 gbpits kernel: DMI: LENOVO 0877 /Base Board Product Name, BIOS 31CN23WW(V1.04) 05/31/2010
    Jan 16 00:09:32 gbpits kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Jan 16 00:09:32 gbpits kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Jan 16 00:09:32 gbpits kernel: No AGP bridge found
    Jan 16 00:09:32 gbpits kernel: e820: last_pfn = 0x138000 max_arch_pfn = 0x400000000
    Jan 16 00:09:32 gbpits kernel: MTRR default type: uncachable
    Jan 16 00:09:32 gbpits kernel: MTRR fixed ranges enabled:
    Jan 16 00:09:32 gbpits kernel: 00000-9FFFF write-back
    Jan 16 00:09:32 gbpits kernel: A0000-BFFFF uncachable
    Jan 16 00:09:32 gbpits kernel: C0000-EFFFF write-through
    Jan 16 00:09:32 gbpits kernel: F0000-FFFFF write-combining
    Jan 16 00:09:32 gbpits kernel: MTRR variable ranges enabled:
    Jan 16 00:09:32 gbpits kernel: 0 base 000000000 mask F80000000 write-back
    Jan 16 00:09:32 gbpits kernel: 1 base 0FFE00000 mask FFFE00000 write-protect
    Jan 16 00:09:32 gbpits kernel: 2 base 080000000 mask FC0000000 write-back
    Jan 16 00:09:32 gbpits kernel: 3 base 0BC000000 mask FFC000000 uncachable
    Jan 16 00:09:32 gbpits kernel: 4 base 0BB800000 mask FFF800000 uncachable
    Jan 16 00:09:32 gbpits kernel: 5 base 100000000 mask FC0000000 write-back
    Jan 16 00:09:32 gbpits kernel: 6 base 138000000 mask FF8000000 uncachable
    Jan 16 00:09:32 gbpits kernel: 7 disabled
    Jan 16 00:09:32 gbpits kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 16 00:09:32 gbpits kernel: e820: last_pfn = 0xbb800 max_arch_pfn = 0x400000000
    Jan 16 00:09:32 gbpits kernel: initial memory mapped: [mem 0x00000000-0x1fffffff]
    Jan 16 00:09:32 gbpits kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Jan 16 00:09:32 gbpits kernel: init_memory_mapping: [mem 0x00000000-0xbb7fffff]
    Jan 16 00:09:32 gbpits kernel: [mem 0x00000000-0xbb7fffff] page 2M
    Jan 16 00:09:32 gbpits kernel: kernel direct mapping tables up to 0xbb7fffff @ [mem 0x1fffc000-0x1fffffff]
    Jan 16 00:09:32 gbpits kernel: init_memory_mapping: [mem 0x100000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: [mem 0x100000000-0x137ffffff] page 2M
    Jan 16 00:09:32 gbpits kernel: kernel direct mapping tables up to 0x137ffffff @ [mem 0xbb63d000-0xbb63efff]
    Jan 16 00:09:32 gbpits kernel: RAMDISK: [mem 0x37962000-0x37ca8fff]
    Jan 16 00:09:32 gbpits kernel: ACPI: RSDP 00000000000fe020 00024 (v02 LENOVO)
    Jan 16 00:09:32 gbpits kernel: ACPI: XSDT 00000000bb7fe120 00084 (v01 LENOVO CB-01 00000001 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: FACP 00000000bb7fc000 000F4 (v04 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: DSDT 00000000bb7ed000 0B1E8 (v02 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: FACS 00000000bb75a000 00040
    Jan 16 00:09:32 gbpits kernel: ACPI: ASF! 00000000bb7fd000 000A5 (v32 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: HPET 00000000bb7fb000 00038 (v01 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: APIC 00000000bb7fa000 0008C (v02 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: MCFG 00000000bb7f9000 0003C (v01 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: SLIC 00000000bb7ec000 00176 (v01 LENOVO CB-01 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: BOOT 00000000bb7e9000 00028 (v01 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: ASPT 00000000bb7e6000 00034 (v04 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: WDAT 00000000bb7e5000 00224 (v01 INTEL Calpella 00000001 MSFT 01000013)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb7e4000 009F1 (v01 PmRef CpuPm 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb7e3000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb7e2000 0049F (v01 PmRef ApTst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Local APIC address 0xfee00000
    Jan 16 00:09:32 gbpits kernel: No NUMA configuration found
    Jan 16 00:09:32 gbpits kernel: Faking a node at [mem 0x0000000000000000-0x0000000137ffffff]
    Jan 16 00:09:32 gbpits kernel: Initmem setup node 0 [mem 0x00000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: NODE_DATA [mem 0x137ffc000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: [ffffea0000000000-ffffea0004dfffff] PMD -> [ffff880133800000-ffff8801375fffff] on node 0
    Jan 16 00:09:32 gbpits kernel: Zone ranges:
    Jan 16 00:09:32 gbpits kernel: DMA [mem 0x00010000-0x00ffffff]
    Jan 16 00:09:32 gbpits kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 16 00:09:32 gbpits kernel: Normal [mem 0x100000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: Movable zone start for each node
    Jan 16 00:09:32 gbpits kernel: Early memory node ranges
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0x00010000-0x0009cfff]
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0x00100000-0xbb63efff]
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0xbb7ff000-0xbb7fffff]
    Jan 16 00:09:32 gbpits kernel: node 0: [mem 0x100000000-0x137ffffff]
    Jan 16 00:09:32 gbpits kernel: On node 0 totalpages: 996813
    Jan 16 00:09:32 gbpits kernel: DMA zone: 64 pages used for memmap
    Jan 16 00:09:32 gbpits kernel: DMA zone: 6 pages reserved
    Jan 16 00:09:32 gbpits kernel: DMA zone: 3911 pages, LIFO batch:0
    Jan 16 00:09:32 gbpits kernel: DMA32 zone: 16320 pages used for memmap
    Jan 16 00:09:32 gbpits kernel: DMA32 zone: 747136 pages, LIFO batch:31
    Jan 16 00:09:32 gbpits kernel: Normal zone: 3584 pages used for memmap
    Jan 16 00:09:32 gbpits kernel: Normal zone: 225792 pages, LIFO batch:31
    Jan 16 00:09:32 gbpits kernel: ACPI: PM-Timer IO Port: 0x408
    Jan 16 00:09:32 gbpits kernel: ACPI: Local APIC address 0xfee00000
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    Jan 16 00:09:32 gbpits kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jan 16 00:09:32 gbpits kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Jan 16 00:09:32 gbpits kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 16 00:09:32 gbpits kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jan 16 00:09:32 gbpits kernel: ACPI: IRQ0 used by override.
    Jan 16 00:09:32 gbpits kernel: ACPI: IRQ2 used by override.
    Jan 16 00:09:32 gbpits kernel: ACPI: IRQ9 used by override.
    Jan 16 00:09:32 gbpits kernel: Using ACPI (MADT) for SMP configuration information
    Jan 16 00:09:32 gbpits kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Jan 16 00:09:32 gbpits kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    Jan 16 00:09:32 gbpits kernel: nr_irqs_gsi: 40
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb63f000 - 00000000bb6bf000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb6bf000 - 00000000bb7bf000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb7bf000 - 00000000bb7ff000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000bb800000 - 00000000c0000000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000c0000000 - 00000000f0000000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000f0000000 - 00000000f8000000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000f8000000 - 00000000feb00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1b000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed1b000 - 00000000fed20000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000
    Jan 16 00:09:32 gbpits kernel: PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    Jan 16 00:09:32 gbpits kernel: e820: [mem 0xc0000000-0xefffffff] available for PCI devices
    Jan 16 00:09:32 gbpits kernel: Booting paravirtualized kernel on bare hardware
    Jan 16 00:09:32 gbpits kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Jan 16 00:09:32 gbpits kernel: PERCPU: Embedded 28 pages/cpu @ffff880137c00000 s84608 r8192 d21888 u262144
    Jan 16 00:09:32 gbpits kernel: pcpu-alloc: s84608 r8192 d21888 u262144 alloc=1*2097152
    Jan 16 00:09:32 gbpits kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Jan 16 00:09:32 gbpits kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 976839
    Jan 16 00:09:32 gbpits kernel: Policy zone: Normal
    Jan 16 00:09:32 gbpits kernel: Kernel command line: BOOT_IMAGE=/__active/boot/vmlinuz-linux root=UUID=b568f59c-f490-4404-afdf-cd0b7dd1fbc4 ro rootflags=subvol=__active quiet acpi_osi=Linux
    Jan 16 00:09:32 gbpits kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 16 00:09:32 gbpits kernel: __ex_table already sorted, skipping sort
    Jan 16 00:09:32 gbpits kernel: Checking aperture...
    Jan 16 00:09:32 gbpits kernel: No AGP bridge found
    Jan 16 00:09:32 gbpits kernel: Calgary: detecting Calgary via BIOS EBDA area
    Jan 16 00:09:32 gbpits kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Jan 16 00:09:32 gbpits kernel: Memory: 3842208k/5111808k available (4728k kernel code, 1124556k absent, 145044k reserved, 4142k data, 772k init)
    Jan 16 00:09:32 gbpits kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Jan 16 00:09:32 gbpits kernel: Preemptible hierarchical RCU implementation.
    Jan 16 00:09:32 gbpits kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 16 00:09:32 gbpits kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 16 00:09:32 gbpits kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    Jan 16 00:09:32 gbpits kernel: NR_IRQS:4352 nr_irqs:744 16
    Jan 16 00:09:32 gbpits kernel: Extended CMOS year: 2000
    Jan 16 00:09:32 gbpits kernel: Console: colour dummy device 80x25
    Jan 16 00:09:32 gbpits kernel: console [tty0] enabled
    Jan 16 00:09:32 gbpits kernel: allocated 16252928 bytes of page_cgroup
    Jan 16 00:09:32 gbpits kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 16 00:09:32 gbpits kernel: hpet clockevent registered
    Jan 16 00:09:32 gbpits kernel: tsc: Fast TSC calibration using PIT
    Jan 16 00:09:32 gbpits kernel: tsc: Detected 2260.853 MHz processor
    Jan 16 00:09:32 gbpits kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4523.11 BogoMIPS (lpj=7536176)
    Jan 16 00:09:32 gbpits kernel: pid_max: default: 32768 minimum: 301
    Jan 16 00:09:32 gbpits kernel: Security Framework initialized
    Jan 16 00:09:32 gbpits kernel: AppArmor: AppArmor disabled by boot time parameter
    Jan 16 00:09:32 gbpits kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 16 00:09:32 gbpits kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jan 16 00:09:32 gbpits kernel: Mount-cache hash table entries: 256
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys cpuacct
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys memory
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys devices
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys freezer
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys net_cls
    Jan 16 00:09:32 gbpits kernel: Initializing cgroup subsys blkio
    Jan 16 00:09:32 gbpits kernel: CPU: Physical Processor ID: 0
    Jan 16 00:09:32 gbpits kernel: CPU: Processor Core ID: 0
    Jan 16 00:09:32 gbpits kernel: mce: CPU supports 9 MCE banks
    Jan 16 00:09:32 gbpits kernel: CPU0: Thermal monitoring enabled (TM1)
    Jan 16 00:09:32 gbpits kernel: process: using mwait in idle threads
    Jan 16 00:09:32 gbpits kernel: [121B blob data]
    Jan 16 00:09:32 gbpits kernel: ACPI: Core revision 20120711
    Jan 16 00:09:32 gbpits kernel: ftrace: allocating 18351 entries in 72 pages
    Jan 16 00:09:32 gbpits kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 16 00:09:32 gbpits kernel: smpboot: CPU0: Intel(R) Core(TM) i3 CPU M 350 @ 2.27GHz stepping 02
    Jan 16 00:09:32 gbpits kernel: Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
    Jan 16 00:09:32 gbpits kernel: perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    Jan 16 00:09:32 gbpits kernel: ... version: 3
    Jan 16 00:09:32 gbpits kernel: ... bit width: 48
    Jan 16 00:09:32 gbpits kernel: ... generic registers: 4
    Jan 16 00:09:32 gbpits kernel: ... value mask: 0000ffffffffffff
    Jan 16 00:09:32 gbpits kernel: ... max period: 000000007fffffff
    Jan 16 00:09:32 gbpits kernel: ... fixed-purpose events: 3
    Jan 16 00:09:32 gbpits kernel: ... event mask: 000000070000000f
    Jan 16 00:09:32 gbpits kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 16 00:09:32 gbpits kernel: smpboot: Booting Node 0, Processors #1 #2 #3
    Jan 16 00:09:32 gbpits kernel: Brought up 4 CPUs
    Jan 16 00:09:32 gbpits kernel: smpboot: Total of 4 processors activated (18094.44 BogoMIPS)
    Jan 16 00:09:32 gbpits kernel: devtmpfs: initialized
    Jan 16 00:09:32 gbpits kernel: PM: Registering ACPI NVS region [mem 0xbb6bf000-0xbb7befff] (1048576 bytes)
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 16
    Jan 16 00:09:32 gbpits kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type pci registered
    Jan 16 00:09:32 gbpits kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
    Jan 16 00:09:32 gbpits kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
    Jan 16 00:09:32 gbpits kernel: PCI: Using configuration type 1 for base access
    Jan 16 00:09:32 gbpits kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Jan 16 00:09:32 gbpits kernel: mtrr: probably your BIOS does not setup all CPUs.
    Jan 16 00:09:32 gbpits kernel: mtrr: corrected configuration.
    Jan 16 00:09:32 gbpits kernel: bio: create slab <bio-0> at 0
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Module Device)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Processor Device)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 16 00:09:32 gbpits kernel: ACPI: Added _OSI(Linux)
    Jan 16 00:09:32 gbpits kernel: ACPI: EC: Look up EC in DSDT
    Jan 16 00:09:32 gbpits kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Jan 16 00:09:32 gbpits kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query honored via cmdline
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb691918 00408 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00408 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb68f018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb690a98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT 00000000bb68ed98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Dynamic OEM Table Load:
    Jan 16 00:09:32 gbpits kernel: ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    Jan 16 00:09:32 gbpits kernel: ACPI: Interpreter enabled
    Jan 16 00:09:32 gbpits kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 16 00:09:32 gbpits kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 16 00:09:32 gbpits kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Jan 16 00:09:32 gbpits kernel: ACPI: No dock devices found.
    Jan 16 00:09:32 gbpits kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 16 00:09:32 gbpits kernel: \_SB_.PCI0:_OSC invalid UUID
    Jan 16 00:09:32 gbpits kernel: _OSC request data:1 8 1f
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
    Jan 16 00:09:32 gbpits kernel: PCI host bridge to bus 0000:00
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: busn_res: [bus 00-7e] is inserted under domain [bus 00-ff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: reg 10: [mem 0xd0000000-0xd03fffff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: reg 18: [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: reg 20: [io 0x4050-0x4057]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:16.0: reg 10: [mem 0xd6406100-0xd640610f 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1a.0: reg 10: [mem 0xd6405c00-0xd6405fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1b.0: reg 10: [mem 0xd6400000-0xd6403fff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1d.0: reg 10: [mem 0xd6405800-0xd6405bff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 10: [io 0x4048-0x404f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 14: [io 0x405c-0x405f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 18: [io 0x4040-0x4047]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 1c: [io 0x4058-0x405b]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 20: [io 0x4020-0x403f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: reg 24: [mem 0xd6405000-0xd64057ff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.3: reg 10: [mem 0xd6406000-0xd64060ff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.3: reg 20: [io 0x4000-0x401f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1f.6: reg 10: [mem 0xd6404000-0xd6404fff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:02:00.0: [8086:0084] type 00 class 0x028000
    Jan 16 00:09:32 gbpits kernel: pci 0000:02:00.0: reg 10: [mem 0xd4400000-0xd4401fff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd4400000-0xd53fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: [1969:1063] type 00 class 0x020000
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: reg 10: [mem 0xd3400000-0xd343ffff 64bit]
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: reg 18: [io 0x1000-0x107f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd3400000-0xd43fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
    Jan 16 00:09:32 gbpits kernel: \_SB_.PCI0:_OSC invalid UUID
    Jan 16 00:09:32 gbpits kernel: _OSC request data:1 1f 1f
    Jan 16 00:09:32 gbpits kernel: pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 16 00:09:32 gbpits kernel: pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus 7f])
    Jan 16 00:09:32 gbpits kernel: PCI host bridge to bus 0000:7f
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:7f: busn_res: [bus 7f] is inserted under domain [bus 00-ff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:7f: root bus resource [bus 7f]
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:00.0: [8086:2c62] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:00.1: [8086:2d01] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.0: [8086:2d10] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.1: [8086:2d11] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.2: [8086:2d12] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci 0000:7f:02.3: [8086:2d13] type 00 class 0x060000
    Jan 16 00:09:32 gbpits kernel: pci0000:7f: ACPI _OSC support notification failed, disabling PCIe ASPM
    Jan 16 00:09:32 gbpits kernel: pci0000:7f: Unable to request _OSC control (_OSC support mask: 0x08)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jan 16 00:09:32 gbpits kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    Jan 16 00:09:32 gbpits kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 16 00:09:32 gbpits kernel: vgaarb: loaded
    Jan 16 00:09:32 gbpits kernel: vgaarb: bridge control possible 0000:00:02.0
    Jan 16 00:09:32 gbpits kernel: PCI: Using ACPI for IRQ routing
    Jan 16 00:09:32 gbpits kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 16 00:09:32 gbpits kernel: e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
    Jan 16 00:09:32 gbpits kernel: e820: reserve RAM buffer [mem 0xbb63f000-0xbbffffff]
    Jan 16 00:09:32 gbpits kernel: e820: reserve RAM buffer [mem 0xbb800000-0xbbffffff]
    Jan 16 00:09:32 gbpits kernel: NetLabel: Initializing
    Jan 16 00:09:32 gbpits kernel: NetLabel: domain hash size = 128
    Jan 16 00:09:32 gbpits kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 16 00:09:32 gbpits kernel: NetLabel: unlabeled traffic allowed by default
    Jan 16 00:09:32 gbpits kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Jan 16 00:09:32 gbpits kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Jan 16 00:09:32 gbpits kernel: Switching to clocksource hpet
    Jan 16 00:09:32 gbpits kernel: pnp: PnP ACPI init
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type pnp registered
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [bus 00-7e]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0000-0x0cf7 window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0d00-0xffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000cc000-0x000cffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000dc000-0x000dffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000ec000-0x000effff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0x000f0000-0x000fffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0xc0000000-0xfeafffff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0068-0x006f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: [io 0x0700-0x0707]
    Jan 16 00:09:32 gbpits kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x0000-0x001f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x0081-0x0091]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x0093-0x009f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [io 0x00c0-0x00df]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: [dma 4]
    Jan 16 00:09:32 gbpits kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:02: [mem 0xff000000-0xffffffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:03: [mem 0xfed00000-0xfed003ff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:04: [io 0x00f0]
    Jan 16 00:09:32 gbpits kernel: pnp 00:04: [irq 13]
    Jan 16 00:09:32 gbpits kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x002e-0x002f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x004e-0x004f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0061]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0063]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0065]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0067]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0068-0x006f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0070]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0080]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0092]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x00b2-0x00b3]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0680-0x069f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0800-0x080f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0xffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0xffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0400-0x047f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x0500-0x057f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: [io 0x164e-0x164f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:05: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.2 BAR 13 [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0680-0x069f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0800-0x080f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0xffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0xffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0400-0x047f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: [io 0x0500-0x057f] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:06: [io 0x0070-0x0077]
    Jan 16 00:09:32 gbpits kernel: pnp 00:06: [irq 8]
    Jan 16 00:09:32 gbpits kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:07: [irq 12]
    Jan 16 00:09:32 gbpits kernel: pnp 00:07: Plug and Play ACPI device, IDs SYN0720 SYN0700 SYN0002 PNP0f13 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: [io 0x0060]
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: [io 0x0064]
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: [irq 1]
    Jan 16 00:09:32 gbpits kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed10000-0xfed13fff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed18000-0xfed18fff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed19000-0xfed19fff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xf0000000-0xf1ffffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed20000-0xfed3ffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed90000-0xfed8ffff disabled]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfed45000-0xfed8ffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xff000000-0xffffffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xfee00000-0xfeefffff]
    Jan 16 00:09:32 gbpits kernel: pnp 00:09: [mem 0xd6500000-0xd6500fff]
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xf0000000-0xf1ffffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: [mem 0xd6500000-0xd6500fff] has been reserved
    Jan 16 00:09:32 gbpits kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 16 00:09:32 gbpits kernel: pnp 00:0a: [bus 7f]
    Jan 16 00:09:32 gbpits kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0a03 (active)
    Jan 16 00:09:32 gbpits kernel: pnp: PnP ACPI: found 11 devices
    Jan 16 00:09:32 gbpits kernel: ACPI: ACPI bus type pnp unregistered
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd4400000-0xd53fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd3400000-0xd43fffff]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:1e.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: resource 1 [mem 0xd5400000-0xd63fffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:01: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: resource 1 [mem 0xd4400000-0xd53fffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:02: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: resource 1 [mem 0xd3400000-0xd43fffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:03: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 16 00:09:32 gbpits kernel: pci_bus 0000:04: resource 7 [mem 0xc0000000-0xfeafffff]
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 2
    Jan 16 00:09:32 gbpits kernel: TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Jan 16 00:09:32 gbpits kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jan 16 00:09:32 gbpits kernel: TCP: Hash tables configured (established 524288 bind 65536)
    Jan 16 00:09:32 gbpits kernel: TCP: reno registered
    Jan 16 00:09:32 gbpits kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 16 00:09:32 gbpits kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 1
    Jan 16 00:09:32 gbpits kernel: pci 0000:00:02.0: Boot video device
    Jan 16 00:09:32 gbpits kernel: PCI: CLS 64 bytes, default 64
    Jan 16 00:09:32 gbpits kernel: Unpacking initramfs...
    Jan 16 00:09:32 gbpits kernel: Freeing initrd memory: 3356k freed
    Jan 16 00:09:32 gbpits kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jan 16 00:09:32 gbpits kernel: software IO TLB [mem 0xb763d000-0xbb63cfff] (64MB) mapped at [ffff8800b763d000-ffff8800bb63cfff]
    Jan 16 00:09:32 gbpits kernel: Simple Boot Flag at 0x44 set to 0x1
    Jan 16 00:09:32 gbpits kernel: audit: initializing netlink socket (disabled)
    Jan 16 00:09:32 gbpits kernel: type=2000 audit(1358312969.413:1): initialized
    Jan 16 00:09:32 gbpits kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 16 00:09:32 gbpits kernel: VFS: Disk quotas dquot_6.5.2
    Jan 16 00:09:32 gbpits kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 16 00:09:32 gbpits kernel: msgmni has been set to 7510
    Jan 16 00:09:32 gbpits kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 16 00:09:32 gbpits kernel: io scheduler noop registered
    Jan 16 00:09:32 gbpits kernel: io scheduler deadline registered
    Jan 16 00:09:32 gbpits kernel: io scheduler cfq registered (default)
    Jan 16 00:09:32 gbpits kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    Jan 16 00:09:32 gbpits kernel: vesafb: scrolling: redraw
    Jan 16 00:09:32 gbpits kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Jan 16 00:09:32 gbpits kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90009000000, using 3072k, total 3072k
    Jan 16 00:09:32 gbpits kernel: Console: switching to colour frame buffer device 128x48
    Jan 16 00:09:32 gbpits kernel: fb0: VESA VGA frame buffer device
    Jan 16 00:09:32 gbpits kernel: intel_idle: MWAIT substates: 0x1120
    Jan 16 00:09:32 gbpits kernel: intel_idle: v0.4 model 0x25
    Jan 16 00:09:32 gbpits kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Jan 16 00:09:32 gbpits kernel: GHES: HEST is not enabled!
    Jan 16 00:09:32 gbpits kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 16 00:09:32 gbpits kernel: Linux agpgart interface v0.103
    Jan 16 00:09:32 gbpits kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
    Jan 16 00:09:32 gbpits kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 16 00:09:32 gbpits kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jan 16 00:09:32 gbpits kernel: mousedev: PS/2 mouse device common for all mice
    Jan 16 00:09:32 gbpits kernel: rtc_cmos 00:06: RTC can wake from S4
    Jan 16 00:09:32 gbpits kernel: rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    Jan 16 00:09:32 gbpits kernel: rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    Jan 16 00:09:32 gbpits kernel: cpuidle: using governor ladder
    Jan 16 00:09:32 gbpits kernel: cpuidle: using governor menu
    Jan 16 00:09:32 gbpits kernel: drop_monitor: Initializing network drop monitor service
    Jan 16 00:09:32 gbpits kernel: TCP: cubic registered
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 10
    Jan 16 00:09:32 gbpits kernel: NET: Registered protocol family 17
    Jan 16 00:09:32 gbpits kernel: Key type dns_resolver registered
    Jan 16 00:09:32 gbpits kernel: PM: Hibernation image not present or could not be loaded.
    Jan 16 00:09:32 gbpits kernel: registered taskstats version 1
    Jan 16 00:09:32 gbpits kernel: rtc_cmos 00:06: setting system clock to 2013-01-16 05:09:30 UTC (1358312970)
    Jan 16 00:09:32 gbpits kernel: Freeing unused kernel memory: 772k freed
    Jan 16 00:09:32 gbpits kernel: Write protecting the kernel read-only data: 8192k
    Jan 16 00:09:32 gbpits kernel: Freeing unused kernel memory: 1404k freed
    Jan 16 00:09:32 gbpits kernel: Freeing unused kernel memory: 568k freed
    Jan 16 00:09:32 gbpits kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 16 00:09:32 gbpits systemd-udevd[53]: starting version 196
    Jan 16 00:09:32 gbpits kernel: [drm] Initialized drm 1.1.0 20060810
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    Jan 16 00:09:32 gbpits kernel: agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
    Jan 16 00:09:32 gbpits kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:10/PNP0C0C:00/input/input1
    Jan 16 00:09:32 gbpits kernel: ACPI: Power Button [PWRB]
    Jan 16 00:09:32 gbpits kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:10/PNP0C0E:00/input/input2
    Jan 16 00:09:32 gbpits kernel: ACPI: Sleep Button [SLPB]
    Jan 16 00:09:32 gbpits kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:10/PNP0C0D:00/input/input3
    Jan 16 00:09:32 gbpits kernel: ACPI: Lid Switch [LID0]
    Jan 16 00:09:32 gbpits kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jan 16 00:09:32 gbpits kernel: ACPI: Power Button [PWRF]
    Jan 16 00:09:32 gbpits kernel: checking generic (c0000000 300000) vs hw (c0000000 10000000)
    Jan 16 00:09:32 gbpits kernel: fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    Jan 16 00:09:32 gbpits kernel: Console: switching to colour dummy device 80x25
    Jan 16 00:09:32 gbpits kernel: i915 0000:00:02.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: i915 0000:00:02.0: irq 40 for MSI/MSI-X
    Jan 16 00:09:32 gbpits kernel: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Jan 16 00:09:32 gbpits kernel: [drm] Driver supports precise vblank timestamp query.
    Jan 16 00:09:32 gbpits kernel: [drm] applying lvds SSC disable quirk
    Jan 16 00:09:32 gbpits kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    Jan 16 00:09:32 gbpits kernel: tsc: Refined TSC clocksource calibration: 2260.999 MHz
    Jan 16 00:09:32 gbpits kernel: Switching to clocksource tsc
    Jan 16 00:09:32 gbpits kernel: fbcon: inteldrmfb (fb0) is primary device
    Jan 16 00:09:32 gbpits kernel: Console: switching to colour frame buffer device 170x48
    Jan 16 00:09:32 gbpits kernel: fb0: inteldrmfb frame buffer device
    Jan 16 00:09:32 gbpits kernel: drm: registered panic notifier
    Jan 16 00:09:32 gbpits kernel: acpi device:02: registered as cooling_device0
    Jan 16 00:09:32 gbpits kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    Jan 16 00:09:32 gbpits kernel: input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input5
    Jan 16 00:09:32 gbpits kernel: [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type usb registered
    Jan 16 00:09:32 gbpits kernel: usbcore: registered new interface driver usbfs
    Jan 16 00:09:32 gbpits kernel: usbcore: registered new interface driver hub
    Jan 16 00:09:32 gbpits kernel: usbcore: registered new device driver usb
    Jan 16 00:09:32 gbpits kernel: SCSI subsystem initialized
    Jan 16 00:09:32 gbpits kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: EHCI Host Controller
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    Jan 16 00:09:32 gbpits kernel: ACPI: bus type scsi registered
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: debug port 2
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd6405c00
    Jan 16 00:09:32 gbpits kernel: libata version 3.00 loaded.
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    Jan 16 00:09:32 gbpits kernel: hub 1-0:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 1-0:1.0: 3 ports detected
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: EHCI Host Controller
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: debug port 2
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd6405800
    Jan 16 00:09:32 gbpits kernel: ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    Jan 16 00:09:32 gbpits kernel: hub 2-0:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 2-0:1.0: 3 ports detected
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: version 3.0
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    Jan 16 00:09:32 gbpits kernel: ahci: SSS flag set, parallel bus scan disabled
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x11 impl SATA mode
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
    Jan 16 00:09:32 gbpits kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Jan 16 00:09:32 gbpits kernel: scsi0 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi1 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi2 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi3 : ahci
    Jan 16 00:09:32 gbpits kernel: scsi4 : ahci
    Jan 16 00:09:32 gbpits kernel: ata1: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405100 irq 41
    Jan 16 00:09:32 gbpits kernel: ata2: DUMMY
    Jan 16 00:09:32 gbpits kernel: ata3: DUMMY
    Jan 16 00:09:32 gbpits kernel: ata4: DUMMY
    Jan 16 00:09:32 gbpits kernel: ata5: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405300 irq 41
    Jan 16 00:09:32 gbpits kernel: usb 1-1: new high-speed USB device number 2 using ehci_hcd
    Jan 16 00:09:32 gbpits kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 16 00:09:32 gbpits kernel: ata1.00: ATA-8: Mushkin MKNSSDCL120GB-DX, 320A13F0, max UDMA/133
    Jan 16 00:09:32 gbpits kernel: ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    Jan 16 00:09:32 gbpits kernel: hub 1-1:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 1-1:1.0: 6 ports detected
    Jan 16 00:09:32 gbpits kernel: ata1.00: configured for UDMA/133
    Jan 16 00:09:32 gbpits kernel: scsi 0:0:0:0: Direct-Access ATA Mushkin MKNSSDCL 320A PQ: 0 ANSI: 5
    Jan 16 00:09:32 gbpits kernel: usb 2-1: new high-speed USB device number 2 using ehci_hcd
    Jan 16 00:09:32 gbpits kernel: hub 2-1:1.0: USB hub found
    Jan 16 00:09:32 gbpits kernel: hub 2-1:1.0: 8 ports detected
    Jan 16 00:09:32 gbpits kernel: usb 1-1.3: new full-speed USB device number 3 using ehci_hcd
    Jan 16 00:09:32 gbpits kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 16 00:09:32 gbpits kernel: sda: sda1 sda2
    Jan 16 00:09:32 gbpits kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 16 00:09:32 gbpits kernel: Btrfs loaded
    Jan 16 00:09:32 gbpits kernel: device fsid b568f59c-f490-4404-afdf-cd0b7dd1fbc4 devid 1 transid 8171 /dev/sda2
    Jan 16 00:09:32 gbpits kernel: device fsid b568f59c-f490-4404-afdf-cd0b7dd1fbc4 devid 1 transid 8171 /dev/sda2
    Jan 16 00:09:32 gbpits kernel: btrfs: disk space caching is enabled
    Jan 16 00:09:32 gbpits kernel: Btrfs detected SSD devices, enabling SSD mode
    Jan 16 00:09:32 gbpits kernel: usb 1-1.4: new full-speed USB device number 4 using ehci_hcd
    Jan 16 00:09:32 gbpits systemd[1]: systemd 197 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Jan 16 00:09:32 gbpits systemd[1]: Set hostname to <gbpits>.
    Jan 16 00:09:32 gbpits systemd[1]: Cannot add dependency job for unit wicd.service, ignoring: Unit wicd.service failed to load: No such file or directory. See system logs and 'systemctl status wicd.service' for details.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Jan 16 00:09:32 gbpits systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Remote File Systems.
    Jan 16 00:09:32 gbpits systemd[1]: Reached target Remote File Systems.
    Jan 16 00:09:32 gbpits systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Delayed Shutdown Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on Delayed Shutdown Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Starting udev Kernel Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on udev Kernel Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Starting udev Control Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Listening on udev Control Socket.
    Jan 16 00:09:32 gbpits systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Jan 16 00:09:32 gbpits systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Jan 16 00:09:32 gbpits systemd[1]: Starting E

    I thought I would follow up on this, since I finally found a solution (I don't know if it's the correct solution, but it works for me). The cause of the problems was indeed the ambient light sensor (ALS) sending acpi events that were not having any effect (I saw this using acpi_listen from the acpid package).
    So, with acpid installed and started in systemd, I changed the /etc/acpi/handler.sh to add the following cases:
    video/brightnessup)
    echo $(expr $(cat /sys/class/backlight/acpi_video0/brightness) + 1) > /sys/class/backlight/acpi_video0/brightness
    video/brightnessdown)
    echo $(expr $(cat /sys/class/backlight/acpi_video0/brightness) - 1) > /sys/class/backlight/acpi_video0/brightness
    Now the ALS can change the backlight brightness and all is well. Also, since I don't actually like the ALS, I did put some tin foil and tape in front of it so that it will always register a dark room. (So far I have not found any way to disable the ALS programatically outside of Windows)
    Do note that I don't have acpi_osi or acpi_backlight set to anything in the kernel boot parameters, since using acpi_backlight=vendor doesn't work right as I mentioned in my original post.
    Hope this might help someone in the future.
    Last edited by jflanglois (2013-04-01 21:45:10)

  • Issue with FDMEE custom script

    Hi All,
    I have written a custom script in FDMEE which pulls data from Oracle DB and writes it to a file in FDMEE App Inbox folder. This script is working perfectly in FDM where in I see file getting generated in Inbox folder. But, when I try to execute the same script in FDMEE, it is not working even though it is not giving any error.
    All I changed in the script is API syntax which is specific to FDMEE. Can any one please let me know what is that I am missing here..I am using this script to test FDMEE connectivity to DB.
    Below is the script:
    Sub TEST_MAPS()
    'Oracle Hyperion FDM Custom Script:
    'Purpose:      
    'Variable Declaration
    Dim SQLRes
    Dim objfso
    Dim strFile
    Dim strLoadFile
    Const ForReading = 1
    Const ForWriting = 2
    Const adVarChar = 200
    Const MaxCharacters = 255
    Const adFldIsNullable = 32
    'Initialize objects
    Set cnSS = CreateObject("ADODB.Connection")
    Set rs = CreateObject("ADODB.Recordset")
    'Connect to Oracle database
    cnss.open "Provider=ORAOLEDB.ORACLE;Data Source=ds1;User ID=app;Password=xxxx"
    SQLRes = "Select * from ENTITY_MAP"
    'command for executing the query
    cnss. Execute SQLRes
    'Creates a .tra file in the below mentioned path
    strFile= fdmAPI.API.DataWindow.Connection.PstrDirInbox & "\Entity.tra"
    rs.open SQLRes,cnSS
    'Copy data from table to text file
    'Initialize the object for opening a text file for writing
    Set objfso = CreateObject("Scripting.FileSystemObject")
    Set objWFile = objfso.OpenTextFile(strFile, ForWriting,True)
    'Loop
    With rs
    'Open the file for writing, overwriting if it exists
      Do While Not .EOF
          objWFile.Write .GetString(2,,",",vbCrLf)' Write the records to file
      Loop
      'End If
    .Close
    End With
    End Sub
    Below is the log:
    2015-02-24 15:41:38,991 INFO  [AIF]: FDMEE Process Start, Process ID: 13,949
    2015-02-24 15:41:38,991 INFO  [AIF]: FDMEE Logging Level: 5
    2015-02-24 15:41:38,991 INFO  [AIF]: FDMEE Log File: \\app\FDMEEData\HFMCA\\outbox\logs\HFMCA_13949.log
    2015-02-24 15:41:38,991 INFO  [AIF]: User:502376825
    2015-02-24 15:41:38,991 INFO  [AIF]: Location:null (Partitionkey:null)
    2015-02-24 15:41:38,991 INFO  [AIF]: Period Name:null (Period Key:null)
    2015-02-24 15:41:38,991 INFO  [AIF]: Category Name:null (Category key:null)
    2015-02-24 15:41:38,991 INFO  [AIF]: Rule Name:TEST_MAPS (Rule ID:10,162)
    2015-02-24 15:41:41,003 INFO  [AIF]: Jython Version: 2.5.1 (Release_2_5_1:6813, Sep 26 2009, 13:47:54)
    [Oracle JRockit(R) (Oracle Corporation)]
    2015-02-24 15:41:41,003 INFO  [AIF]: Java Platform: java1.6.0_37
    2015-02-24 15:41:41,003 INFO  [AIF]: Log File Encoding: US-ASCII
    2015-02-24 15:41:41,440 DEBUG [AIF]: CommProcess.executeCustomScript - START
    2015-02-24 15:41:41,440 DEBUG [AIF]: customScriptName: TEST_MAPS.vbs
    2015-02-24 15:41:41,456 DEBUG [AIF]:
        INSERT INTO AIF_PROCESS_DETAILS (
          PROCESS_ID
          ,ENTITY_TYPE
          ,ENTITY_ID
          ,ENTITY_NAME
          ,ENTITY_NAME_ORDER
          ,TARGET_TABLE_NAME
          ,EXECUTION_START_TIME
          ,EXECUTION_END_TIME
          ,RECORDS_PROCESSED
          ,STATUS
          ,LAST_UPDATED_BY
          ,LAST_UPDATE_DATE
        ) VALUES (
          13949
          ,'PROCESS_CUSTOM_SCRIPT'
          ,NULL
          ,'TEST_MAPS.vbs'
          ,NULL
          ,NULL
          ,CURRENT_TIMESTAMP
          ,NULL
          ,NULL
          ,'RUNNING'
          ,'458790678'      ,CURRENT_TIMESTAMP
    2015-02-24 15:41:41,487 DEBUG [AIF]: Comm.doScriptInit - START
    2015-02-24 15:41:41,768 DEBUG [AIF]: fdmContext: {BATCHSCRIPTDIR=E:\Oracle\Middleware\user_projects\app\FinancialDataQuality, SCRIPTFILE=TEST_MAPS.vbs, INBOXDIR=\\app\FDMEEData\HFMCA\\inbox, TARGETAPPDB=NA, TARGETAPPNAME=HFMCA, APPID=57, RULENAME=TEST_MAPS, OUTBOXDIR=\\app\FDMEEData\HFMCA\\outbox, SCRIPTSDIR=\\app\FDMEEData\HFMCA\\data\scripts, EPMORACLEHOME=E:\Oracle\Middleware\EPMSystem11R1, RULEID=10162, EPMORACLEINSTANCEHOME=E:\Oracle\Middleware\user_projects\app, LOADID=13949}
    2015-02-24 15:41:41,768 DEBUG [AIF]: The EpmOracleHome is set to: E:\Oracle\Middleware\EPMSystem11R1
    2015-02-24 15:41:41,768 DEBUG [AIF]: The EpmOracleInstance is set to: E:\Oracle\Middleware\user_projects\app
    2015-02-24 15:41:41,768 DEBUG [AIF]: The JavaHome is set to: %EPM_ORACLE_HOME%/../jdk160_35
    2015-02-24 15:41:41,768 DEBUG [AIF]: The executeEventScript is set to: YES
    2015-02-24 15:41:41,768 DEBUG [AIF]: The OleDatabaseProvider is set to: ORAOLEDB.ORACLE
    2015-02-24 15:41:41,768 DEBUG [AIF]: The AppRootFolder is set to: \\app\FDMEEData\HFMCA\
    2015-02-24 15:41:41,768 DEBUG [AIF]: Comm.doScriptInit - END
    2015-02-24 15:41:41,768 DEBUG [AIF]: Comm.executeCustomScript - START
    2015-02-24 15:41:41,799 DEBUG [AIF]: Comm.executeVBScript - START
    2015-02-24 15:41:41,799 DEBUG [AIF]: The WindowsTempFolder is set to: c:\users\r00257~1\appdata\local\temp
    2015-02-24 15:41:41,799 INFO  [AIF]: Executing the following script: \\app\FDMEEData\HFMCA\\data\scripts\custom\TEST_MAPS.vbs
    2015-02-24 15:41:41,799 DEBUG [AIF]: The command to be executed is:
    cscript \\app\FDMEEData\HFMCA\\data\scripts\custom\TEST_MAPS.vbs "13949" "****" "E%3A%5COracle%5CMiddleware%5Cuser_projects%5Capp" "%25EPM_ORACLE_HOME%25%2F..%2Fjdk160_35" "ORAOLEDB.ORACLE"
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.
    2015-02-24 15:41:41,939 DEBUG [AIF]: Comm.executeVBScript - END
    2015-02-24 15:41:41,939 DEBUG [AIF]: Comm.executeCustomScript - END
    2015-02-24 15:41:41,939 DEBUG [AIF]:
        UPDATE AIF_PROCESS_DETAILS
        SET STATUS = 'SUCCESS'
        ,RECORDS_PROCESSED = CASE
          WHEN RECORDS_PROCESSED IS NULL THEN 0
          ELSE RECORDS_PROCESSED
        END + NULL
        ,EXECUTION_END_TIME = CURRENT_TIMESTAMP
        ,LAST_UPDATED_BY = CASE
          WHEN ('502376825' IS NULL) THEN LAST_UPDATED_BY
          ELSE '502376825'
        END
        ,LAST_UPDATE_DATE = CURRENT_TIMESTAMP
        WHERE PROCESS_ID = 13949
        AND ENTITY_TYPE = 'PROCESS_CUSTOM_SCRIPT'
        AND ENTITY_NAME = 'TEST_MAPS.vbs'
    2015-02-24 15:41:41,939 DEBUG [AIF]: CommProcess.executeCustomScript - END

    Hi,
    If you're using CUE, there is a step called "Dial By Extension Menu", this should solve your problem.
    If you're using UCCX (or CUE and don't have this step) you can do the following:
    In the Get Digit String branch Timeout, use an If statement that check if the Number entered was "1" then Call Redirect to Technical Departement Number, else Call Redirect to Operator Extension.
    It should appear like this:
    Extension = Get Digit String
    Timeout
        if (Extension == "1")
            True
                Call Redirect to Technical
            False
                Call Redirect to Operator
    Hope This Helps,

  • Possible to set shortcut for file scripts custom script ?

    i have some custom scripts in file > scripts. i'd like to set a shortcut key for them, but you can't do that thru edit > keyboard shortcuts because the custom ones don't show up, only "other script F12" shows up.
    is there a way to set a shortcut to execute a custom script? i am using Ai CS3 version 13.0.2
    some work arounds i tried that didn't seem to work:
    - setting the script as an action - didn't work, the script does a bunch of stuff that can't be solved by actions
    - setting an action and inserting a menu item, then setting a shortcut to run the action - doesn't help because menu item (the script) gets disassocated from the action every time you shut down Ai. sometimes it disassociates itself. tried to save the actions and reload them, but the scripts were still disassociated
    thanks

    As it sounds like you have already discovered, you should be able to define an Action with but one InsertMenuCommand step in it. That menu command would be the selection of your script from the File Menu.
    However, that functionality has been broken for four full versions now. The Menu Command step goes vacant after quitting and re-launching Illustrator.
    I keep an Action in my Actions palette titled CurrentScript. I can at least, at the beginning of a work session in which I know I will need to call a particular script repeatedly, re-do the Insert Menu Item step and have it survive during the work session. (It will, of course, be gone if I quit & relauch.)
    If Actions could reliably call scripts from the File menu, one could do some very cool things. Many operations in the standard UI are not available via the scripting model, and of course vice-versa. Simply being able to reliably call scripts as individual steps of an Action would open the door for elaborate automations that perform both scripted functions and those available in the UI.
    But alas, users have been complaining about this bug for four versions now.
    I think it is conceivable that one could build a Javascript that employs the ScriptUI functionality, and have that script run automatically at launch. That script could simply be a "dashboard" palette from which to call other scripts. But one should not have to go to such ridiculous lengths to work around a bug that has gone unaddressed for so long.
    JET

  • [Solved] Asus Zenbook Prime (UX31A-DB51) Function key issues

    I recently purchased this machine, and the final issue I have with is that the Function keys are not working. Looking at the wiki I saw that it should work out of the box with 3.4.4-2, and I'm on 3.4.5-1 and have issues with it. Following the instructions on building a patched module led to kernel panics.
    Thanks in advance for any help
    EDIT: dmesg output
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.4.5-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 (GCC) ) #1 SMP PREEMPT Mon Jul 16 21:35:54 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vols-vroot ro cryptdevice=/dev/sda3:encdev:allow-discards quiet add_efi_memmap elevator=noop
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
    [ 0.000000] BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
    [ 0.000000] BIOS-e820: 0000000020200000 - 0000000040004000 (usable)
    [ 0.000000] BIOS-e820: 0000000040004000 - 0000000040005000 (reserved)
    [ 0.000000] BIOS-e820: 0000000040005000 - 00000000d97e5000 (usable)
    [ 0.000000] BIOS-e820: 00000000d97e5000 - 00000000d9de6000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000d9de6000 - 00000000d9de9000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9de9000 - 00000000d9dfe000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9dfe000 - 00000000d9e04000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9e04000 - 00000000d9e06000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9e06000 - 00000000d9e0b000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9e0b000 - 00000000d9f64000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9f64000 - 00000000d9f68000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9f68000 - 00000000d9fa7000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9fa7000 - 00000000d9fae000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9fae000 - 00000000d9fb0000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9fb0000 - 00000000d9fce000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9fce000 - 00000000d9fd1000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9fd1000 - 00000000d9fd3000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9fd3000 - 00000000d9fea000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9fea000 - 00000000d9ff0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9ff0000 - 00000000d9ff8000 (usable)
    [ 0.000000] BIOS-e820: 00000000d9ff8000 - 00000000d9ff9000 (reserved)
    [ 0.000000] BIOS-e820: 00000000d9ff9000 - 00000000da008000 (usable)
    [ 0.000000] BIOS-e820: 00000000da008000 - 00000000da009000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da009000 - 00000000da014000 (usable)
    [ 0.000000] BIOS-e820: 00000000da014000 - 00000000da019000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da019000 - 00000000da037000 (usable)
    [ 0.000000] BIOS-e820: 00000000da037000 - 00000000da039000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da039000 - 00000000da04d000 (usable)
    [ 0.000000] BIOS-e820: 00000000da04d000 - 00000000da04e000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da04e000 - 00000000da060000 (usable)
    [ 0.000000] BIOS-e820: 00000000da060000 - 00000000da086000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da086000 - 00000000da09a000 (usable)
    [ 0.000000] BIOS-e820: 00000000da09a000 - 00000000da09b000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da09b000 - 00000000da09c000 (usable)
    [ 0.000000] BIOS-e820: 00000000da09c000 - 00000000da09e000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da09e000 - 00000000da09f000 (usable)
    [ 0.000000] BIOS-e820: 00000000da09f000 - 00000000da0a4000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da0a4000 - 00000000da0b9000 (usable)
    [ 0.000000] BIOS-e820: 00000000da0b9000 - 00000000da65d000 (reserved)
    [ 0.000000] BIOS-e820: 00000000da65d000 - 00000000da8dd000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000da8dd000 - 00000000da8e2000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000da8e2000 - 00000000da8e3000 (usable)
    [ 0.000000] BIOS-e820: 00000000da8e3000 - 00000000da926000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000da926000 - 00000000dad35000 (usable)
    [ 0.000000] BIOS-e820: 00000000dad35000 - 00000000daff4000 (reserved)
    [ 0.000000] BIOS-e820: 00000000daff4000 - 00000000db000000 (usable)
    [ 0.000000] BIOS-e820: 00000000dbc00000 - 00000000dfe00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed04000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 000000011f200000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by American Megatrends
    [ 0.000000] efi: ACPI=0xda8b0000 ACPI 2.0=0xda8b0000 SMBIOS=0xf04c0 MPS=0xfd4b0
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000008000) (0MB)
    [ 0.000000] efi: mem01: type=7, attr=0xf, range=[0x0000000000008000-0x000000000005e000) (0MB)
    [ 0.000000] efi: mem02: type=4, attr=0xf, range=[0x000000000005e000-0x0000000000060000) (0MB)
    [ 0.000000] efi: mem03: type=3, attr=0xf, range=[0x0000000000060000-0x000000000009f000) (0MB)
    [ 0.000000] efi: mem04: type=6, attr=0x800000000000000f, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem05: type=2, attr=0xf, range=[0x0000000000100000-0x0000000000fc2000) (14MB)
    [ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000000fc2000-0x0000000001000000) (0MB)
    [ 0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001100000) (1MB)
    [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000001100000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002ec2000) (14MB)
    [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000002ec2000-0x0000000020000000) (465MB)
    [ 0.000000] efi: mem11: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000020200000-0x0000000037556000) (371MB)
    [ 0.000000] efi: mem13: type=2, attr=0xf, range=[0x0000000037556000-0x0000000037aa3000) (5MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000037aa3000-0x0000000040004000) (133MB)
    [ 0.000000] efi: mem15: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
    [ 0.000000] efi: mem16: type=7, attr=0xf, range=[0x0000000040005000-0x000000009accd000) (1452MB)
    [ 0.000000] efi: mem17: type=2, attr=0xf, range=[0x000000009accd000-0x00000000ce792000) (826MB)
    [ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x00000000ce792000-0x00000000ceac1000) (3MB)
    [ 0.000000] efi: mem19: type=7, attr=0xf, range=[0x00000000ceac1000-0x00000000ceac5000) (0MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x00000000ceac5000-0x00000000ceace000) (0MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x00000000ceace000-0x00000000ceb65000) (0MB)
    [ 0.000000] efi: mem22: type=1, attr=0xf, range=[0x00000000ceb65000-0x00000000ceb83000) (0MB)
    [ 0.000000] efi: mem23: type=7, attr=0xf, range=[0x00000000ceb83000-0x00000000ceba1000) (0MB)
    [ 0.000000] efi: mem24: type=4, attr=0xf, range=[0x00000000ceba1000-0x00000000cebf6000) (0MB)
    [ 0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000cebf6000-0x00000000cebfb000) (0MB)
    [ 0.000000] efi: mem26: type=4, attr=0xf, range=[0x00000000cebfb000-0x00000000ced71000) (1MB)
    [ 0.000000] efi: mem27: type=7, attr=0xf, range=[0x00000000ced71000-0x00000000ced79000) (0MB)
    [ 0.000000] efi: mem28: type=4, attr=0xf, range=[0x00000000ced79000-0x00000000d90f9000) (163MB)
    [ 0.000000] efi: mem29: type=7, attr=0xf, range=[0x00000000d90f9000-0x00000000d97b2000) (6MB)
    [ 0.000000] efi: mem30: type=2, attr=0xf, range=[0x00000000d97b2000-0x00000000d97bb000) (0MB)
    [ 0.000000] efi: mem31: type=3, attr=0xf, range=[0x00000000d97bb000-0x00000000d97e5000) (0MB)
    [ 0.000000] efi: mem32: type=10, attr=0xf, range=[0x00000000d97e5000-0x00000000d9de6000) (6MB)
    [ 0.000000] efi: mem33: type=5, attr=0x800000000000000f, range=[0x00000000d9de6000-0x00000000d9de9000) (0MB)
    [ 0.000000] efi: mem34: type=3, attr=0xf, range=[0x00000000d9de9000-0x00000000d9dfe000) (0MB)
    [ 0.000000] efi: mem35: type=5, attr=0x800000000000000f, range=[0x00000000d9dfe000-0x00000000d9e04000) (0MB)
    [ 0.000000] efi: mem36: type=3, attr=0xf, range=[0x00000000d9e04000-0x00000000d9e06000) (0MB)
    [ 0.000000] efi: mem37: type=5, attr=0x800000000000000f, range=[0x00000000d9e06000-0x00000000d9e0b000) (0MB)
    [ 0.000000] efi: mem38: type=3, attr=0xf, range=[0x00000000d9e0b000-0x00000000d9f64000) (1MB)
    [ 0.000000] efi: mem39: type=5, attr=0x800000000000000f, range=[0x00000000d9f64000-0x00000000d9f68000) (0MB)
    [ 0.000000] efi: mem40: type=3, attr=0xf, range=[0x00000000d9f68000-0x00000000d9fa7000) (0MB)
    [ 0.000000] efi: mem41: type=5, attr=0x800000000000000f, range=[0x00000000d9fa7000-0x00000000d9fae000) (0MB)
    [ 0.000000] efi: mem42: type=3, attr=0xf, range=[0x00000000d9fae000-0x00000000d9fb0000) (0MB)
    [ 0.000000] efi: mem43: type=6, attr=0x800000000000000f, range=[0x00000000d9fb0000-0x00000000d9fbd000) (0MB)
    [ 0.000000] efi: mem44: type=5, attr=0x800000000000000f, range=[0x00000000d9fbd000-0x00000000d9fce000) (0MB)
    [ 0.000000] efi: mem45: type=3, attr=0xf, range=[0x00000000d9fce000-0x00000000d9fd1000) (0MB)
    [ 0.000000] efi: mem46: type=5, attr=0x800000000000000f, range=[0x00000000d9fd1000-0x00000000d9fd3000) (0MB)
    [ 0.000000] efi: mem47: type=3, attr=0xf, range=[0x00000000d9fd3000-0x00000000d9fea000) (0MB)
    [ 0.000000] efi: mem48: type=5, attr=0x800000000000000f, range=[0x00000000d9fea000-0x00000000d9ff0000) (0MB)
    [ 0.000000] efi: mem49: type=3, attr=0xf, range=[0x00000000d9ff0000-0x00000000d9ff8000) (0MB)
    [ 0.000000] efi: mem50: type=5, attr=0x800000000000000f, range=[0x00000000d9ff8000-0x00000000d9ff9000) (0MB)
    [ 0.000000] efi: mem51: type=3, attr=0xf, range=[0x00000000d9ff9000-0x00000000da008000) (0MB)
    [ 0.000000] efi: mem52: type=5, attr=0x800000000000000f, range=[0x00000000da008000-0x00000000da009000) (0MB)
    [ 0.000000] efi: mem53: type=3, attr=0xf, range=[0x00000000da009000-0x00000000da014000) (0MB)
    [ 0.000000] efi: mem54: type=5, attr=0x800000000000000f, range=[0x00000000da014000-0x00000000da019000) (0MB)
    [ 0.000000] efi: mem55: type=3, attr=0xf, range=[0x00000000da019000-0x00000000da037000) (0MB)
    [ 0.000000] efi: mem56: type=5, attr=0x800000000000000f, range=[0x00000000da037000-0x00000000da039000) (0MB)
    [ 0.000000] efi: mem57: type=3, attr=0xf, range=[0x00000000da039000-0x00000000da04d000) (0MB)
    [ 0.000000] efi: mem58: type=5, attr=0x800000000000000f, range=[0x00000000da04d000-0x00000000da04e000) (0MB)
    [ 0.000000] efi: mem59: type=3, attr=0xf, range=[0x00000000da04e000-0x00000000da060000) (0MB)
    [ 0.000000] efi: mem60: type=5, attr=0x800000000000000f, range=[0x00000000da060000-0x00000000da086000) (0MB)
    [ 0.000000] efi: mem61: type=3, attr=0xf, range=[0x00000000da086000-0x00000000da09a000) (0MB)
    [ 0.000000] efi: mem62: type=5, attr=0x800000000000000f, range=[0x00000000da09a000-0x00000000da09b000) (0MB)
    [ 0.000000] efi: mem63: type=3, attr=0xf, range=[0x00000000da09b000-0x00000000da09c000) (0MB)
    [ 0.000000] efi: mem64: type=5, attr=0x800000000000000f, range=[0x00000000da09c000-0x00000000da09e000) (0MB)
    [ 0.000000] efi: mem65: type=3, attr=0xf, range=[0x00000000da09e000-0x00000000da09f000) (0MB)
    [ 0.000000] efi: mem66: type=5, attr=0x800000000000000f, range=[0x00000000da09f000-0x00000000da0a4000) (0MB)
    [ 0.000000] efi: mem67: type=3, attr=0xf, range=[0x00000000da0a4000-0x00000000da0b9000) (0MB)
    [ 0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000da0b9000-0x00000000da119000) (0MB)
    [ 0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000da119000-0x00000000da133000) (0MB)
    [ 0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000da133000-0x00000000da139000) (0MB)
    [ 0.000000] efi: mem71: type=6, attr=0x800000000000000f, range=[0x00000000da139000-0x00000000da13e000) (0MB)
    [ 0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000da13e000-0x00000000da140000) (0MB)
    [ 0.000000] efi: mem73: type=6, attr=0x800000000000000f, range=[0x00000000da140000-0x00000000da15d000) (0MB)
    [ 0.000000] efi: mem74: type=0, attr=0xf, range=[0x00000000da15d000-0x00000000da28c000) (1MB)
    [ 0.000000] efi: mem75: type=0, attr=0xf, range=[0x00000000da28c000-0x00000000da5f2000) (3MB)
    [ 0.000000] efi: mem76: type=0, attr=0xf, range=[0x00000000da5f2000-0x00000000da5f8000) (0MB)
    [ 0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000da5f8000-0x00000000da65d000) (0MB)
    [ 0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000da65d000-0x00000000da72b000) (0MB)
    [ 0.000000] efi: mem79: type=10, attr=0xf, range=[0x00000000da72b000-0x00000000da8c7000) (1MB)
    [ 0.000000] efi: mem80: type=10, attr=0xf, range=[0x00000000da8c7000-0x00000000da8c9000) (0MB)
    [ 0.000000] efi: mem81: type=10, attr=0xf, range=[0x00000000da8c9000-0x00000000da8dd000) (0MB)
    [ 0.000000] efi: mem82: type=9, attr=0xf, range=[0x00000000da8dd000-0x00000000da8e1000) (0MB)
    [ 0.000000] efi: mem83: type=9, attr=0xf, range=[0x00000000da8e1000-0x00000000da8e2000) (0MB)
    [ 0.000000] efi: mem84: type=4, attr=0xf, range=[0x00000000da8e2000-0x00000000da8e3000) (0MB)
    [ 0.000000] efi: mem85: type=10, attr=0xf, range=[0x00000000da8e3000-0x00000000da926000) (0MB)
    [ 0.000000] efi: mem86: type=4, attr=0xf, range=[0x00000000da926000-0x00000000daa70000) (1MB)
    [ 0.000000] efi: mem87: type=3, attr=0xf, range=[0x00000000daa70000-0x00000000dad06000) (2MB)
    [ 0.000000] efi: mem88: type=4, attr=0xf, range=[0x00000000dad06000-0x00000000dad0b000) (0MB)
    [ 0.000000] efi: mem89: type=3, attr=0xf, range=[0x00000000dad0b000-0x00000000dad0f000) (0MB)
    [ 0.000000] efi: mem90: type=4, attr=0xf, range=[0x00000000dad0f000-0x00000000dad1c000) (0MB)
    [ 0.000000] efi: mem91: type=3, attr=0xf, range=[0x00000000dad1c000-0x00000000dad2e000) (0MB)
    [ 0.000000] efi: mem92: type=4, attr=0xf, range=[0x00000000dad2e000-0x00000000dad35000) (0MB)
    [ 0.000000] efi: mem93: type=6, attr=0x800000000000000f, range=[0x00000000dad35000-0x00000000daff4000) (2MB)
    [ 0.000000] efi: mem94: type=4, attr=0xf, range=[0x00000000daff4000-0x00000000db000000) (0MB)
    [ 0.000000] efi: mem95: type=7, attr=0xf, range=[0x0000000100000000-0x000000011f200000) (498MB)
    [ 0.000000] efi: mem96: type=0, attr=0x8000000000000000, range=[0x00000000dbc00000-0x00000000dfe00000) (66MB)
    [ 0.000000] efi: mem97: type=11, attr=0x8000000000000001, range=[0x00000000f8000000-0x00000000fc000000) (64MB)
    [ 0.000000] efi: mem98: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem99: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
    [ 0.000000] efi: mem100: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem101: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem102: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: ASUSTeK COMPUTER INC. UX31A/UX31A, BIOS UX31A.204 05/09/2012
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x11f200 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F00000000 write-back
    [ 0.000000] 1 base 100000000 mask FE0000000 write-back
    [ 0.000000] 2 base 0E0000000 mask FE0000000 uncachable
    [ 0.000000] 3 base 0DC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0DBC00000 mask FFFC00000 uncachable
    [ 0.000000] 5 base 11F800000 mask FFF800000 uncachable
    [ 0.000000] 6 base 11F400000 mask FFFC00000 uncachable
    [ 0.000000] 7 base 11F200000 mask FFFE00000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000dbc00000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xdb000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fd780] fd780
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000db000000
    [ 0.000000] 0000000000 - 00db000000 page 2M
    [ 0.000000] kernel direct mapping tables up to db000000 @ 1fffb000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000011f200000
    [ 0.000000] 0100000000 - 011f200000 page 2M
    [ 0.000000] kernel direct mapping tables up to 11f200000 @ d97b5000-d97bb000
    [ 0.000000] RAMDISK: 37556000 - 37aa3000
    [ 0.000000] ACPI: RSDP 00000000da8b0000 00024 (v02 _ASUS_)
    [ 0.000000] ACPI: XSDT 00000000da8b0090 0009C (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000da8c2058 000F4 (v04 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000da8b01c0 11E96 (v02 _ASUS_ Notebook 00000013 INTL 20091112)
    [ 0.000000] ACPI: FACS 00000000da8daf80 00040
    [ 0.000000] ACPI: APIC 00000000da8c2150 00072 (v03 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 00000000da8c21c8 00044 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
    [ 0.000000] ACPI: ECDT 00000000da8c2210 000C1 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
    [ 0.000000] ACPI: MCFG 00000000da8c22d8 0003C (v01 _ASUS_ Notebook 01072009 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000da8c2318 00A3C (v01 DptfTa DptfTab 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000da8c2d58 00CA5 (v01 SADptf SADptf_ 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000da8c3a00 00098 (v01 PchDpt PchDptf 00001000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000da8c3a98 0091C (v01 CfgTDP CfgTDP_ 00001000 INTL 20091112)
    [ 0.000000] ACPI: SLIC 00000000da8c43b8 00176 (v01 _ASUS_ Notebook 01072009 ASUS 00000001)
    [ 0.000000] ACPI: HPET 00000000da8c4530 00038 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
    [ 0.000000] ACPI: SSDT 00000000da8c4568 00886 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000da8c4df0 00A92 (v01 PmRef CpuPm 00003000 INTL 20051117)
    [ 0.000000] ACPI: DMAR 00000000da8c5888 000B8 (v01 INTEL SNB 00000001 INTL 00000001)
    [ 0.000000] ACPI: BGRT 00000000da8c5940 00038 (v00 _ASUS_ Notebook 01072009 ASUS 00010013)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000011f200000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000011f200000
    [ 0.000000] NODE_DATA [000000011f1fc000 - 000000011f1fffff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011a800000-ffff88011e7fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0011f200
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] Early memory PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009f
    [ 0.000000] 0: 0x00000100 -> 0x00020000
    [ 0.000000] 0: 0x00020200 -> 0x00040004
    [ 0.000000] 0: 0x00040005 -> 0x000d97e5
    [ 0.000000] 0: 0x000d9de9 -> 0x000d9dfe
    [ 0.000000] 0: 0x000d9e04 -> 0x000d9e06
    [ 0.000000] 0: 0x000d9e0b -> 0x000d9f64
    [ 0.000000] 0: 0x000d9f68 -> 0x000d9fa7
    [ 0.000000] 0: 0x000d9fae -> 0x000d9fb0
    [ 0.000000] 0: 0x000d9fce -> 0x000d9fd1
    [ 0.000000] 0: 0x000d9fd3 -> 0x000d9fea
    [ 0.000000] 0: 0x000d9ff0 -> 0x000d9ff8
    [ 0.000000] 0: 0x000d9ff9 -> 0x000da008
    [ 0.000000] 0: 0x000da009 -> 0x000da014
    [ 0.000000] 0: 0x000da019 -> 0x000da037
    [ 0.000000] 0: 0x000da039 -> 0x000da04d
    [ 0.000000] 0: 0x000da04e -> 0x000da060
    [ 0.000000] 0: 0x000da086 -> 0x000da09a
    [ 0.000000] 0: 0x000da09b -> 0x000da09c
    [ 0.000000] 0: 0x000da09e -> 0x000da09f
    [ 0.000000] 0: 0x000da0a4 -> 0x000da0b9
    [ 0.000000] 0: 0x000da8e2 -> 0x000da8e3
    [ 0.000000] 0: 0x000da926 -> 0x000dad35
    [ 0.000000] 0: 0x000daff4 -> 0x000db000
    [ 0.000000] 0: 0x00100000 -> 0x0011f200
    [ 0.000000] On node 0 totalpages: 1019371
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 11 pages reserved
    [ 0.000000] DMA zone: 3908 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 871580 pages, LIFO batch:31
    [ 0.000000] Normal zone: 1992 pages used for memmap
    [ 0.000000] Normal zone: 125496 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
    [ 0.000000] PM: Registered nosave memory: 00000000d97e5000 - 00000000d9de6000
    [ 0.000000] PM: Registered nosave memory: 00000000d9de6000 - 00000000d9de9000
    [ 0.000000] PM: Registered nosave memory: 00000000d9dfe000 - 00000000d9e04000
    [ 0.000000] PM: Registered nosave memory: 00000000d9e06000 - 00000000d9e0b000
    [ 0.000000] PM: Registered nosave memory: 00000000d9f64000 - 00000000d9f68000
    [ 0.000000] PM: Registered nosave memory: 00000000d9fa7000 - 00000000d9fae000
    [ 0.000000] PM: Registered nosave memory: 00000000d9fb0000 - 00000000d9fce000
    [ 0.000000] PM: Registered nosave memory: 00000000d9fd1000 - 00000000d9fd3000
    [ 0.000000] PM: Registered nosave memory: 00000000d9fea000 - 00000000d9ff0000
    [ 0.000000] PM: Registered nosave memory: 00000000d9ff8000 - 00000000d9ff9000
    [ 0.000000] PM: Registered nosave memory: 00000000da008000 - 00000000da009000
    [ 0.000000] PM: Registered nosave memory: 00000000da014000 - 00000000da019000
    [ 0.000000] PM: Registered nosave memory: 00000000da037000 - 00000000da039000
    [ 0.000000] PM: Registered nosave memory: 00000000da04d000 - 00000000da04e000
    [ 0.000000] PM: Registered nosave memory: 00000000da060000 - 00000000da086000
    [ 0.000000] PM: Registered nosave memory: 00000000da09a000 - 00000000da09b000
    [ 0.000000] PM: Registered nosave memory: 00000000da09c000 - 00000000da09e000
    [ 0.000000] PM: Registered nosave memory: 00000000da09f000 - 00000000da0a4000
    [ 0.000000] PM: Registered nosave memory: 00000000da0b9000 - 00000000da65d000
    [ 0.000000] PM: Registered nosave memory: 00000000da65d000 - 00000000da8dd000
    [ 0.000000] PM: Registered nosave memory: 00000000da8dd000 - 00000000da8e2000
    [ 0.000000] PM: Registered nosave memory: 00000000da8e3000 - 00000000da926000
    [ 0.000000] PM: Registered nosave memory: 00000000dad35000 - 00000000daff4000
    [ 0.000000] PM: Registered nosave memory: 00000000db000000 - 00000000dbc00000
    [ 0.000000] PM: Registered nosave memory: 00000000dbc00000 - 00000000dfe00000
    [ 0.000000] PM: Registered nosave memory: 00000000dfe00000 - 00000000f8000000
    [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
    [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at dfe00000 (gap: dfe00000:18200000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011ee00000 s82880 r8192 d23616 u524288
    [ 0.000000] pcpu-alloc: s82880 r8192 d23616 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1000984
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vols-vroot ro cryptdevice=/dev/sda3:encdev:allow-discards quiet add_efi_memmap elevator=noop
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3749436k/4704256k available (4538k kernel code, 626772k absent, 328048k reserved, 4308k data, 740k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 1696.065 MHz processor.
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 3393.46 BogoMIPS (lpj=5653550)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000027] init_memory_mapping: 00000000dbc00000-00000000dfe00000
    [ 0.000031] 00dbc00000 - 00dfe00000 page 2M
    [ 0.151052] Security Framework initialized
    [ 0.151060] AppArmor: AppArmor disabled by boot time parameter
    [ 0.151411] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.152933] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.153609] Mount-cache hash table entries: 256
    [ 0.153820] Initializing cgroup subsys cpuacct
    [ 0.153823] Initializing cgroup subsys memory
    [ 0.153832] Initializing cgroup subsys devices
    [ 0.153834] Initializing cgroup subsys freezer
    [ 0.153836] Initializing cgroup subsys net_cls
    [ 0.153838] Initializing cgroup subsys blkio
    [ 0.153874] CPU: Physical Processor ID: 0
    [ 0.153875] CPU: Processor Core ID: 0
    [ 0.153882] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    [ 0.153883] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.154440] mce: CPU supports 7 MCE banks
    [ 0.154456] CPU0: Thermal monitoring enabled (TM1)
    [ 0.154464] using mwait in idle threads.
    [ 0.155854] ACPI: Core revision 20120320
    [ 0.172956] ftrace: allocating 17824 entries in 70 pages
    [ 0.186631] DMAR: Host address width 36
    [ 0.186634] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
    [ 0.186647] IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
    [ 0.186650] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
    [ 0.186661] IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
    [ 0.186663] DMAR: RMRR base: 0x000000da3af000 end: 0x000000da3cbfff
    [ 0.186666] DMAR: RMRR base: 0x000000dbc00000 end: 0x000000dfdfffff
    [ 0.186743] IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
    [ 0.186745] HPET id 0 under DRHD base 0xfed91000
    [ 0.186954] Enabled IRQ remapping in x2apic mode
    [ 0.186956] Enabling x2apic
    [ 0.186958] Enabled x2apic
    [ 0.186967] Switched APIC routing to cluster x2apic.
    [ 0.187451] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.220416] CPU0: Intel(R) Core(TM) i5-3317U CPU @ 1.70GHz stepping 09
    [ 0.324902] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
    [ 0.324909] ... version: 3
    [ 0.324910] ... bit width: 48
    [ 0.324912] ... generic registers: 4
    [ 0.324914] ... value mask: 0000ffffffffffff
    [ 0.324916] ... max period: 000000007fffffff
    [ 0.324917] ... fixed-purpose events: 3
    [ 0.324919] ... event mask: 000000070000000f
    [ 0.344968] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.364889] Booting Node 0, Processors #1
    [ 0.378630] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.391536] #2
    [ 0.405332] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.418168] #3 Ok.
    [ 0.431901] NMI watchdog: enabled, takes one hw-pmu counter.
    [ 0.431937] Brought up 4 CPUs
    [ 0.431939] Total of 4 processors activated (13573.87 BogoMIPS).
    [ 0.436493] devtmpfs: initialized
    [ 0.437768] PM: Registering ACPI NVS region [mem 0xd97e5000-0xd9de5fff] (6295552 bytes)
    [ 0.437873] PM: Registering ACPI NVS region [mem 0xda65d000-0xda8dcfff] (2621440 bytes)
    [ 0.437918] PM: Registering ACPI NVS region [mem 0xda8e3000-0xda925fff] (274432 bytes)
    [ 0.438826] NET: Registered protocol family 16
    [ 0.438966] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.438969] ACPI: bus type pci registered
    [ 0.439040] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.439044] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.488460] PCI: Using configuration type 1 for base access
    [ 0.489097] bio: create slab <bio-0> at 0
    [ 0.489161] ACPI: Added _OSI(Module Device)
    [ 0.489163] ACPI: Added _OSI(Processor Device)
    [ 0.489165] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.489168] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.492211] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.495384] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.500091] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.500635] ACPI: SSDT 00000000da60a018 00853 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.501405] ACPI: Dynamic OEM Table Load:
    [ 0.501409] ACPI: SSDT (null) 00853 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.501770] ACPI: SSDT 00000000da60ba98 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.502576] ACPI: Dynamic OEM Table Load:
    [ 0.502579] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.502752] ACPI: SSDT 00000000da60cc18 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.503510] ACPI: Dynamic OEM Table Load:
    [ 0.503513] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.504368] ACPI: Interpreter enabled
    [ 0.504373] ACPI: (supports S0 S3 S4 S5)
    [ 0.504406] ACPI: Using IOAPIC for interrupt routing
    [ 0.512510] ACPI: EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
    [ 0.512789] ACPI: No dock devices found.
    [ 0.512794] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.513213] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.513809] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.513812] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.513815] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.513818] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [ 0.513821] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [ 0.513823] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [ 0.513826] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    [ 0.513829] pci_root PNP0A08:00: host bridge window [mem 0xdfe00000-0xfeafffff]
    [ 0.513867] PCI host bridge to bus 0000:00
    [ 0.513870] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.513873] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.513875] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.513878] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.513880] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.513883] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.513885] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.513888] pci_bus 0000:00: root bus resource [mem 0xdfe00000-0xfeafffff]
    [ 0.513899] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.513952] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
    [ 0.513968] pci 0000:00:02.0: reg 10: [mem 0xf7800000-0xf7bfffff 64bit]
    [ 0.513977] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.513985] pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f]
    [ 0.514032] pci 0000:00:04.0: [8086:0153] type 00 class 0x118000
    [ 0.514046] pci 0000:00:04.0: reg 10: [mem 0xfed98000-0xfed9ffff 64bit]
    [ 0.514135] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.514163] pci 0000:00:14.0: reg 10: [mem 0xf7d00000-0xf7d0ffff 64bit]
    [ 0.514257] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.514289] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.514320] pci 0000:00:16.0: reg 10: [mem 0xf7d22000-0xf7d2200f 64bit]
    [ 0.514413] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.514463] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.514489] pci 0000:00:1a.0: reg 10: [mem 0xf7d20000-0xf7d203ff]
    [ 0.514599] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.514632] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.514654] pci 0000:00:1b.0: reg 10: [mem 0xf7d18000-0xf7d1bfff 64bit]
    [ 0.514739] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.514775] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.514909] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.514948] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.515082] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.515141] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.515168] pci 0000:00:1d.0: reg 10: [mem 0xf7d1f000-0xf7d1f3ff]
    [ 0.515282] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.515316] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
    [ 0.515466] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.515490] pci 0000:00:1f.2: reg 10: [io 0xf0b0-0xf0b7]
    [ 0.515500] pci 0000:00:1f.2: reg 14: [io 0xf0a0-0xf0a3]
    [ 0.515512] pci 0000:00:1f.2: reg 18: [io 0xf090-0xf097]
    [ 0.515522] pci 0000:00:1f.2: reg 1c: [io 0xf080-0xf083]
    [ 0.515532] pci 0000:00:1f.2: reg 20: [io 0xf060-0xf07f]
    [ 0.515542] pci 0000:00:1f.2: reg 24: [mem 0xf7d1e000-0xf7d1e7ff]
    [ 0.515605] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.515629] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.515651] pci 0000:00:1f.3: reg 10: [mem 0xf7d1d000-0xf7d1d0ff 64bit]
    [ 0.515682] pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f]
    [ 0.515732] pci 0000:00:1f.6: [8086:1e24] type 00 class 0x118000
    [ 0.515758] pci 0000:00:1f.6: reg 10: [mem 0xf7d1c000-0xf7d1cfff 64bit]
    [ 0.515922] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.516173] pci 0000:02:00.0: [8086:088e] type 00 class 0x028000
    [ 0.516366] pci 0000:02:00.0: reg 10: [mem 0xf7c00000-0xf7c01fff 64bit]
    [ 0.517198] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.521918] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 0.521928] pci 0000:00:1c.1: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.521957] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.522122] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.522161] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.522339] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.522604] pci0000:00: ACPI _OSC control (0x18) granted
    [ 0.528361] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12)
    [ 0.528420] ACPI: PCI Interrupt Link [LNKB] (IRQs *3 4 5 6 7 10 12)
    [ 0.528480] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *10 12)
    [ 0.528531] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 12)
    [ 0.528584] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.528635] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.528687] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 12)
    [ 0.528737] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 7 10 12)
    [ 0.528831] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.528838] vgaarb: loaded
    [ 0.528839] vgaarb: bridge control possible 0000:00:02.0
    [ 0.528883] PCI: Using ACPI for IRQ routing
    [ 0.530787] PCI: pci_cache_line_size set to 64 bytes
    [ 0.530797] pci 0000:00:04.0: no compatible bridge window for [mem 0xfed98000-0xfed9ffff 64bit]
    [ 0.530873] reserve RAM buffer: 000000000009f000 - 000000000009ffff
    [ 0.530876] reserve RAM buffer: 0000000040004000 - 0000000043ffffff
    [ 0.530879] reserve RAM buffer: 00000000d97e5000 - 00000000dbffffff
    [ 0.530891] reserve RAM buffer: 00000000d9dfe000 - 00000000dbffffff
    [ 0.530903] reserve RAM buffer: 00000000d9e06000 - 00000000dbffffff
    [ 0.530914] reserve RAM buffer: 00000000d9f64000 - 00000000dbffffff
    [ 0.530925] reserve RAM buffer: 00000000d9fa7000 - 00000000dbffffff
    [ 0.530936] reserve RAM buffer: 00000000d9fb0000 - 00000000dbffffff
    [ 0.530946] reserve RAM buffer: 00000000d9fd1000 - 00000000dbffffff
    [ 0.530956] reserve RAM buffer: 00000000d9fea000 - 00000000dbffffff
    [ 0.530966] reserve RAM buffer: 00000000d9ff8000 - 00000000dbffffff
    [ 0.530975] reserve RAM buffer: 00000000da008000 - 00000000dbffffff
    [ 0.530984] reserve RAM buffer: 00000000da014000 - 00000000dbffffff
    [ 0.530993] reserve RAM buffer: 00000000da037000 - 00000000dbffffff
    [ 0.531001] reserve RAM buffer: 00000000da04d000 - 00000000dbffffff
    [ 0.531008] reserve RAM buffer: 00000000da060000 - 00000000dbffffff
    [ 0.531015] reserve RAM buffer: 00000000da09a000 - 00000000dbffffff
    [ 0.531022] reserve RAM buffer: 00000000da09c000 - 00000000dbffffff
    [ 0.531028] reserve RAM buffer: 00000000da09f000 - 00000000dbffffff
    [ 0.531033] reserve RAM buffer: 00000000da0b9000 - 00000000dbffffff
    [ 0.531038] reserve RAM buffer: 00000000da8e3000 - 00000000dbffffff
    [ 0.531042] reserve RAM buffer: 00000000dad35000 - 00000000dbffffff
    [ 0.531045] reserve RAM buffer: 00000000db000000 - 00000000dbffffff
    [ 0.531048] reserve RAM buffer: 000000011f200000 - 000000011fffffff
    [ 0.531151] NetLabel: Initializing
    [ 0.531153] NetLabel: domain hash size = 128
    [ 0.531155] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.531169] NetLabel: unlabeled traffic allowed by default
    [ 0.531194] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.531202] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.533219] Switching to clocksource hpet
    [ 0.539356] pnp: PnP ACPI init
    [ 0.539371] ACPI: bus type pnp registered
    [ 0.539727] pnp 00:00: [bus 00-3e]
    [ 0.539735] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.539737] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.539739] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.539742] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.539744] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    [ 0.539747] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    [ 0.539749] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    [ 0.539751] pnp 00:00: [mem 0x000cc000-0x000cffff window]
    [ 0.539754] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    [ 0.539756] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    [ 0.539759] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    [ 0.539761] pnp 00:00: [mem 0x000dc000-0x000dffff window]
    [ 0.539763] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    [ 0.539766] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    [ 0.539768] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    [ 0.539770] pnp 00:00: [mem 0x000ec000-0x000effff window]
    [ 0.539773] pnp 00:00: [mem 0x000f0000-0x000fffff window]
    [ 0.539775] pnp 00:00: [mem 0xdfe00000-0xfeafffff window]
    [ 0.539777] pnp 00:00: [mem 0x00010000-0x0001ffff window]
    [ 0.539852] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.539883] pnp 00:01: [mem 0xfed40000-0xfed44fff]
    [ 0.539934] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.539938] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.540008] pnp 00:02: [io 0x0000-0x001f]
    [ 0.540010] pnp 00:02: [io 0x0081-0x0091]
    [ 0.540012] pnp 00:02: [io 0x0093-0x009f]
    [ 0.540014] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.540016] pnp 00:02: [dma 4]
    [ 0.540049] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.540058] pnp 00:03: [mem 0xff000000-0xffffffff]
    [ 0.540087] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.540186] pnp 00:04: [mem 0xfed00000-0xfed003ff]
    [ 0.540219] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.540233] pnp 00:05: [io 0x002e-0x002f]
    [ 0.540235] pnp 00:05: [io 0x004e-0x004f]
    [ 0.540237] pnp 00:05: [io 0x0061]
    [ 0.540239] pnp 00:05: [io 0x0063]
    [ 0.540241] pnp 00:05: [io 0x0065]
    [ 0.540243] pnp 00:05: [io 0x0067]
    [ 0.540245] pnp 00:05: [io 0x0070]
    [ 0.540246] pnp 00:05: [io 0x0080]
    [ 0.540248] pnp 00:05: [io 0x0092]
    [ 0.540250] pnp 00:05: [io 0x00b2-0x00b3]
    [ 0.540252] pnp 00:05: [io 0x0680-0x069f]
    [ 0.540254] pnp 00:05: [io 0x0200-0x020f]
    [ 0.540256] pnp 00:05: [io 0xffff]
    [ 0.540258] pnp 00:05: [io 0xffff]
    [ 0.540260] pnp 00:05: [io 0x0400-0x0453]
    [ 0.540264] pnp 00:05: [io 0x0458-0x047f]
    [ 0.540266] pnp 00:05: [io 0x0500-0x057f]
    [ 0.540268] pnp 00:05: [io 0x164e-0x164f]
    [ 0.540315] system 00:05: [io 0x0680-0x069f] has been reserved
    [ 0.540318] system 00:05: [io 0x0200-0x020f] has been reserved
    [ 0.540320] system 00:05: [io 0xffff] has been reserved
    [ 0.540323] system 00:05: [io 0xffff] has been reserved
    [ 0.540326] system 00:05: [io 0x0400-0x0453] has been reserved
    [ 0.540328] system 00:05: [io 0x0458-0x047f] has been reserved
    [ 0.540331] system 00:05: [io 0x0500-0x057f] has been reserved
    [ 0.540334] system 00:05: [io 0x164e-0x164f] has been reserved
    [ 0.540338] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.540348] pnp 00:06: [io 0x0070-0x0077]
    [ 0.540362] pnp 00:06: [irq 8]
    [ 0.540395] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.540427] pnp 00:07: [io 0x0454-0x0457]
    [ 0.540471] system 00:07: [io 0x0454-0x0457] has been reserved
    [ 0.540474] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.540502] pnp 00:08: [io 0x0010-0x001f]
    [ 0.540504] pnp 00:08: [io 0x0022-0x003f]
    [ 0.540506] pnp 00:08: [io 0x0044-0x005f]
    [ 0.540508] pnp 00:08: [io 0x0072-0x007f]
    [ 0.540510] pnp 00:08: [io 0x0080]
    [ 0.540512] pnp 00:08: [io 0x0084-0x0086]
    [ 0.540514] pnp 00:08: [io 0x0088]
    [ 0.540516] pnp 00:08: [io 0x008c-0x008e]
    [ 0.540518] pnp 00:08: [io 0x0090-0x009f]
    [ 0.540520] pnp 00:08: [io 0x00a2-0x00bf]
    [ 0.540522] pnp 00:08: [io 0x00e0-0x00ef]
    [ 0.540524] pnp 00:08: [io 0x04d0-0x04d1]
    [ 0.540571] system 00:08: [io 0x04d0-0x04d1] has been reserved
    [ 0.540575] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.540584] pnp 00:09: [io 0x00f0-0x00ff]
    [ 0.540593] pnp 00:09: [irq 13]
    [ 0.540627] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.540680] pnp 00:0a: [irq 12]
    [ 0.540716] pnp 00:0a: Plug and Play ACPI device, IDs ETD0105 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
    [ 0.540743] pnp 00:0b: [io 0x0060]
    [ 0.540745] pnp 00:0b: [io 0x0064]
    [ 0.540752] pnp 00:0b: [irq 1]
    [ 0.540788] pnp 00:0b: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.541018] pnp 00:0c: [mem 0xfed1c000-0xfed1ffff]
    [ 0.541020] pnp 00:0c: [mem 0xfed10000-0xfed17fff]
    [ 0.541022] pnp 00:0c: [mem 0xfed18000-0xfed18fff]
    [ 0.541024] pnp 00:0c: [mem 0xfed19000-0xfed19fff]
    [ 0.541027] pnp 00:0c: [mem 0xf8000000-0xfbffffff]
    [ 0.541029] pnp 00:0c: [mem 0xfed20000-0xfed3ffff]
    [ 0.541031] pnp 00:0c: [mem 0xfed90000-0xfed93fff]
    [ 0.541033] pnp 00:0c: [mem 0xfed45000-0xfed8ffff]
    [ 0.541035] pnp 00:0c: [mem 0xff000000-0xffffffff]
    [ 0.541038] pnp 00:0c: [mem 0xfee00000-0xfeefffff]
    [ 0.541040] pnp 00:0c: [mem 0xdfe00000-0xdfe00fff]
    [ 0.541103] system 00:0c: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.541106] system 00:0c: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.541109] system 00:0c: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.541112] system 00:0c: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.541116] system 00:0c: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.541119] system 00:0c: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.541122] system 00:0c: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.541125] system 00:0c: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.541128] system 00:0c: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.541131] system 00:0c: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.541134] system 00:0c: [mem 0xdfe00000-0xdfe00fff] has been reserved
    [ 0.541138] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.541211] pnp 00:0d: [mem 0xdfe00000-0xdfe00fff]
    [ 0.541274] system 00:0d: [mem 0xdfe00000-0xdfe00fff] has been reserved
    [ 0.541278] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.541430] pnp 00:0e: [mem 0x20000000-0x201fffff]
    [ 0.541433] pnp 00:0e: [mem 0x40004000-0x40004fff]
    [ 0.541495] system 00:0e: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.541497] system 00:0e: [mem 0x40004000-0x40004fff] has been reserved
    [ 0.541501] system 00:0e: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.541534] pnp: PnP ACPI: found 15 devices
    [ 0.541536] ACPI: ACPI bus type pnp unregistered
    [ 0.548333] pci 0000:00:04.0: BAR 0: assigned [mem 0xdfe08000-0xdfe0ffff 64bit]
    [ 0.548340] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
    [ 0.548357] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
    [ 0.548364] pci 0000:00:1c.1: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.548408] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.548411] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.548413] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.548416] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.548418] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.548421] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.548424] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.548426] pci_bus 0000:00: resource 11 [mem 0xdfe00000-0xfeafffff]
    [ 0.548429] pci_bus 0000:02: resource 1 [mem 0xf7c00000-0xf7cfffff]
    [ 0.548474] NET: Registered protocol family 2
    [ 0.548608] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.549403] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.550900] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.551049] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.551052] TCP: reno registered
    [ 0.551067] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.551086] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.551175] NET: Registered protocol family 1
    [ 0.551191] pci 0000:00:02.0: Boot video device
    [ 0.586597] PCI: CLS 64 bytes, default 64
    [ 0.586642] Unpacking initramfs...
    [ 0.718182] Freeing initrd memory: 5428k freed
    [ 0.718943] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.718947] Placing 64MB software IO TLB between ffff8800ca792000 - ffff8800ce792000
    [ 0.718950] software IO TLB at phys 0xca792000 - 0xce792000
    [ 0.719520] audit: initializing netlink socket (disabled)
    [ 0.719531] type=2000 audit(1342675392.609:1): initialized
    [ 0.719886] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.721809] VFS: Disk quotas dquot_6.5.2
    [ 0.721861] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.721987] msgmni has been set to 7684
    [ 0.722183] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.722218] io scheduler noop registered (default)
    [ 0.722221] io scheduler deadline registered
    [ 0.722279] io scheduler cfq registered
    [ 0.722575] efifb: probing for efifb
    [ 0.725055] efifb: framebuffer at 0xe0000000, mapped to 0xffffc9000a200000, using 3072k, total 3072k
    [ 0.725058] efifb: mode is 1024x768x32, linelength=4096, pages=1
    [ 0.725060] efifb: scrolling: redraw
    [ 0.725063] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.727405] Console: switching to colour frame buffer device 128x48
    [ 0.729621] fb0: EFI VGA frame buffer device
    [ 0.729628] intel_idle: does not run on family 6 model 58
    [ 0.729660] GHES: HEST is not enabled!
    [ 0.729740] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.730316] Linux agpgart interface v0.103
    [ 0.730401] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    [ 0.732007] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.732785] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.732815] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.732839] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.732863] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.732884] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.732989] mousedev: PS/2 mouse device common for all mice
    [ 0.733073] rtc_cmos 00:06: RTC can wake from S4
    [ 0.733238] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    [ 0.733268] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.733278] cpuidle: using governor ladder
    [ 0.733280] cpuidle: using governor menu
    [ 0.733411] TCP: cubic registered
    [ 0.733520] NET: Registered protocol family 10
    [ 0.733728] NET: Registered protocol family 17
    [ 0.733733] Registering the dns_resolver key type
    [ 0.733877] PM: Hibernation image not present or could not be loaded.
    [ 0.733883] registered taskstats version 1
    [ 0.734299] rtc_cmos 00:06: setting system clock to 2012-07-19 05:23:13 UTC (1342675393)
    [ 0.734449] Initializing network drop monitor service
    [ 0.736068] Freeing unused kernel memory: 740k freed
    [ 0.736186] Write protecting the kernel read-only data: 8192k
    [ 0.741922] Freeing unused kernel memory: 1588k freed
    [ 0.744508] Freeing unused kernel memory: 640k freed
    [ 0.752904] systemd-udevd[48]: starting version 186
    [ 0.755540] SCSI subsystem initialized
    [ 0.757022] libata version 3.00 loaded.
    [ 0.757753] ahci 0000:00:1f.2: version 3.0
    [ 0.757857] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
    [ 0.757916] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
    [ 0.757920] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
    [ 0.757927] ahci 0000:00:1f.2: setting latency timer to 64
    [ 0.760754] scsi0 : ahci
    [ 0.760973] scsi1 : ahci
    [ 0.761219] scsi2 : ahci
    [ 0.761696] scsi3 : ahci
    [ 0.761814] scsi4 : ahci
    [ 0.762047] scsi5 : ahci
    [ 0.762660] ata1: SATA max UDMA/133 abar m2048@0xf7d1e000 port 0xf7d1e100 irq 42
    [ 0.762664] ata2: DUMMY
    [ 0.762665] ata3: DUMMY
    [ 0.762667] ata4: DUMMY
    [ 0.762668] ata5: DUMMY
    [ 0.762670] ata6: DUMMY
    [ 0.766691] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.079319] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.090674] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.090818] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.090822] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.101189] ata1.00: ATA-8: ADATA XM11 128GB, 5.0.1, max UDMA/133
    [ 1.101208] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.110592] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.110759] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.110763] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 1.121163] ata1.00: configured for UDMA/133
    [ 1.121291] scsi 0:0:0:0: Direct-Access ATA ADATA XM11 128GB 5.0. PQ: 0 ANSI: 5
    [ 1.123017] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [ 1.123090] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.123095] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.123119] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.123778] usbcore: registered new interface driver usbfs
    [ 1.123805] usbcore: registered new interface driver hub
    [ 1.123854] usbcore: registered new device driver usb
    [ 1.124316] sda: sda1 sda2 sda3
    [ 1.124612] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.125369] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 1.125376] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.125423] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 1.125529] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 1.125550] xhci_hcd 0000:00:14.0: irq 16, io mem 0xf7d00000
    [ 1.125619] xhci_hcd 0000:00:14.0: irq 43 for MSI/MSI-X
    [ 1.125765] xHCI xhci_add_endpoint called for root hub
    [ 1.125769] xHCI xhci_check_bandwidth called for root hub
    [ 1.125819] hub 1-0:1.0: USB hub found
    [ 1.125832] hub 1-0:1.0: 4 ports detected
    [ 1.126030] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.126038] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 1.126165] xHCI xhci_add_endpoint called for root hub
    [ 1.126169] xHCI xhci_check_bandwidth called for root hub
    [ 1.126239] hub 2-0:1.0: USB hub found
    [ 1.126251] hub 2-0:1.0: 4 ports detected
    [ 1.129851] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.129926] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.129933] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [ 1.129954] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.129988] ehci_hcd 0000:00:1a.0: debug port 2
    [ 1.133867] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.133883] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf7d20000
    [ 1.142574] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.142727] hub 3-0:1.0: USB hub found
    [ 1.142731] hub 3-0:1.0: 2 ports detected
    [ 1.142859] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.142866] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [ 1.142879] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.142914] ehci_hcd 0000:00:1d.0: debug port 2
    [ 1.146795] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.146814] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf7d1f000
    [ 1.155902] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.156064] hub 4-0:1.0: USB hub found
    [ 1.156069] hub 4-0:1.0: 2 ports detected
    [ 1.161829] agpgart-intel 0000:00:00.0: Intel Ivybridge Chipset
    [ 1.162274] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [ 1.164964] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
    [ 1.165093] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
    [ 1.167496] [drm] Initialized drm 1.1.0 20060810
    [ 1.168381] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
    [ 1.179358] ACPI: Lid Switch [LID]
    [ 1.179416] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    [ 1.179422] ACPI: Power Button [PWRB]
    [ 1.179469] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    [ 1.179474] ACPI: Sleep Button [SLPB]
    [ 1.183098] i915 0000:00:02.0: setting latency timer to 64
    [ 1.398826] mtrr: type mismatch for e0000000,10000000 old: write-back new: write-combining
    [ 1.398830] [drm] MTRR allocation failed. Graphics performance may suffer.
    [ 1.399105] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 1.399167] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.399169] [drm] Driver supports precise vblank timestamp query.
    [ 1.399738] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.482168] usb 1-2: new high-speed USB device number 2 using xhci_hcd
    [ 1.499154] usb 1-2: ep 0x81 - rounding interval to 32768 microframes, ep desc says 0 microframes
    [ 1.499163] usb 1-2: ep 0x2 - rounding interval to 32768 microframes, ep desc says 0 microframes
    [ 1.605348] usb 3-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.718541] Refined TSC clocksource calibration: 1696.146 MHz.
    [ 1.718545] Switching to clocksource tsc
    [ 1.729014] hub 3-1:1.0: USB hub found
    [ 1.729085] hub 3-1:1.0: 6 ports detected
    [ 1.835066] usb 4-1: new high-speed USB device number 2 using ehci_hcd
    [ 1.958735] hub 4-1:1.0: USB hub found
    [ 1.958810] hub 4-1:1.0: 6 ports detected
    [ 2.025002] usb 3-1.2: new high-speed USB device number 3 using ehci_hcd
    [ 2.224762] usb 4-1.5: new high-speed USB device number 3 using ehci_hcd
    [ 2.474462] usb 4-1.6: new full-speed USB device number 4 using ehci_hcd
    [ 2.667462] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
    [ 3.173881] checking generic (e0000000 300000) vs hw (e0000000 10000000)
    [ 3.173885] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 3.173902] Console: switching to colour dummy device 80x25
    [ 3.175315] fbcon: inteldrmfb (fb0) is primary device
    [ 4.162812] Console: switching to colour frame buffer device 240x67
    [ 4.168648] fb0: inteldrmfb frame buffer device
    [ 4.168650] drm: registered panic notifier
    [ 4.170494] ACPI Warning: _BQC returned an invalid level (20120320/video-472)
    [ 4.170803] acpi device:35: registered as cooling_device0
    [ 4.171244] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 4.171252] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 4.171274] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 4.261463] device-mapper: uevent: version 1.0.3
    [ 4.261618] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: [email protected]
    [ 7.530172] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.671884] systemd-udevd[206]: starting version 186
    [ 7.701027] ACPI: Requesting acpi_cpufreq
    [ 7.708519] Monitor-Mwait will be used to enter C-1 state
    [ 7.708550] Monitor-Mwait will be used to enter C-2 state
    [ 7.708563] ACPI: acpi_idle registered with cpuidle
    [ 7.765552] ACPI: AC Adapter [AC0] (on-line)
    [ 7.792019] ACPI: Battery Slot [BAT0] (battery present)
    [ 7.842020] wmi: Mapper loaded
    [ 7.849215] thermal LNXTHERM:00: registered as thermal_zone0
    [ 7.849223] ACPI: Thermal Zone [THRM] (54 C)
    [ 7.856172] mei: module is from the staging directory, the quality is unknown, you have been warned.
    [ 7.856873] mei 0000:00:16.0: setting latency timer to 64
    [ 7.857061] mei 0000:00:16.0: irq 45 for MSI/MSI-X
    [ 7.867562] iTCO_vendor_support: vendor-support=0
    [ 7.870231] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 7.870413] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 7.878227] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 7.880017] cfg80211: Calling CRDA to update world regulatory domain
    [ 7.887026] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \SMB0 1 (20120320/utaddress-251)
    [ 7.887035] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 2 (20120320/utaddress-251)
    [ 7.887041] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.890845] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 7.895102] usbcore: registered new interface driver uas
    [ 7.897297] Initializing USB Mass Storage driver...
    [ 7.897383] scsi6 : usb-storage 1-2:1.0
    [ 7.897494] usbcore: registered new interface driver usb-storage
    [ 7.897496] USB Mass Storage support registered.
    [ 7.905414] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 7.908378] Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    [ 7.908380] Copyright(c) 2003-2012 Intel Corporation
    [ 7.908463] iwlwifi 0000:02:00.0: pci_resource_len = 0x00002000
    [ 7.908465] iwlwifi 0000:02:00.0: pci_resource_base = ffffc900040c8000
    [ 7.908467] iwlwifi 0000:02:00.0: HW Revision ID = 0x24
    [ 7.908564] iwlwifi 0000:02:00.0: irq 47 for MSI/MSI-X
    [ 7.909834] Linux media interface: v0.10
    [ 7.912145] Linux video capture interface: v2.00
    [ 7.912309] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 7.916365] scsi7 : SCSI emulation for RTS5139 USB card reader
    [ 7.924679] scsi 7:0:0:0: Direct-Access Generic- xD/SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
    [ 7.926600] uvcvideo: Found UVC 1.00 device USB2.0 HD UVC WebCam (04f2:b330)
    [ 7.927768] sd 7:0:0:0: [sdb] Attached SCSI removable disk
    [ 7.927991] Bluetooth: Core ver 2.16
    [ 7.928007] NET: Registered protocol family 31
    [ 7.928009] Bluetooth: HCI device and connection manager initialized
    [ 7.928012] Bluetooth: HCI socket layer initialized
    [ 7.928014] Bluetooth: L2CAP socket layer initialized
    [ 7.928025] Bluetooth: SCO socket layer initialized
    [ 7.929593] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.930401] usbcore: registered new interface driver rts5139
    [ 7.932134] usbcore: registered new interface driver btusb
    [ 7.938575] input: USB2.0 HD UVC WebCam as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.5/4-1.5:1.0/input/input6
    [ 7.939734] usbcore: registered new interface driver uvcvideo
    [ 7.939737] USB Video Class driver (1.1.1)
    [ 7.959022] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 7.960155] asus_wmi: ASUS WMI generic driver loaded
    [ 7.961792] asus_wmi: Initialization: 0x1
    [ 7.961840] asus_wmi: BIOS WMI version: 7.9
    [ 7.962148] asus_wmi: SFUN value: 0x4a2877
    [ 7.963015] asus_wmi: Can't find DSTS
    [ 7.968179] iwlwifi 0000:02:00.0: loaded firmware version 18.168.6.1
    [ 7.968413] iwlwifi 0000:02:

    Hi, I bought the UX32VD a few weeks ago. Most of the steps, mentioned in the article about the UX31A apply to the UX32VD too. I don't know what your problems are. All the steps are explained.
    [ 8.039202] asus_wmi: Can't find DSTS
    Just patch the kernel with the mentioned fix, or use the dkms variant. This will fix the can't find DSTS issue. After that, the asus-nb-wmi (or sth. like that) module will be loaded successfully, which makes most of the function keys work (except the screen brightness keys). The only thing remaining is to use the supplied hackarounds to be able to change the screenbrightness.
    After these steps, I created a .Xmodmap to remap the automatic kbd. backlight key and the touchpad disable key to XF86MonBrightnessDown (or so .. can't remember the exact name) and XF86MonBrightnessUp and respectively mapped the shortcuts with xfce4-keyboard-settings (XF86MonBrightnessDown to the command backlight down, XF86MonBrightnessUp to backlight up). Unfortunately, sometimes this is a little bit buggy. The scan codes change randomly on some reboots, eg: one time it gets recognized as XF86MonBrightnessUp, and a few keypresses later as something different.
    Hope they fix this issue with the 3.5 kernel, and eventually get the actual screenbrightness buttons to work.

  • How to fetch data into my custom script configured in qc02 transaction

    Hi All,
    I configured the custom SAP-Script in place of standard script name in QC02 tcode.In my requirement when I execute QC22
    transaction the custom script will be triggered along with some data based on material number,batch number and plant.I need to fetch QALS-KTEXTMAT , QALS-CHARG, MCH1-HSDAT and MCH1-VFDAT.Please help me how to fetch this data.Any Enahancement need to use or any spot is there Please specify.
    Thanks in advance.
    Regards,
    Satya.
    Edited by: satyareddygade on Sep 8, 2011 2:13 PM

    Hi Satya,
    Try like this in your Script window text element.
    /: PERFORM FETCH_KTEXTMAT IN PROGRAM <Z Subroutine Pool program>                                                                               
    /: USING &QALS-PRUEFLOS&                                                                               
    /: CHANGING &GV_KTEXTMAT&                                                                               
    /: ENDPERFORM
    in Z Subroutine Pool program
    FORM fetch_ktextmat TABLES  intab  STRUCTURE itcsy
                                outtab STRUCTURE itcsy.
      DATA:
        lv_prueflos TYPE qals-prueflos,
        lv_ktextmat TYPE qals-ktextmat.
    *---Get Inspection Lot Number
      READ TABLE intab WITH KEY 'QALS-PRUEFLOS'.
      CHECK sy-subrc = 0.
      lv_prueflos = intab-value.
      SELECT SINGLE ktextmat FROM qals INTO lv_ktextmat WHERE prueflos EQ lv_prueflos.
      outtab-value = lv_ktextmat.
      MODIFY outtab FROM outtab TRANSPORTING value WHERE
      name = 'GV_KTEXTMAT'.
      CLEAR : intab,outtab.
    ENDFORM.                    "FETCH_KTEXTMAT
    /: PERFORM FETCH_HSDAT IN PROGRAM <Z Subroutine Pool program>    
    /: USING &*VBDPL-MATNR&
    /: USING &VBDPL-CHARG&
    /: CHANGING &GV_HSDAT&
    FORM fetch_hsdat TABLES  intab  STRUCTURE itcsy
                                outtab STRUCTURE itcsy.
      DATA:
        lv_matnr TYPE vbdpl-matnr,
        lv_charg TYPE vbdpl-charg,
        lv_hsdat TYPE mch1-hsdat.
    *---Get Material Number
      READ TABLE intab WITH KEY '*VBDPL-MATNR'.
      CHECK sy-subrc = 0.
      lv_matnr = intab-value.
    *---Get Batch Number
      READ TABLE intab WITH KEY 'VBDPL-CHARG'.
      CHECK sy-subrc = 0.
      lv_charg = intab-value.
      SELECT SINGLE hsdat FROM mch1 INTO lv_hsdat WHERE matnr EQ lv_matnr
                                                    AND charg EQ lv_charg.
      outtab-value = lv_hsdat.
      MODIFY outtab FROM outtab TRANSPORTING value WHERE
      name = 'GV_HSDAT'.
      CLEAR : intab,outtab.
    ENDFORM.                    "FETCH_HSDAT
    Use the following program symbols where you want to print.
    &GV_KTEXTMAT& &QALS-CHARG& &GV_HSDAT& and &MCH1-VFDAT&
    Regards,
    Surya.

  • Repricing of Custom Field used in Key combination for Pricing

    Hi,
    we have created a custom field and this field is being used in the Key combination for Pricing. For standard fields we all know that the pricing condition is repriced once the value of the key field is changed in the document automatically (not manual update)
    The problem with this having the custom field in the Key combination is that when this fiel value is changed in the document the condition is not repriced automatically. We need to Do the price update manually for determining the new condition value.
    Request you to help in solving the issue. Do explain the things to be carried out for automatic pricing for the Custom fields added.
    Thank you in advancd.
    Regard
    Kula

    Hi Kulasekar,
    I think you have to implement Badi CRM_COND_COM_BADI, update communication structure with updated value from transaction should do reprice.
    Hope this helps!!!

  • Windows Phone - Cannot bind custom user controll with listview item source property

    It is Windows Phone 8.1 (runtime)
    I have some problem of binding custom user controll with list of data. I'll make it simple as I can.
    My problem is that somehow if I use DataBind {Binding Something} inside my custom controll it will not work.
    I need to transfer binded data (string) to custom controll.
    It is strange that if I do not use DataBind, it will work normally. Eg MyCustomControllParameter = "some string" (in my example 'BindingTextValue' property)
    Does anyone Know how to bind custom user controll with inside ListView with DataTemplate.
    Assume this:
    XAML Test-Main page
    <Grid  Background="Black">        <ListView x:Name="TestList" Background="#FFEAEAEA">                    <ListView.ItemTemplate>                <DataTemplate>                    <Grid Background="#FF727272">                        <local:TextBoxS BindingTextValue="{Binding Tag, FallbackValue='aSource'}" local:TextBoxS>                    </Grid>                </DataTemplate>            </ListView.ItemTemplate>        </ListView>    </Grid>
    XAML Test-Main page c#
    public sealed partial class MainPage : Page    {        List<TTag> tags = new List<TTag>();        public MainPage()        {            this.InitializeComponent();            this.NavigationCacheMode = NavigationCacheMode.Required;        }        public class TTag        {            public string Tag { get; set; }        }        private void InitializeAppData()        {            TTag tag = new TTag() { Tag = "hello world" };            tags.Add(tag);            tags.Add(tag);            tags.Add(tag);            TestList.ItemsSource = tags;        }             protected override void OnNavigatedTo(NavigationEventArgs e)        {            InitializeAppData();        }           }
    User Control XAML:
      <UserControl    x:Class="CustomControllTest.TextBoxS"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:local="using:CustomControllTest"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"    mc:Ignorable="d"    d:DesignHeight="300"    d:DesignWidth="400">      <Grid x:Name="LayoutRoot" Background="#FF4F4F4F"   >        <RichTextBlock x:Name="MyTestBlock">        </RichTextBlock>    </Grid></UserControl>
    User Control c#
    public TextBoxS()       {            this.InitializeComponent();            LayoutRoot.DataContext = this;        }        public static readonly DependencyProperty BindingTextValueProperty = DependencyProperty.Register(                                         "BindingTextValue",                                         typeof(string),                                         typeof(TextBoxS),                                         new PropertyMetadata(default(string)));        public string BindingTextValue        {            get            {                return GetValue(BindingTextValueProperty) as string;            }            set            {                SetValue(BindingTextValueProperty, value);                //This method adds some custom logic into RichTextBlock, pointed correctly                SetupBox(value);            }        }
    Thanks for helping ;)

    If you use a built-in control rather than your custom control, does binding work? You should verify that first.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Custom Script using Classifications

    Hi.
    I am wondering if it is possible and how I would go about using custom scripts to use classifications to display particular things.
    This is the goal:
    To classify events (back end) and then based on the classification of an event, on the detail page (front end) it will trigger the display of a different web form that was created for that event classification.
    This is because I have 3 different types of events that I want to display on my calendar but each need thier own booking form.
    Any help would be awesome, I have no idea where to even start with this one.
    Thanks in advance.
    K

    Hi Kristen,
    The only way to do that would be to crate a content holder for each category. Then, place different forms inside those content holders and then insert those content holders into event details when you're creating an event. This means you need to remove the booking form from the detail layout.
    Cheers,
    -mario

  • Maintenance View for custom table with foreign key relationship

    Hi Folks,
         I have created a custom table with foreign key relationship with other check tables. I want to create a maintenance view / tablemaintenance generator. What all things I need to take care for the foreign keys related fields while creating the maintenance view / tablemaintenance generator.
    Regards,
      santosh

    Hi,
    You do not have to do anything explicitely for the foreign key relationships in the table maintainance generator.
    Create the table maintainance generator via SE11 and it will take care of all teh foreign key checks by itself.
    Regards,
    Ankur Parab

  • How to use a custom script in a batch process?

    I was recently told that I can Photomerge, crop and save 2 separate folders of images to a 3rd folder in a batch process if I created a custom Javascript.  Are there any examples of how to integrate a custom script as an action in a batch process?

    if you recieve an image from mms you can save the object to gallery and then select it as wallpaper
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Issue in Binding Custom controller to Component Controller

    Dear All,
    I have enhanced a standard component ERP_H.
    I created a custom controller with context nodes BTSTATUS, BTSTATUSH
    I enhanced the component controller with context node BTSTATUS, BTSTATUSH
    Now when i try to bind the custom controller to component controller using this code in the context class of my custom controller
    bind to component controller
      owner->do_context_node_binding(
               iv_controller_type = CL_BSP_WD_CONTROLLER=>CO_TYPE_COMPONENT
               iv_target_node_name = 'BTSTATUS'  " component controller context node
               iv_node_2_bind = BTStatus ).
    its not working since this context node in component controller is not the standard one but the custom added one.
    Am i missing something, or is there any way to bind customer context node in custom controller to customer context node in component controller.
    regards,
    pradeep

    Hi pradeep,
        Try the other way round go to the context class in the component controller and paste the following code in the
    create_contextnode( context node = name of the node to be linked).
    *owner->do_context_node_binding(
            iv_controller_type = cl_bsp_wd_controller=>co_type_custom   <-----linking from component to custom
            iv_target_node_name = 'BUILHEADER' "target node: component controller node
            iv_node_2_bind = BUILHEADER ). "source node: current node.
    See if this works.
    Thanks

  • Custom scripts not working in Illustrator CC (2014)

    A couple of custom scripts that are part of my workflow don't work in the new CC; MultiExporter.jsx and Sprite CSS Generator.jsx.
    When I try to run either a titled modal window comes up as if the script is running but the actual window is only a couple of pixels tall and can't be re-sized;
    They both worked fine in CC. My grasp of javascript is pretty basic but is there code that needs to be changed to update these to work with the current version?
    Thanks!
    Bob

    It looks like this might have been a system issue or conflict of some sort; I uninstalled AI CC2013 and AI CC2014 as well clearing out all prefs and artifact files and folders. Then did a fresh install of CC2014 an was able to use all my legacy scripts with no problem.

Maybe you are looking for

  • Can you edit multiple images from a PDF in photoshop?

    I scan a lot of old publications with images and drawings. The images are in greyscale, but my scanner produces better results set to color. As such, I have to convert the images to greyscale in Photoshop from Acrobat. I have several PS actions that

  • Can't Remove HD

    I hope someone can help with this. I have a Powermac G5 with 2 HD's in the top and bottom bays. I can't remove the bottom drive because it's really wedged in there. I can't remove the top drive first because of the bottom drive. I've tried to wiggle

  • Powercord light does not come on, still charged at first but now nothing...

    The light on the mag part no longer lights up, it charged still on friday but as of today it is no longer charging. I assume the adapter is just bad. is this covered under apple care?

  • Error in iput field

    SAP Guys, While doing GR this error getting me Error : The input field containes prohibited characters (already deleted) This error will come when i am selecting rather than other selected.mean if suppose i am Goods reciept i want to select Goods iss

  • Third Party Tool for Scheduling Web Analysis reports

    Hello, I am using Hyperion Web Analysis for report development and Workspace for viewing reports. Now, I am facing an issue for scheduling WA reports through Workspace. Few experts told to me, we can't schedule a web Analysis document in workspace. B