Sharing a partion with Linux

hi,<br>
I have configured a dual boot system with Linux and Solaris 7. Now I want to access a harddisk from both systems, what is the best filesystem in this case and how to configure Linux and Solaris?
<p>
thanks
<p>
Hendrik Suess

You might want to try the Acrobat.com forum.

Similar Messages

  • How to create a c++ shared library (.so) for linux real time (for myRio) with Eclipse to use in LabView?

    I tried already these Tutorials and Advices but I didn't find a solution:
    - http://www.ni.com/tutorial/14625/en/
    - http://www.ni.com/tutorial/14690/en/
    - http://forums.ni.com/t5/LabVIEW/Shared-Library-on-myrio-Linux-Real-time-system/m-p/2842540/
    - http://forums.ni.com/t5/LabVIEW/How-to-create-shared-library-for-linux-real-time-target-in/m-p/28218...
    - and some more
    I want use c++ codes on linux real time. For testing reasons I want to have a function that adds 2 values and gives the result.
    I've done these steps:
    1. writing a c++ file in Eclipse (see screensot 2)
    2. building a shared library (.so) from my c++ project in Eclipse (with Cross GCC)
    3. putting this file on myRio (path: /usr/local/lib/)
    4. creating a VI that calls this library from Labview with a "Call Library Function Node" (see screenshot3)
    5. Setting the properties for the "Call Library Function Node" (see screenshots 4-7)
    After I run this VI i get this error message: LabVIEW:  (Hex 0x627) The function name for the ... node cannot be found in the library. To correct this error, right-click the Call Library Function Node and select Configure from the shortcut menu. Then choose the correct function name. (see screenshot1)
    I've tried a lot things to solve this problem but I couldn't find a solution. Would be very happy if anyone can help me. I guess that I have to edit my c++ code to export my function (symbol). But I have no idea how to make it. I also tried it with a dll file in the same folder but it didn't help.
    Perhaps someone can send an example which works on myRIO.
    Thanks!
    screenshot1
    screenshot2
    screenshot3
    screenshot4
    screenshot5
    screenshot6
    screenshot7

     can see it in the screenshot8 there is a function called "_Z8AddierenddPd" instead of "Addieren". I copied this name to Labview (see screenshot9) and it worked.
    I'm sure that there is a way to compile the shared folder with gcc without decorations (mangling). But I don't know how. If someone has a recommendation I would be very glad!
    Prepend each function declaration that you want to be available without name decoration with
    extern "C" <your function declaration>
    Or if you have multiple functions you want to export you can in the header file where you declare your functions simply use:
    #ifdef __cplusplus
    extern "C" {
    #endif
    <all your function declarations>
    #ifdef __cplusplus
    #endif
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Issue with shared folders in oracle linux 6.4

    Hi.
    After installing oracle linux 6.4 in vmware (9 and 10) shared folders still not visible in guest os.
    i see such issue first time. before this i have installed red hat 6.3 and centOS 6.5. via vmware and everything was ok with shared folders.
    but in Linux Oracle i can not see them neither in mnt nor media.
    so is there an issue in oracle 6.4. release? was it fixed in 6.5?
    p.s. i have instlalled vmware tools but problem with shared folders still persists.
    screenshots from my laptop
    RGhost — файлообменник
    RGhost — файлообменник
    RGhost — файлообменник
    RGhost — файлообменник

    e9af1f61-cf4a-46b2-880b-989b0761844e wrote:
    i have moved this messages by mistake https://forums.oracle.com/thread/2613503 to another branch.
    could you return it back, please?
    Moderator reply:
    Nope.
    That is not one of the capabilities of moderator or site administrator functions in the software the runs the site.
    You are stuck with two pieces in this discussion.
    All I'\m able to do is lock that branched piece (which I've done).
    You need to be a bit more careful on what you might choose to click upon.

  • How can I use a shared library made with the application builder?

    Hi,
    I am using LabVIEW 7.1 running on Slackware 10.1 (kernel 2.4.29) and I am trying to call a graph display from a C program that I use for debugging VME access from a VMIVME controler. So using the application builder I built the VI as a shared library (graph.vi -> graph.so) containing a function called "graph". In my main program the call to the dlopen fails with the error: "graph.so: undefined symbol: UninitLVClient". When I examin graph.so with nm I see that UninitLVClient and other LabVIEW functions are indeed undefined and using ldd shows that graph.so has dependencies only on libc.so.* and *linux*.so.* but not on LabVIEW related stuff. Those functions are defined in the liblv.so that's in the cintools directory but I have no idea if the user is supposed to use that.
    So I think I am missing an important concept here. Can somebody help or direct me to some documentation (I found lots of information about how to link external code to LabVIEW but nothing about how to link LabVIEW code to an external program)?

    Thanks Watermann,
    your message has been very useful so now I am linking to the proper library but I still have problems when trying to load dynamically the shared library produced with LabVIEW. It is strange that I could successfully load the lvrt library at loading time but it does not work when I am loading the library at execution time.
    I made a small LabVIEW program that prints a hello window and I am calling it from a C program. In the first program main.c I am linking to the lvrt library at loading time and it works but in the second one I am linking dynamically at execution time and it does not work. For my work I need to be able to load code done in LabVIEW at execution time. Any help is appreciated!
    Program main.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include "hello.h" // got this from the LabVIEW builder, i.e. when I made the hello.so
    int main(void)
    printf("Hello from C!\nLets call LabVIEW now\n");
    hello();
    printf("Bye ... \n");
    return 0;
    The command to compile main.c, i.e. linking shared library lvrt when loading main program:
    gcc -Wall -I /usr/local/lv71/cintools/ -o main main.c hello.so -l lvrt
    The LD_LIBRARY_PATH has been defined and exported:
    $ LD_LIBRARY_PATH=$PWD
    $ export LD_LIBRARY_PATH
    IT WORKS!
    Program main2.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include
    int main(void)
    void * h_lvrt;
    void * h_hello;
    void (* hello)(void);
    char * error;
    printf("Hello from C!\nLets call LabVIEW now\n");
    // open LabVIEW RunTime shared library
    // in my computer located at /usr/local/lib/liblvrt.so
    h_lvrt = dlopen("/usr/local/lib/liblvrt.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    printf("error : could not open LabVIEW RunTime library\n");
    printf("%s\n", error);
    return 1;
    // open hello shared library
    // in my computer located at /home/darss/lv_call/hello.so
    h_hello = dlopen("hello.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not open hello library\n");
    printf("%s\n", error);
    return 1;
    // get function hello from library hello.so
    hello = dlsym(h_hello, "hello");
    // check for error
    error = dlerror();
    if (error) {
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not get the hello function\n");
    printf("%s\n", error);
    return 1;
    // call hello function
    hello();
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("Bye ... \n");
    return 0;
    The command to compile main2.c, i.e. dynamically linking library lvrt at execution of main2 program:
    gcc -Wall -o main2 main2.c -l dl
    The LD_LIBRARY_PATH still defined and exported.
    IT DOES NOT WORK!
    Program output:
    Hello from C!
    Lets call LabVIEW now
    error : could not open hello library
    /home/darss/lv_call/hello.so: undefined symbol: WaitLVDLLReady

  • Using a shared library compiled in Linux (.so) on a windows platform

    Hi,
    Can I interface a shared library compiled in Linux (.so) in LabView on a windows platform?
    Gabriel Y

    No.
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Radeon Early KMS Fails with Linux LTS

    Upgraded to linux-lts 3.0.72-1 yesterday. Kernel now hangs for 60 seconds during the KMS switch with the following error messages (with both the main initramfs and the fallback):
    [ 61.120047] r600_cp: Failed to load firmware "radeon/REDWOOD_pfp.bin"
    [ 61.120083] [drm:evergreen_startup] *ERROR* Failed to load firmware!
    [ 61.120121] radeon 0000:01:00.0: disabling GPU acceleration
    GPU acceleration is then disabled and I cannot activate desktop effects.
    Here's the full dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.0.71-1-lts (nobody@andyrtr) (gcc version 4.7.2 (GCC) ) #1 SMP Fri Mar 29 11:32:47 CET 2013
    [ 0.000000] Command line: root=/dev/system/root cryptdevice=/dev/sda2:root ro apparmor=1 security=apparmor init=/usr/sbin/e4rat-preload-lite initrd=/initramfs-linux-lts.img BOOT_IMAGE=/vmlinuz-linux-lts
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
    [ 0.000000] BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfe90000 (usable)
    [ 0.000000] BIOS-e820: 00000000cfe90000 - 00000000cfee3000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 00000000cfee3000 - 00000000cfef0000 (ACPI data)
    [ 0.000000] BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
    [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100000000 - 0000000230000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.5 present.
    [ 0.000000] DMI: Dell Inc. Inspiron 530/0RY007, BIOS 1.0.18 02/24/2009
    [ 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 = 0x230000 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-CEFFF write-protect
    [ 0.000000] CF000-EFFFF uncachable
    [ 0.000000] F0000-FFFFF write-through
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 100000000 mask F00000000 write-back
    [ 0.000000] 1 base 200000000 mask FE0000000 write-back
    [ 0.000000] 2 base 220000000 mask FF0000000 write-back
    [ 0.000000] 3 base 000000000 mask F80000000 write-back
    [ 0.000000] 4 base 080000000 mask FC0000000 write-back
    [ 0.000000] 5 base 0C0000000 mask FF0000000 write-back
    [ 0.000000] 6 base 0CFF00000 mask FFFF00000 uncachable
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0xcfe90 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000f3f00] f3f00
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
    [ 0.000000] init_memory_mapping: 0000000000000000-00000000cfe90000
    [ 0.000000] 0000000000 - 00cfe00000 page 2M
    [ 0.000000] 00cfe00000 - 00cfe90000 page 4k
    [ 0.000000] kernel direct mapping tables up to 0xcfe8ffff @ [mem 0x1fffa000-0x1fffffff]
    [ 0.000000] init_memory_mapping: 0000000100000000-0000000230000000
    [ 0.000000] 0100000000 - 0230000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 0x22fffffff @ [mem 0xcfe8a000-0xcfe8ffff]
    [ 0.000000] RAMDISK: 7fa7d000 - 7ffff000
    [ 0.000000] ACPI: RSDP 00000000000f97a0 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 00000000cfee3080 0005C (v01 DELL FX09 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: FACP 00000000cfee7200 000F4 (v03 DELL FX09 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DSDT 00000000cfee3200 03FFC (v01 DELL AWRDACPI 00001000 MSFT 03000000)
    [ 0.000000] ACPI: FACS 00000000cfe90000 00040
    [ 0.000000] ACPI: HPET 00000000cfee73c0 00038 (v01 DELL FX09 42302E31 AWRD 00000098)
    [ 0.000000] ACPI: MCFG 00000000cfee7400 0003C (v01 DELL FX09 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: SLIC 00000000cfee7440 00176 (v01 DELL FX09 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: DMY2 00000000cfee75c0 00080 (v01 DELL FX09 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: APIC 00000000cfee7300 00084 (v01 DELL FX09 42302E31 AWRD 00000000)
    [ 0.000000] ACPI: SSDT 00000000cfee7ca0 00380 (v01 PmRef CpuPm 00003000 INTL 20041203)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-0000000230000000
    [ 0.000000] Initmem setup node 0 0000000000000000-0000000230000000
    [ 0.000000] NODE_DATA [000000022fffb000 - 000000022fffffff]
    [ 0.000000] [ffffea0000000000-ffffea0007bfffff] PMD -> [ffff880227600000-ffff88022e7fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x00230000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[3] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009e
    [ 0.000000] 0: 0x00000100 -> 0x000cfe90
    [ 0.000000] 0: 0x00100000 -> 0x00230000
    [ 0.000000] On node 0 totalpages: 2096670
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3921 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 833224 pages, LIFO batch:31
    [ 0.000000] Normal zone: 17024 pages used for memmap
    [ 0.000000] Normal zone: 1228160 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    [ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000cfe90000 - 00000000cfee3000
    [ 0.000000] PM: Registered nosave memory: 00000000cfee3000 - 00000000cfef0000
    [ 0.000000] PM: Registered nosave memory: 00000000cfef0000 - 00000000cff00000
    [ 0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
    [ 0.000000] Allocating PCI resources starting at cff00000 (gap: cff00000:10100000)
    [ 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 27 pages/cpu @ffff88022fc00000 s79360 r8192 d23040 u524288
    [ 0.000000] pcpu-alloc: s79360 r8192 d23040 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2065305
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: root=/dev/system/root cryptdevice=/dev/sda2:root ro apparmor=1 security=apparmor init=/usr/sbin/e4rat-preload-lite initrd=/initramfs-linux-lts.img BOOT_IMAGE=/vmlinuz-linux-lts
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 8185976k/9175040k available (4280k kernel code, 788360k absent, 200704k reserved, 5168k data, 744k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Hierarchical RCU implementation.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.000000] Detected 2992.609 MHz processor.
    [ 0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5985.21 BogoMIPS (lpj=29926090)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000095] Security Framework initialized
    [ 0.000115] AppArmor: AppArmor initialized
    [ 0.010311] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.013697] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.015293] Mount-cache hash table entries: 256
    [ 0.015649] Initializing cgroup subsys cpuacct
    [ 0.015684] Initializing cgroup subsys memory
    [ 0.015706] Initializing cgroup subsys devices
    [ 0.015708] Initializing cgroup subsys freezer
    [ 0.015710] Initializing cgroup subsys net_cls
    [ 0.015712] Initializing cgroup subsys blkio
    [ 0.015755] CPU: Physical Processor ID: 0
    [ 0.015756] CPU: Processor Core ID: 0
    [ 0.015758] mce: CPU supports 6 MCE banks
    [ 0.015766] CPU0: Thermal monitoring enabled (TM2)
    [ 0.015770] using mwait in idle threads.
    [ 0.016853] ACPI: Core revision 20110413
    [ 0.020014] ftrace: allocating 16930 entries in 67 pages
    [ 0.025685] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.128257] CPU0: Intel(R) Core(TM)2 Duo CPU E8400 @ 3.00GHz stepping 06
    [ 0.130000] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
    [ 0.130000] ... version: 2
    [ 0.130000] ... bit width: 40
    [ 0.130000] ... generic registers: 2
    [ 0.130000] ... value mask: 000000ffffffffff
    [ 0.130000] ... max period: 000000007fffffff
    [ 0.130000] ... fixed-purpose events: 3
    [ 0.130000] ... event mask: 0000000700000003
    [ 0.130000] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.130000] Booting Node 0, Processors #1
    [ 0.130000] smpboot cpu 1: start_ip = 99000
    [ 0.290024] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.290056] Brought up 2 CPUs
    [ 0.290058] Total of 2 processors activated (11970.20 BogoMIPS).
    [ 0.291770] devtmpfs: initialized
    [ 0.291770] PM: Registering ACPI NVS region at cfe90000 (339968 bytes)
    [ 0.291770] Time: 22:30:54 Date: 04/09/13
    [ 0.291770] NET: Registered protocol family 16
    [ 0.291770] ACPI: bus type pci registered
    [ 0.291770] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.291770] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.325013] PCI: Using configuration type 1 for base access
    [ 0.325392] bio: create slab <bio-0> at 0
    [ 0.325392] ACPI: EC: Look up EC in DSDT
    [ 0.325392] ACPI: SSDT 00000000cfee7680 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20041203)
    [ 0.325392] ACPI: Dynamic OEM Table Load:
    [ 0.325392] ACPI: SSDT (null) 0022A (v01 PmRef Cpu0Ist 00003000 INTL 20041203)
    [ 0.325392] ACPI: SSDT 00000000cfee7b40 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20041203)
    [ 0.325392] ACPI: Dynamic OEM Table Load:
    [ 0.325392] ACPI: SSDT (null) 00152 (v01 PmRef Cpu1Ist 00003000 INTL 20041203)
    [ 0.325392] ACPI: Interpreter enabled
    [ 0.325392] ACPI: (supports S0 S3 S4 S5)
    [ 0.325392] ACPI: Using IOAPIC for interrupt routing
    [ 0.331156] ACPI: No dock devices found.
    [ 0.331158] HEST: Table not found.
    [ 0.331160] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.331199] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.331276] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    [ 0.331278] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    [ 0.331280] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.331282] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 0.331283] pci_root PNP0A08:00: host bridge window [mem 0xcff00000-0xfebfffff]
    [ 0.331292] pci 0000:00:00.0: [8086:29c0] type 0 class 0x000600
    [ 0.331325] pci 0000:00:01.0: [8086:29c1] type 1 class 0x000604
    [ 0.331353] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.331355] pci 0000:00:01.0: PME# disabled
    [ 0.331386] pci 0000:00:19.0: [8086:10c0] type 0 class 0x000200
    [ 0.331400] pci 0000:00:19.0: reg 10: [mem 0xfdfc0000-0xfdfdffff]
    [ 0.331407] pci 0000:00:19.0: reg 14: [mem 0xfdfff000-0xfdffffff]
    [ 0.331413] pci 0000:00:19.0: reg 18: [io 0xff00-0xff1f]
    [ 0.331462] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.331466] pci 0000:00:19.0: PME# disabled
    [ 0.331480] pci 0000:00:1a.0: [8086:2937] type 0 class 0x000c03
    [ 0.331514] pci 0000:00:1a.0: reg 20: [io 0xfe00-0xfe1f]
    [ 0.331554] pci 0000:00:1a.1: [8086:2938] type 0 class 0x000c03
    [ 0.331588] pci 0000:00:1a.1: reg 20: [io 0xfd00-0xfd1f]
    [ 0.331629] pci 0000:00:1a.2: [8086:2939] type 0 class 0x000c03
    [ 0.331663] pci 0000:00:1a.2: reg 20: [io 0xfc00-0xfc1f]
    [ 0.331707] pci 0000:00:1a.7: [8086:293c] type 0 class 0x000c03
    [ 0.331720] pci 0000:00:1a.7: reg 10: [mem 0xfdffe000-0xfdffe3ff]
    [ 0.331780] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.331783] pci 0000:00:1a.7: PME# disabled
    [ 0.331798] pci 0000:00:1b.0: [8086:293e] type 0 class 0x000403
    [ 0.331809] pci 0000:00:1b.0: reg 10: [mem 0xfdff4000-0xfdff7fff 64bit]
    [ 0.331862] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.331865] pci 0000:00:1b.0: PME# disabled
    [ 0.331881] pci 0000:00:1d.0: [8086:2934] type 0 class 0x000c03
    [ 0.331915] pci 0000:00:1d.0: reg 20: [io 0xfb00-0xfb1f]
    [ 0.331957] pci 0000:00:1d.1: [8086:2935] type 0 class 0x000c03
    [ 0.331991] pci 0000:00:1d.1: reg 20: [io 0xfa00-0xfa1f]
    [ 0.332031] pci 0000:00:1d.2: [8086:2936] type 0 class 0x000c03
    [ 0.332065] pci 0000:00:1d.2: reg 20: [io 0xf900-0xf91f]
    [ 0.332110] pci 0000:00:1d.7: [8086:293a] type 0 class 0x000c03
    [ 0.332123] pci 0000:00:1d.7: reg 10: [mem 0xfdffd000-0xfdffd3ff]
    [ 0.332183] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.332186] pci 0000:00:1d.7: PME# disabled
    [ 0.332198] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
    [ 0.332247] pci 0000:00:1f.0: [8086:2916] type 0 class 0x000601
    [ 0.332315] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 003f)
    [ 0.332318] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 003f)
    [ 0.332356] pci 0000:00:1f.2: [8086:2920] type 0 class 0x000101
    [ 0.332368] pci 0000:00:1f.2: reg 10: [io 0xf800-0xf807]
    [ 0.332374] pci 0000:00:1f.2: reg 14: [io 0xf700-0xf703]
    [ 0.332380] pci 0000:00:1f.2: reg 18: [io 0xf600-0xf607]
    [ 0.332386] pci 0000:00:1f.2: reg 1c: [io 0xf500-0xf503]
    [ 0.332392] pci 0000:00:1f.2: reg 20: [io 0xf400-0xf40f]
    [ 0.332398] pci 0000:00:1f.2: reg 24: [io 0xf300-0xf30f]
    [ 0.332434] pci 0000:00:1f.3: [8086:2930] type 0 class 0x000c05
    [ 0.332446] pci 0000:00:1f.3: reg 10: [mem 0xfdffc000-0xfdffc0ff 64bit]
    [ 0.332462] pci 0000:00:1f.3: reg 20: [io 0x0500-0x051f]
    [ 0.332488] pci 0000:00:1f.5: [8086:2926] type 0 class 0x000101
    [ 0.332500] pci 0000:00:1f.5: reg 10: [io 0xf100-0xf107]
    [ 0.332506] pci 0000:00:1f.5: reg 14: [io 0xf000-0xf003]
    [ 0.332512] pci 0000:00:1f.5: reg 18: [io 0xef00-0xef07]
    [ 0.332518] pci 0000:00:1f.5: reg 1c: [io 0xee00-0xee03]
    [ 0.332524] pci 0000:00:1f.5: reg 20: [io 0xed00-0xed0f]
    [ 0.332531] pci 0000:00:1f.5: reg 24: [io 0xec00-0xec0f]
    [ 0.332588] pci 0000:01:00.0: [1002:68d8] type 0 class 0x000300
    [ 0.332598] pci 0000:01:00.0: reg 10: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.332606] pci 0000:01:00.0: reg 18: [mem 0xfddc0000-0xfdddffff 64bit]
    [ 0.332612] pci 0000:01:00.0: reg 20: [io 0xce00-0xceff]
    [ 0.332622] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.332646] pci 0000:01:00.0: supports D1 D2
    [ 0.332661] pci 0000:01:00.1: [1002:aa60] type 0 class 0x000403
    [ 0.332671] pci 0000:01:00.1: reg 10: [mem 0xfddfc000-0xfddfffff 64bit]
    [ 0.332715] pci 0000:01:00.1: supports D1 D2
    [ 0.332739] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.332741] pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    [ 0.332744] pci 0000:00:01.0: bridge window [mem 0xfdd00000-0xfddfffff]
    [ 0.332747] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.332773] pci 0000:02:00.0: [8086:107c] type 0 class 0x000200
    [ 0.332790] pci 0000:02:00.0: reg 10: [mem 0xfdce0000-0xfdcfffff]
    [ 0.332798] pci 0000:02:00.0: reg 14: [mem 0xfdcc0000-0xfdcdffff]
    [ 0.332806] pci 0000:02:00.0: reg 18: [io 0xdf00-0xdf3f]
    [ 0.332835] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
    [ 0.332866] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [ 0.332870] pci 0000:02:00.0: PME# disabled
    [ 0.332908] pci 0000:00:1e.0: PCI bridge to [bus 02-02] (subtractive decode)
    [ 0.332911] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
    [ 0.332914] pci 0000:00:1e.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.332918] pci 0000:00:1e.0: bridge window [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.332920] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.332922] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.332924] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.332926] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 0.332928] pci 0000:00:1e.0: bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
    [ 0.332936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.333005] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
    [ 0.333057] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.333059] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [ 0.333060] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.338616] ACPI: PCI Interrupt Link [LNKA] (IRQs *3 4 5 7 9 10 11 12 14 15)
    [ 0.338649] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *4 5 7 9 10 11 12 14 15)
    [ 0.338682] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 *10 11 12 14 15)
    [ 0.338714] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12 14 15)
    [ 0.338746] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 *10 11 12 14 15)
    [ 0.338777] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 *5 7 9 10 11 12 14 15)
    [ 0.338809] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 7 *9 10 11 12 14 15)
    [ 0.338841] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 7 9 10 *11 12 14 15)
    [ 0.338905] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.338908] vgaarb: loaded
    [ 0.338909] vgaarb: bridge control possible 0000:01:00.0
    [ 0.338951] PCI: Using ACPI for IRQ routing
    [ 0.343725] PCI: pci_cache_line_size set to 64 bytes
    [ 0.343777] reserve RAM buffer: 000000000009e800 - 000000000009ffff
    [ 0.343779] reserve RAM buffer: 00000000cfe90000 - 00000000cfffffff
    [ 0.343870] NetLabel: Initializing
    [ 0.343872] NetLabel: domain hash size = 128
    [ 0.343873] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.343883] NetLabel: unlabeled traffic allowed by default
    [ 0.343887] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.343891] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    [ 0.343894] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    [ 0.350015] Switching to clocksource hpet
    [ 0.354598] AppArmor: AppArmor Filesystem Enabled
    [ 0.354616] pnp: PnP ACPI init
    [ 0.354626] ACPI: bus type pnp registered
    [ 0.354686] pnp 00:00: [bus 00-ff]
    [ 0.354688] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 0.354690] pnp 00:00: [io 0x0000-0x0cf7 window]
    [ 0.354691] pnp 00:00: [io 0x0d00-0xffff window]
    [ 0.354693] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 0.354694] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 0.354696] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
    [ 0.354731] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.354769] pnp 00:01: [io 0x0010-0x001f]
    [ 0.354771] pnp 00:01: [io 0x0022-0x003f]
    [ 0.354772] pnp 00:01: [io 0x0044-0x005f]
    [ 0.354773] pnp 00:01: [io 0x0060]
    [ 0.354775] pnp 00:01: [io 0x0064]
    [ 0.354776] pnp 00:01: [io 0x0062-0x0063]
    [ 0.354777] pnp 00:01: [io 0x0065-0x006f]
    [ 0.354778] pnp 00:01: [io 0x0074-0x007f]
    [ 0.354780] pnp 00:01: [io 0x0091-0x0093]
    [ 0.354781] pnp 00:01: [io 0x00a2-0x00bf]
    [ 0.354782] pnp 00:01: [io 0x00e0-0x00ef]
    [ 0.354784] pnp 00:01: [io 0x04d0-0x04d1]
    [ 0.354785] pnp 00:01: [io 0x0800-0x087f]
    [ 0.354786] pnp 00:01: [io 0x0290-0x0297]
    [ 0.354788] pnp 00:01: [io 0x0880-0x088f]
    [ 0.354831] system 00:01: [io 0x04d0-0x04d1] has been reserved
    [ 0.354833] system 00:01: [io 0x0800-0x087f] has been reserved
    [ 0.354835] system 00:01: [io 0x0290-0x0297] has been reserved
    [ 0.354837] system 00:01: [io 0x0880-0x088f] has been reserved
    [ 0.354839] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.354847] pnp 00:02: [dma 4]
    [ 0.354848] pnp 00:02: [io 0x0000-0x000f]
    [ 0.354850] pnp 00:02: [io 0x0080-0x0090]
    [ 0.354851] pnp 00:02: [io 0x0094-0x009f]
    [ 0.354852] pnp 00:02: [io 0x00c0-0x00df]
    [ 0.354870] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.354904] pnp 00:03: [irq 0 disabled]
    [ 0.354911] pnp 00:03: [irq 8]
    [ 0.354912] pnp 00:03: [mem 0xfed00000-0xfed003ff]
    [ 0.354931] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.354949] pnp 00:04: [io 0x0070-0x0073]
    [ 0.354969] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.354975] pnp 00:05: [io 0x0061]
    [ 0.354993] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.354999] pnp 00:06: [io 0x00f0-0x00ff]
    [ 0.355003] pnp 00:06: [irq 13]
    [ 0.355022] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.355123] pnp 00:07: [io 0x03f0-0x03f5]
    [ 0.355124] pnp 00:07: [io 0x03f7]
    [ 0.355128] pnp 00:07: [irq 6]
    [ 0.355130] pnp 00:07: [dma 2]
    [ 0.355157] pnp 00:07: Plug and Play ACPI device, IDs PNP0700 (active)
    [ 0.355195] pnp 00:08: [io 0x0400-0x04bf]
    [ 0.355225] system 00:08: [io 0x0400-0x04bf] has been reserved
    [ 0.355227] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.355239] pnp 00:09: [mem 0xffb80000-0xffbfffff]
    [ 0.355261] pnp 00:09: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.355378] pnp 00:0a: [mem 0xe0000000-0xefffffff]
    [ 0.355414] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.355417] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.355459] pnp 00:0b: [mem 0x000f0000-0x000fffff]
    [ 0.355461] pnp 00:0b: [mem 0xcff00000-0xcfffffff]
    [ 0.355462] pnp 00:0b: [mem 0xfed00000-0xfed000ff]
    [ 0.355463] pnp 00:0b: [mem 0xcfe90000-0xcfefffff]
    [ 0.355465] pnp 00:0b: [mem 0x00000000-0x0009ffff]
    [ 0.355466] pnp 00:0b: [mem 0x00100000-0xcfe8ffff]
    [ 0.355468] pnp 00:0b: [mem 0xfec00000-0xfec00fff]
    [ 0.355469] pnp 00:0b: [mem 0xfed14000-0xfed1dfff]
    [ 0.355470] pnp 00:0b: [mem 0xfed20000-0xfed9ffff]
    [ 0.355472] pnp 00:0b: [mem 0xfee00000-0xfee00fff]
    [ 0.355473] pnp 00:0b: [mem 0xffb00000-0xffb7ffff]
    [ 0.355474] pnp 00:0b: [mem 0xfff00000-0xffffffff]
    [ 0.355476] pnp 00:0b: [mem 0x000e0000-0x000effff]
    [ 0.355518] system 00:0b: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 0.355520] system 00:0b: [mem 0xcff00000-0xcfffffff] has been reserved
    [ 0.355522] system 00:0b: [mem 0xfed00000-0xfed000ff] has been reserved
    [ 0.355524] system 00:0b: [mem 0xcfe90000-0xcfefffff] could not be reserved
    [ 0.355526] system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.355528] system 00:0b: [mem 0x00100000-0xcfe8ffff] could not be reserved
    [ 0.355530] system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 0.355532] system 00:0b: [mem 0xfed14000-0xfed1dfff] has been reserved
    [ 0.355534] system 00:0b: [mem 0xfed20000-0xfed9ffff] has been reserved
    [ 0.355536] system 00:0b: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.355538] system 00:0b: [mem 0xffb00000-0xffb7ffff] has been reserved
    [ 0.355540] system 00:0b: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.355541] system 00:0b: [mem 0x000e0000-0x000effff] has been reserved
    [ 0.355544] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.355550] pnp: PnP ACPI: found 12 devices
    [ 0.355551] ACPI: ACPI bus type pnp unregistered
    [ 0.359835] Switched to NOHz mode on CPU #0
    [ 0.359957] Switched to NOHz mode on CPU #1
    [ 0.361243] PCI: max bus depth: 1 pci_try_num: 2
    [ 0.361257] pci 0000:01:00.0: BAR 6: assigned [mem 0xfdd00000-0xfdd1ffff pref]
    [ 0.361260] pci 0000:00:01.0: PCI bridge to [bus 01-01]
    [ 0.361262] pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    [ 0.361264] pci 0000:00:01.0: bridge window [mem 0xfdd00000-0xfddfffff]
    [ 0.361267] pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.361270] pci 0000:02:00.0: BAR 6: assigned [mem 0xfde00000-0xfde1ffff pref]
    [ 0.361272] pci 0000:00:1e.0: PCI bridge to [bus 02-02]
    [ 0.361274] pci 0000:00:1e.0: bridge window [io 0xd000-0xdfff]
    [ 0.361278] pci 0000:00:1e.0: bridge window [mem 0xfdc00000-0xfdcfffff]
    [ 0.361281] pci 0000:00:1e.0: bridge window [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.361290] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.361294] pci 0000:00:01.0: setting latency timer to 64
    [ 0.361298] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.361301] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.361303] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.361304] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.361306] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.361308] pci_bus 0000:00: resource 8 [mem 0xcff00000-0xfebfffff]
    [ 0.361310] pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    [ 0.361311] pci_bus 0000:01: resource 1 [mem 0xfdd00000-0xfddfffff]
    [ 0.361313] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.361315] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    [ 0.361316] pci_bus 0000:02: resource 1 [mem 0xfdc00000-0xfdcfffff]
    [ 0.361318] pci_bus 0000:02: resource 2 [mem 0xfde00000-0xfdefffff 64bit pref]
    [ 0.361320] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7]
    [ 0.361321] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff]
    [ 0.361323] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.361325] pci_bus 0000:02: resource 7 [mem 0x000c0000-0x000dffff]
    [ 0.361326] pci_bus 0000:02: resource 8 [mem 0xcff00000-0xfebfffff]
    [ 0.361382] NET: Registered protocol family 2
    [ 0.361578] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.362545] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.365489] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.365885] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.365887] TCP reno registered
    [ 0.365898] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.365957] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.366361] NET: Registered protocol family 1
    [ 0.366389] pci 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.366404] pci 0000:00:1a.0: PCI INT A disabled
    [ 0.366416] pci 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 0.366430] pci 0000:00:1a.1: PCI INT B disabled
    [ 0.366437] pci 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 0.366450] pci 0000:00:1a.2: PCI INT D disabled
    [ 0.366458] pci 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.366482] pci 0000:00:1a.7: PCI INT C disabled
    [ 0.366491] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 0.366505] pci 0000:00:1d.0: PCI INT A disabled
    [ 0.366510] pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 0.366524] pci 0000:00:1d.1: PCI INT B disabled
    [ 0.366529] pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 0.366543] pci 0000:00:1d.2: PCI INT C disabled
    [ 0.366550] pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 0.366567] pci 0000:00:1d.7: PCI INT A disabled
    [ 0.366580] pci 0000:01:00.0: Boot video device
    [ 0.366585] PCI: CLS 64 bytes, default 64
    [ 0.366632] Unpacking initramfs...
    [ 0.454751] Freeing initrd memory: 5640k freed
    [ 0.456212] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.456215] Placing 64MB software IO TLB between ffff8800cbe8a000 - ffff8800cfe8a000
    [ 0.456217] software IO TLB at phys 0xcbe8a000 - 0xcfe8a000
    [ 0.456534] audit: initializing netlink socket (disabled)
    [ 0.456546] type=2000 audit(1365546653.450:1): initialized
    [ 0.464589] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.466761] VFS: Disk quotas dquot_6.5.2
    [ 0.466866] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.467034] msgmni has been set to 15999
    [ 0.467211] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 0.467240] io scheduler noop registered
    [ 0.467241] io scheduler deadline registered (default)
    [ 0.467278] io scheduler cfq registered
    [ 0.467351] pcieport 0000:00:01.0: setting latency timer to 64
    [ 0.467374] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.467469] intel_idle: MWAIT substates: 0x22220
    [ 0.467470] intel_idle: does not run on family 6 model 23
    [ 0.467475] ERST: Table is not found!
    [ 0.467514] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.910220] Linux agpgart interface v0.103
    [ 0.910276] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 0.910607] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.910611] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.910655] mousedev: PS/2 mouse device common for all mice
    [ 0.910685] rtc_cmos 00:04: RTC can wake from S4
    [ 0.910758] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.910779] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.910786] cpuidle: using governor ladder
    [ 0.910788] cpuidle: using governor menu
    [ 0.910789] EFI Variables Facility v0.08 2004-May-17
    [ 0.910954] TCP cubic registered
    [ 0.911069] NET: Registered protocol family 10
    [ 0.911546] NET: Registered protocol family 17
    [ 0.911549] Registering the dns_resolver key type
    [ 0.911619] PM: Hibernation image not present or could not be loaded.
    [ 0.911633] registered taskstats version 1
    [ 0.912247] Magic number: 9:475:552
    [ 0.912270] pci_link PNP0C0F:03: hash matches
    [ 0.912305] rtc_cmos 00:04: setting system clock to 2013-04-09 22:30:55 UTC (1365546655)
    [ 0.912335] Initializing network drop monitor service
    [ 0.913212] Freeing unused kernel memory: 744k freed
    [ 0.913401] Write protecting the kernel read-only data: 8192k
    [ 0.917371] Freeing unused kernel memory: 1844k freed
    [ 0.919244] Freeing unused kernel memory: 656k freed
    [ 0.924863] systemd-udevd[35]: starting version 200
    [ 0.929217] [drm] Initialized drm 1.1.0 20060810
    [ 0.935568] [drm] radeon defaulting to kernel modesetting.
    [ 0.935570] [drm] radeon kernel modesetting enabled.
    [ 0.935608] radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 0.935612] radeon 0000:01:00.0: setting latency timer to 64
    [ 0.935726] [drm] initializing kernel modesetting (REDWOOD 0x1002:0x68D8 0x174B:0xE151).
    [ 0.935758] [drm] register mmio base: 0xFDDC0000
    [ 0.935759] [drm] register mmio size: 131072
    [ 0.935849] ATOM BIOS: REDWOOD
    [ 0.935864] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
    [ 0.935866] radeon 0000:01:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
    [ 0.937094] [drm] Detected VRAM RAM=1024M, BAR=256M
    [ 0.937097] [drm] RAM width 128bits DDR
    [ 0.937161] [TTM] Zone kernel: Available graphics memory: 4097430 kiB.
    [ 0.937162] [TTM] Zone dma32: Available graphics memory: 2097152 kiB.
    [ 0.937164] [TTM] Initializing pool allocator.
    [ 0.937201] [drm] radeon: 1024M of VRAM memory ready
    [ 0.937203] [drm] radeon: 512M of GTT memory ready.
    [ 0.937217] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 0.937218] [drm] Driver supports precise vblank timestamp query.
    [ 0.937250] radeon 0000:01:00.0: irq 41 for MSI/MSI-X
    [ 0.937254] radeon 0000:01:00.0: radeon: using MSI.
    [ 0.937281] [drm] radeon: irq initialized.
    [ 0.937286] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 0.937772] [drm] Loading REDWOOD Microcode
    [ 1.460015] Refined TSC clocksource calibration: 2992.499 MHz.
    [ 1.460020] Switching to clocksource tsc
    [ 61.120047] r600_cp: Failed to load firmware "radeon/REDWOOD_pfp.bin"
    [ 61.120083] [drm:evergreen_startup] *ERROR* Failed to load firmware!
    [ 61.120121] radeon 0000:01:00.0: disabling GPU acceleration
    [ 61.121175] radeon 0000:01:00.0: ffff880220c5c000 unpin not necessary
    [ 61.121177] radeon 0000:01:00.0: ffff880220c5c000 unpin not necessary
    [ 61.121191] failed to evaluate ATIF got AE_BAD_PARAMETER
    [ 61.122829] [drm] Radeon Display Connectors
    [ 61.122830] [drm] Connector 0:
    [ 61.122831] [drm] DisplayPort
    [ 61.122832] [drm] HPD4
    [ 61.122834] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    [ 61.122835] [drm] Encoders:
    [ 61.122836] [drm] DFP1: INTERNAL_UNIPHY2
    [ 61.122838] [drm] Connector 1:
    [ 61.122838] [drm] HDMI-A
    [ 61.122839] [drm] HPD5
    [ 61.122841] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
    [ 61.122842] [drm] Encoders:
    [ 61.122843] [drm] DFP2: INTERNAL_UNIPHY2
    [ 61.122844] [drm] Connector 2:
    [ 61.122845] [drm] DVI-I
    [ 61.122846] [drm] HPD1
    [ 61.122847] [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
    [ 61.122849] [drm] Encoders:
    [ 61.122849] [drm] DFP3: INTERNAL_UNIPHY1
    [ 61.122851] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 62.320028] [drm] Radeon display connector DP-1: No monitor connected or invalid EDID
    [ 62.371931] [drm] Radeon display connector HDMI-A-1: Found valid EDID
    [ 62.423833] [drm] Radeon display connector DVI-I-1: Found valid EDID
    [ 62.423849] [drm] Internal thermal controller with fan control
    [ 62.423880] [drm] radeon: power management initialized
    [ 62.628633] [drm] fb mappable at 0xD0040000
    [ 62.628634] [drm] vram apper at 0xD0000000
    [ 62.628635] [drm] size 8294400
    [ 62.628636] [drm] fb depth is 24
    [ 62.628637] [drm] pitch is 7680
    [ 62.628675] fbcon: radeondrmfb (fb0) is primary device
    [ 62.924892] Console: switching to colour frame buffer device 240x67
    [ 62.928774] fb0: radeondrmfb frame buffer device
    [ 62.928775] drm: registered panic notifier
    [ 62.928779] [drm] Initialized radeon 2.10.0 20080528 for 0000:01:00.0 on minor 0
    [ 62.929721] device-mapper: uevent: version 1.0.3
    [ 62.929802] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: [email protected]
    [ 62.951388] usbcore: registered new interface driver usbfs
    [ 62.951408] usbcore: registered new interface driver hub
    [ 62.951860] usbcore: registered new device driver usb
    [ 62.952716] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 62.952738] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 62.952760] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    [ 62.952762] ehci_hcd 0000:00:1a.7: EHCI Host Controller
    [ 62.952781] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    [ 62.956678] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
    [ 62.956692] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfdffe000
    [ 62.964173] SCSI subsystem initialized
    [ 62.966530] FDC 0 is a post-1991 82077
    [ 62.966568] libata version 3.00 loaded.
    [ 62.980013] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 62.980149] hub 1-0:1.0: USB hub found
    [ 62.980153] hub 1-0:1.0: 6 ports detected
    [ 62.980221] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 62.980241] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    [ 62.980243] ehci_hcd 0000:00:1d.7: EHCI Host Controller
    [ 62.980251] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    [ 62.984146] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
    [ 62.984160] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfdffd000
    [ 63.000008] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 63.000119] hub 2-0:1.0: USB hub found
    [ 63.000122] hub 2-0:1.0: 6 ports detected
    [ 63.000275] ata_piix 0000:00:1f.2: version 2.13
    [ 63.000283] ata_piix 0000:00:1f.2: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 63.000286] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
    [ 63.000312] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 63.000621] scsi0 : ata_piix
    [ 63.000680] scsi1 : ata_piix
    [ 63.000997] ata1: SATA max UDMA/133 cmd 0xf800 ctl 0xf700 bmdma 0xf400 irq 19
    [ 63.001001] ata2: SATA max UDMA/133 cmd 0xf600 ctl 0xf500 bmdma 0xf408 irq 19
    [ 63.001013] ata_piix 0000:00:1f.5: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 63.001016] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
    [ 63.001039] ata_piix 0000:00:1f.5: setting latency timer to 64
    [ 63.001372] scsi2 : ata_piix
    [ 63.001546] scsi3 : ata_piix
    [ 63.001687] ata3: SATA max UDMA/133 cmd 0xf100 ctl 0xf000 bmdma 0xed00 irq 19
    [ 63.001690] ata4: SATA max UDMA/133 cmd 0xef00 ctl 0xee00 bmdma 0xed08 irq 19
    [ 63.030264] uhci_hcd: USB Universal Host Controller Interface driver
    [ 63.030424] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 63.030430] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 63.030432] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 63.030438] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 63.030465] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000fe00
    [ 63.030564] hub 3-0:1.0: USB hub found
    [ 63.030567] hub 3-0:1.0: 2 ports detected
    [ 63.030617] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    [ 63.030622] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    [ 63.030624] uhci_hcd 0000:00:1a.1: UHCI Host Controller
    [ 63.030631] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    [ 63.030658] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000fd00
    [ 63.030993] hub 4-0:1.0: USB hub found
    [ 63.030996] hub 4-0:1.0: 2 ports detected
    [ 63.031041] uhci_hcd 0000:00:1a.2: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [ 63.031046] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    [ 63.031049] uhci_hcd 0000:00:1a.2: UHCI Host Controller
    [ 63.031054] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    [ 63.031073] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000fc00
    [ 63.031176] hub 5-0:1.0: USB hub found
    [ 63.031179] hub 5-0:1.0: 2 ports detected
    [ 63.031221] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [ 63.031225] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 63.031228] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 63.031233] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    [ 63.031252] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000fb00
    [ 63.031335] hub 6-0:1.0: USB hub found
    [ 63.031338] hub 6-0:1.0: 2 ports detected
    [ 63.031391] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    [ 63.031396] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 63.031399] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 63.031403] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    [ 63.031423] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fa00
    [ 63.031507] hub 7-0:1.0: USB hub found
    [ 63.031510] hub 7-0:1.0: 2 ports detected
    [ 63.031554] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 63.031559] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 63.031561] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 63.031567] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    [ 63.031586] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000f900
    [ 63.031670] hub 8-0:1.0: USB hub found
    [ 63.031673] hub 8-0:1.0: 2 ports detected
    [ 63.360617] ata3: SATA link down (SStatus 0 SControl 300)
    [ 63.371236] ata4: SATA link down (SStatus 0 SControl 300)
    [ 63.480010] usb 1-5: new high speed USB device number 4 using ehci_hcd
    [ 63.631903] hub 1-5:1.0: USB hub found
    [ 63.632248] hub 1-5:1.0: 4 ports detected
    [ 63.750013] usb 1-6: new high speed USB device number 5 using ehci_hcd
    [ 63.870059] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 63.870069] ata1.01: SATA link down (SStatus 0 SControl 300)
    [ 63.870191] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 63.870202] ata2.01: SATA link down (SStatus 0 SControl 300)
    [ 63.870210] ata2.01: link offline, clearing class 3 to NONE
    [ 63.890185] ata2.00: ATAPI: HL-DT-ST DVDRAM GH22NS50, TN04, max UDMA/100
    [ 63.903235] ata1.00: ATA-8: WDC WD1002FAEX-00Z3A0, 05.01D05, max UDMA/133
    [ 63.903238] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 63.930119] ata2.00: configured for UDMA/100
    [ 63.940457] ata1.00: configured for UDMA/133
    [ 63.940539] scsi 0:0:0:0: Direct-Access ATA WDC WD1002FAEX-0 05.0 PQ: 0 ANSI: 5
    [ 63.943994] scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GH22NS50 TN04 PQ: 0 ANSI: 5
    [ 63.946116] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 63.946150] sd 0:0:0:0: [sda] Write Protect is off
    [ 63.946152] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 63.946167] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 63.954097] sda: sda1 sda2 sda3
    [ 63.954299] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 63.963411] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 63.963414] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 63.963518] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 64.360012] usb 2-5: new high speed USB device number 3 using ehci_hcd
    [ 64.565540] Initializing USB Mass Storage driver...
    [ 64.565618] scsi4 : usb-storage 2-5:1.0
    [ 64.565663] usbcore: registered new interface driver usb-storage
    [ 64.565664] USB Mass Storage support registered.
    [ 64.840010] usb 4-1: new full speed USB device number 2 using uhci_hcd
    [ 65.026702] hub 4-1:1.0: USB hub found
    [ 65.027689] hub 4-1:1.0: 3 ports detected
    [ 65.310009] usb 4-2: new low speed USB device number 3 using uhci_hcd
    [ 65.499874] input: USB Optical Mouse as /devices/pci0000:00/0000:00:1a.1/usb4/4-2/4-2:1.0/input/input0
    [ 65.499920] generic-usb 0003:0461:4D15.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:1a.1-2/input0
    [ 65.499929] usbcore: registered new interface driver usbhid
    [ 65.499930] usbhid: USB HID core driver
    [ 65.570232] scsi 4:0:0:0: Direct-Access TEAC USB HS-CF Card 4.08 PQ: 0 ANSI: 0
    [ 65.577604] scsi 4:0:0:1: Direct-Access TEAC USB HS-xD/SM 4.08 PQ: 0 ANSI: 0
    [ 65.589979] scsi 4:0:0:2: Direct-Access TEAC USB HS-MS Card 4.08 PQ: 0 ANSI: 0
    [ 65.597478] scsi 4:0:0:3: Direct-Access TEAC USB HS-SD Card 4.08 PQ: 0 ANSI: 0
    [ 65.636345] sd 4:0:0:0: [sdb] Attached SCSI removable disk
    [ 65.675345] sd 4:0:0:1: [sdc] Attached SCSI removable disk
    [ 65.691970] sd 4:0:0:2: [sdd] Attached SCSI removable disk
    [ 65.700220] sd 4:0:0:3: [sde] Attached SCSI removable disk
    [ 65.760011] usb 7-2: new full speed USB device number 2 using uhci_hcd
    [ 66.050378] usb 1-5.1: new high speed USB device number 6 using ehci_hcd
    [ 66.161907] hub 1-5.1:1.0: USB hub found
    [ 66.162251] hub 1-5.1:1.0: 4 ports detected
    [ 66.241689] usb 4-1.1: new full speed USB device number 4 using uhci_hcd
    [ 66.390902] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1a.1/usb4/4-1/4-1.1/4-1.1:1.0/input/input1
    [ 66.390933] generic-usb 0003:413C:2010.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1a.1-1.1/input0
    [ 66.397751] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1a.1/usb4/4-1/4-1.1/4-1.1:1.1/input/input2
    [ 66.397794] generic-usb 0003:413C:2010.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell USB Keyboard] on usb-0000:00:1a.1-1.1/input1
    [ 121.430130] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 123.970098] systemd[1]: systemd 200 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 123.998806] systemd[1]: Set hostname to <530-Arch>.
    [ 124.769151] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 124.769197] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 124.769210] systemd[1]: Starting Remote File System Setup.
    [ 124.769292] systemd[1]: Reached target Remote File System Setup.
    [ 124.769300] systemd[1]: Starting Syslog Socket.
    [ 124.769374] systemd[1]: Listening on Syslog Socket.
    [ 124.769383] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 124.769452] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 124.769460] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 124.769532] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 124.769539] systemd[1]: Starting Delayed Shutdown Socket.
    [ 124.769605] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 124.769612] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 124.769681] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 124.769688] systemd[1]: Starting Encrypted Volumes.
    [ 124.769742] systemd[1]: Reached target Encrypted Volumes.
    [ 124.769789] systemd[1]: Starting udev Kernel Socket.
    [ 124.769854] systemd[1]: Listening on udev Kernel Socket.
    [ 124.769891] systemd[1]: Starting udev Control Socket.
    [ 124.769957] systemd[1]: Listening on udev Control Socket.
    [ 124.769969] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 124.769999] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 124.770015] systemd[1]: Starting Paths.
    [ 124.770067] systemd[1]: Reached target Paths.
    [ 124.770090] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 124.770232] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 124.770240] systemd[1]: Starting Journal Socket.
    [ 124.770320] systemd[1]: Listening on Journal Socket.
    [ 124.770334] systemd[1]: Mounting POSIX Message Queue File System...
    [ 124.879092] systemd[1]: Started Set Up Additional Binary Formats.
    [ 124.879212] systemd[1]: Starting udev Kernel Device Manager...
    [ 124.953513] systemd[1]: Starting Load Kernel Modules...
    [ 124.990140] systemd-udevd[152]: starting version 200
    [ 125.020148] systemd[1]: Starting udev Coldplug all Devices...
    [ 125.080119] systemd[1]: Starting Journal Service...
    [ 125.130194] systemd[1]: Started Journal Service.
    [ 125.154128] systemd[1]: Starting Apply Kernel Variables...
    [ 125.172193] vboxdrv: Found 2 processor cores.
    [ 125.173262] vboxdrv: fAsync=0 offMin=0x252 offMax=0x1098
    [ 125.173309] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 125.173311] vboxdrv: Successfully loaded version 4.2.10_OSE (interface 0x001a0004).
    [ 125.210168] systemd[1]: Starting Setup Virtual Console...
    [ 125.239943] vboxpci: IOMMU not found (not registered)
    [ 125.280099] systemd[1]: Mounting Debug File System...
    [ 125.360097] systemd[1]: Mounting Huge Pages File System...
    [ 125.411749] fuse init (API version 7.16)
    [ 125.430064] systemd[1]: Starting Swap.
    [ 125.430138] systemd[1]: Reached target Swap.
    [ 125.430167] systemd[1]: Started File System Check on Root Device.
    [ 125.430178] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 125.490117] systemd[1]: Expecting device dev-sda1.device...
    [ 125.490952] systemd[1]: Expecting device dev-system-home.device...
    [ 125.492912] systemd[1]: Started udev Kernel Device Manager.
    [ 125.493937] systemd[1]: Mounted POSIX Message Queue File System.
    [ 125.504233] EXT4-fs (dm-1): re-mounted. Opts: (null)
    [ 125.550960] systemd[1]: Started Load Kernel Modules.
    [ 125.692260] ACPI: Fan [FAN] (on)
    [ 125.692495] thermal LNXTHERM:00: registered as thermal_zone0
    [ 125.692497] ACPI: Thermal Zone [THRM] (40 C)
    [ 125.694631] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
    [ 125.694637] ACPI: Power Button [PWRB]
    [ 125.695144] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 125.695147] ACPI: Power Button [PWRF]
    [ 125.698756] ACPI: acpi_idle registered with cpuidle
    [ 125.711049] systemd[1]: Started Apply Kernel Variables.
    [ 125.791030] systemd[1]: Started Setup Virtual Console.
    [ 125.792132] systemd[1]: Mounted Debug File System.
    [ 125.793196] systemd[1]: Mounted Huge Pages File System.
    [ 125.823181] iTCO_vendor_support: vendor-support=0
    [ 125.832326] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [ 125.832413] iTCO_wdt: Found a ICH9R TCO device (Version=2, TCOBASE=0x0460)
    [ 125.832465] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 125.861014] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 125.925415] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 18 (level, low) -> IRQ 18
    [ 125.931016] systemd[1]: Started udev Coldplug all Devices.
    [ 125.931053] systemd[1]: Starting Load Random Seed...
    [ 125.972288] input: PC Speaker as /devices/platform/pcspkr/input/input5
    [ 125.974253] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
    [ 125.974255] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [ 125.974275] e1000 0000:02:00.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    [ 126.010143] systemd[1]: Mounting FUSE Control File System...
    [ 126.248928] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 126.294564] Linux media interface: v0.10
    [ 126.300084] systemd[1]: Mounted Configuration File System.
    [ 126.300106] systemd[1]: Starting Local File Systems (Pre).
    [ 126.301223] systemd[1]: Reached target Local File Systems (Pre).
    [ 126.301236] systemd[1]: Mounting /tmp...
    [ 126.377775] Linux video capture interface: v2.00
    [ 126.432046] systemd[1]: Mounted FUSE Control File System.
    [ 126.462280] e1000 0000:02:00.0: eth0: (PCI:33MHz:32-bit) 00:0e:0c:d0:a9:e7
    [ 126.462285] e1000 0000:02:00.0: eth0: Intel(R) PRO/1000 Network Connection
    [ 126.500227] systemd-udevd[164]: renamed network interface eth0 to enp2s0
    [ 126.501038] systemd[1]: Started Load Random Seed.
    [ 126.502216] systemd[1]: Mounted /tmp.
    [ 126.506786] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    [ 126.506833] HDA Intel 0000:00:1b.0: irq 41 for MSI/MSI-X
    [ 126.506848] HDA Intel 0000:00:1b.0: setting latency timer to 64
    [ 126.531938] uvcvideo: Found UVC 1.00 device <unnamed> (046d:0809)
    [ 126.565629] input: UVC Camera (046d:0809) as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input6
    [ 126.565690] usbcore: registered new interface driver uvcvideo
    [ 126.565692] USB Video Class driver (v1.1.0)
    [ 126.590651] systemd[1]: Starting LVM2 metadata daemon...
    [ 126.616253] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 126.619198] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 126.619298] HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 126.619341] HDA Intel 0000:01:00.1: irq 42 for MSI/MSI-X
    [ 126.619358] HDA Intel 0000:01:00.1: setting latency timer to 64
    [ 126.656242] HDMI status: Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 126.656451] input: HD-Audio Generic HDMI/DP as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input9
    [ 126.752008] systemd[1]: Started LVM2 metadata daemon.
    [ 126.852107] systemd[1]: Found device WDC_WD1002FAEX-00Z3A0.
    [ 126.852132] systemd[1]: Starting File System Check on /dev/sda1...
    [ 126.968131] systemd[1]: Starting Sound Card.
    [ 126.969099] systemd[1]: Reached target Sound Card.
    [ 127.068309] usbcore: registered new interface driver snd-usb-audio
    [ 127.090039] set resolution quirk: cval->res = 384
    [ 127.191068] systemd[1]: Started File System Check on /dev/sda1.
    [ 127.191108] systemd[1]: Mounting /boot...
    [ 127.342463] systemd[1]: Found device /dev/system/home.
    [ 127.342487] systemd[1]: Starting File System Check on /dev/system/home...
    [ 127.345862] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
    [ 127.347400] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
    [ 127.402015] systemd[1]: Mounted /boot.
    [ 127.571070] systemd[1]: Started File System Check on /dev/system/home.
    [ 127.571107] systemd[1]: Mounting /home...
    [ 127.733803] EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts: (null)
    [ 127.735071] systemd[1]: Mounted /home.
    [ 127.735105] systemd[1]: Mounting /home/user/Temp...
    [ 127.941264] systemd[1]: Mounted /home/user/Temp.
    [ 127.941290] systemd[1]: Starting Local File Systems.
    [ 127.942288] systemd[1]: Reached target Local File Systems.
    [ 127.942344] systemd[1]: Starting Recreate Volatile Files and Directories...
    [ 128.511113] systemd[1]: Started Recreate Volatile Files and Directories.
    [ 128.511164] systemd[1]: Starting System Initialization.
    [ 128.512200] systemd[1]: Reached target System Initialization.
    [ 128.512212] systemd[1]: Starting D-Bus System Message Bus Socket.
    [ 128.513265] systemd[1]: Listening on D-Bus System Message Bus Socket.
    [ 128.513275] systemd[1]: Starting Sockets.
    [ 128.514300] systemd[1]: Reached target Sockets.
    [ 128.514311] systemd[1]: Starting Daily Cleanup of Temporary Directories.
    [ 128.514326] systemd[1]: Started Daily Cleanup of Temporary Directories.
    [ 128.514335] systemd[1]: Starting Timers.
    [ 128.515358] systemd[1]: Reached target Timers.
    [ 128.515366] systemd[1]: Starting Restore Sound Card State...
    [ 128.590137] systemd[1]: Starting Basic System.
    [ 128.591286] systemd[1]: Reached target Basic System.
    [ 128.591300] systemd[1]: Starting System Logger Daemon...
    [ 128.651171] systemd[1]: Started System Logger Daemon.
    [ 128.651191] systemd[1]: Starting powersave level for Radeon driver...
    [ 128.720168] systemd[1]: Started SSH Key Generation.
    [ 128.720202] systemd[1]: Starting OpenSSH Daemon...
    [ 128.801180] systemd[1]: Started OpenSSH Daemon.
    [ 128.801207] systemd[1]: Starting Periodic Command Scheduler...
    [ 128.861133] systemd[1]: Started Periodic Command Scheduler.
    [ 128.861157] systemd[1]: Starting Apparmor...
    [ 128.921385] systemd[1]: Started Apparmor.
    [ 128.921416] systemd[1]: Starting Netcfg multi-profile daemon...
    [ 128.980152] systemd[1]: Starting Packet Filtering Framework...
    [ 129.040127] systemd[1]: Starting Xbox 360 Controller Driver...
    [ 129.042976] ADDRCONF(NETDEV_UP): enp2s0: link is not ready
    [ 129.121301] systemd[1]: Started Xbox 360 Controller Driver.
    [ 129.121333] systemd[1]: Starting Login Service...
    [ 129.150621] ip_tables: (C) 2000-2006 Netfilter Core Team
    [ 129.190111] systemd[1]: Starting D-Bus System Message Bus...
    [ 129.204645] type=1400 audit(1365546783.767:2): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/managesieve-login" pid=367 comm="apparmor_parser"
    [ 129.210909] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [ 129.271230] systemd[1]: Started D-Bus System Message Bus.
    [ 129.291825] e1000: enp2s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
    [ 129.292656] ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
    [ 129.314331] input: Xbox Gamepad (userspace driver) as /devices/virtual/input/input10
    [ 129.368509] type=1400 audit(1365546783.927:3): apparmor="STATUS" operation="profile_load" name="/usr/sbin/dnsmasq" pid=367 comm="apparmor_parser"
    [ 129.381085] systemd[1]: Started Restore Sound Card State.
    [ 129.471059] systemd[1]: Started powersave level for Radeon driver.
    [ 129.591095] systemd[1]: Started Netcfg multi-profile daemon.
    [ 129.691085] systemd[1]: Started Packet Filtering Framework.
    [ 129.691122] systemd[1]: Starting Network.
    [ 129.692143] systemd[1]: Reached target Network.
    [ 129.692153] systemd[1]: Starting Anonymizing Overlay Network...
    [ 129.770137] systemd[1]: Starting Network Time Service...
    [ 129.851368] systemd[1]: Mounting /home/user/NetworkShare...
    [ 129.886172] type=1400 audit(1365546784.447:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2" pid=367 comm="apparmor_parser"
    [ 129.886251] type=1400 audit(1365546784.447:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//DEFAULT_URI" pid=367 comm="apparmor_parser"
    [ 129.886306] type=1400 audit(1365546784.447:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//HANDLING_UNTRUSTED_INPUT" pid=367 comm="apparmor_parser"
    [ 129.886417] type=1400 audit(1365546784.447:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//phpsysinfo" pid=367 comm="apparmor_parser"
    [ 129.991051] FS-Cache: Loaded
    [ 130.059005] FS-Cache: Netfs 'cifs' registered for caching
    [ 130.380110] e1000: enp2s0 NIC Link is Down
    [ 130.449417] type=1400 audit(1365546785.007:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/chromium/chromium" pid=367 comm="apparmor_parser"
    [ 130.600105] type=1400 audit(1365546785.167:9): apparmor="STATUS" operation="profile_load" name="/sbin/syslogd" pid=367 comm="apparmor_parser"
    [ 130.738201] type=1400 audit(1365546785.297:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/avahi-daemon" pid=367 comm="apparmor_parser"
    [ 130.946524] type=1400 audit(1365546785.507:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/pop3-login" pid=367 comm="apparmor_parser"
    [ 132.681822] e1000: enp2s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
    [ 133.770110] e1000: enp2s0 NIC Link is Down
    [ 134.715491] audit_printk_skb: 63 callbacks suppressed
    [ 134.715494] type=1400 audit(1365546789.277:33): apparmor="STATUS" operation="profile_load" name="/usr/lib/firefox{,-[0-9]*}/firefox{,*[^s][^h]}" pid=367 comm="apparmor_parser"
    [ 134.833922] type=1400 audit(1365546789.397:34): apparmor="STATUS" operation="profile_load" name="/usr/sbin/identd" pid=367 comm="apparmor_parser"
    [ 136.131828] e1000: enp2s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
    [ 137.230119] e1000: enp2s0 NIC Link is Down
    [ 138.190024] CIFS VFS: Error connecting to socket. Aborting operation
    [ 138.240053] CIFS VFS: cifs_mount failed w/return code = -115
    [ 139.531821] e1000: enp2s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
    [ 139.950006] enp2s0: no IPv6 routers present
    [ 146.452046] EXT4-fs (dm-1): re-mounted. Opts: commit=0
    [ 146.834045] EXT4-fs (dm-2): re-mounted. Opts: commit=0
    ./usr/lib/firmware/radeon/REDWOOD_pfp.bin is present within the initramfs file, so I'm not quite sure why it cannot find it (lsinitcpio /boot/initramfs-linux-lts.img):
    ./VERSION
    ./buildconfig
    ./config
    ./shutdown
    ./hooks
    ./hooks/shutdown
    ./hooks/lvm2
    ./hooks/encrypt
    ./hooks/udev
    ./init
    ./init_functions
    ./lib64
    ./sbin
    ./bin
    ./lib
    ./usr
    ./usr/lib64
    ./usr/sbin
    ./usr/bin
    ./usr/bin/findmnt
    ./usr/bin/lsblk
    ./usr/bin/cp
    ./usr/bin/fsck
    ./usr/bin/fsck.ext3
    ./usr/bin/fsck.ext2
    ./usr/bin/fsck.ext4
    ./usr/bin/dmsetup
    ./usr/bin/lvmetad
    ./usr/bin/lvm
    ./usr/bin/cryptsetup
    ./usr/bin/udevadm
    ./usr/bin/udevd
    ./usr/bin/switch_root
    ./usr/bin/mount
    ./usr/bin/blkid
    ./usr/bin/modinfo
    ./usr/bin/modprobe
    ./usr/bin/lsmod
    ./usr/bin/rmmod
    ./usr/bin/insmod
    ./usr/bin/depmod
    ./usr/bin/kmod
    ./usr/bin/yes
    ./usr/bin/wget
    ./usr/bin/wc
    ./usr/bin/vi
    ./usr/bin/uptime
    ./usr/bin/uniq
    ./usr/bin/uname
    ./usr/bin/umount
    ./usr/bin/true
    ./usr/bin/touch
    ./usr/bin/tftp
    ./usr/bin/test
    ./usr/bin/telnet
    ./usr/bin/tail
    ./usr/bin/tac
    ./usr/bin/strings
    ./usr/bin/stat
    ./usr/bin/sort
    ./usr/bin/sleep
    ./usr/bin/sha512sum
    ./usr/bin/sha256sum
    ./usr/bin/sha1sum
    ./usr/bin/sh
    ./usr/bin/setfont
    ./usr/bin/seq
    ./usr/bin/sed
    ./usr/bin/route
    ./usr/bin/rmdir
    ./usr/bin/rm
    ./usr/bin/reboot
    ./usr/bin/readlink
    ./usr/bin/pwd
    ./usr/bin/ps
    ./usr/bin/printf
    ./usr/bin/poweroff
    ./usr/bin/ping6
    ./usr/bin/ping
    ./usr/bin/pidof
    ./usr/bin/pgrep
    ./usr/bin/openvt
    ./usr/bin/nslookup
    ./usr/bin/netstat
    ./usr/bin/nc
    ./usr/bin/mv
    ./usr/bin/mktemp
    ./usr/bin/mknod
    ./usr/bin/mkfifo
    ./usr/bin/mkdir
    ./usr/bin/md5sum
    ./usr/bin/ls
    ./usr/bin/losetup
    ./usr/bin/loadkmap
    ./usr/bin/loadfont
    ./usr/bin/ln
    ./usr/bin/less
    ./usr/bin/killall
    ./usr/bin/kill
    ./usr/bin/kbd_mode
    ./usr/bin/iptunnel
    ./usr/bin/iprule
    ./usr/bin/iproute
    ./usr/bin/iplink
    ./usr/bin/ipaddr
    ./usr/bin/ip
    ./usr/bin/install
    ./usr/bin/init
    ./usr/bin/ifconfig
    ./usr/bin/hexdump
    ./usr/bin/head
    ./usr/bin/halt
    ./usr/bin/grep
    ./usr/bin/getopt
    ./usr/bin/free
    ./usr/bin/false
    ./usr/bin/expr
    ./usr/bin/env
    ./usr/bin/egrep
    ./usr/bin/echo
    ./usr/bin/du
    ./usr/bin/dmesg
    ./usr/bin/dirname
    ./usr/bin/df
    ./usr/bin/dd
    ./usr/bin/cut
    ./usr/bin/cttyhack
    ./usr/bin/clear
    ./usr/bin/chroot
    ./usr/bin/chown
    ./usr/bin/chmod
    ./usr/bin/chgrp
    ./usr/bin/cat
    ./usr/bin/basename
    ./usr/bin/awk
    ./usr/bin/ash
    ./usr/bin/[[
    ./usr/bin/[
    ./usr/bin/busybox
    ./usr/lib
    ./usr/lib/firmware
    ./usr/lib/firmware/radeon
    ./usr/lib/firmware/radeon/BARTS_pfp.bin
    ./usr/lib/firmware/radeon/BARTS_me.bin
    ./usr/lib/firmware/radeon/BARTS_mc.bin
    ./usr/lib/firmware/radeon/BTC_rlc.bin
    ./usr/lib/firmware/radeon/TURKS_pfp.bin
    ./usr/lib/firmware/radeon/TURKS_me.bin
    ./usr/lib/firmware/radeon/TURKS_mc.bin
    ./usr/lib/firmware/radeon/CAICOS_pfp.bin
    ./usr/lib/firmware/radeon/CAICOS_me.bin
    ./usr/lib/firmware/radeon/CAICOS_mc.bin
    ./usr/lib/firmware/radeon/CAYMAN_pfp.bin
    ./usr/lib/firmware/radeon/CAYMAN_me.bin
    ./usr/lib/firmware/radeon/CAYMAN_mc.bin
    ./usr/lib/firmware/radeon/CAYMAN_rlc.bin
    ./usr/lib/firmware/radeon/R600_pfp.bin
    ./usr/lib/firmware/radeon/R600_me.bin
    ./usr/lib/firmware/radeon/RV610_pfp.bin
    ./usr/lib/firmware/radeon/RV610_me.bin
    ./usr/lib/firmware/radeon/RV630_pfp.bin
    ./usr/lib/firmware/radeon/RV630_me.bin
    ./usr/lib/firmware/radeon/RV620_pfp.bin
    ./usr/lib/firmware/radeon/RV620_me.bin
    ./usr/lib/firmware/radeon/RV635_pfp.bin
    ./usr/lib/firmware/radeon/RV635_me.bin
    ./usr/lib/firmware/radeon/RV670_pfp.bin
    ./usr/lib/firmware/radeon/RV670_me.bin
    ./usr/lib/firmware/radeon/RS780_pfp.bin
    ./usr/lib/firmware/radeon/RS780_me.bin
    ./usr/lib/firmware/radeon/RV770_pfp.bin
    ./usr/lib/firmware/radeon/RV770_me.bin
    ./usr/lib/firmware/radeon/RV730_pfp.bin
    ./usr/lib/firmware/radeon/RV730_me.bin
    ./usr/lib/firmware/radeon/RV710_pfp.bin
    ./usr/lib/firmware/radeon/RV710_me.bin
    ./usr/lib/firmware/radeon/R600_rlc.bin
    ./usr/lib/firmware/radeon/R700_rlc.bin
    ./usr/lib/firmware/radeon/CEDAR_pfp.bin
    ./usr/lib/firmware/radeon/CEDAR_me.bin
    ./usr/lib/firmware/radeon/CEDAR_rlc.bin
    ./usr/lib/firmware/radeon/REDWOOD_pfp.bin
    ./usr/lib/firmware/radeon/REDWOOD_me.bin
    ./usr/lib/firmware/radeon/REDWOOD_rlc.bin
    ./usr/lib/firmware/radeon/JUNIPER_pfp.bin
    ./usr/lib/firmware/radeon/JUNIPER_me.bin
    ./usr/lib/firmware/radeon/JUNIPER_rlc.bin
    ./usr/lib/firmware/radeon/CYPRESS_pfp.bin
    ./usr/

    This occurs with the 3.4 kernel as well, so whatever incompatibility was introduced was fixed in 3.5 or 3.6. I'm using 3.7.10 right now (since everything else seems to be broken in some way), and not experiencing this.

  • JMF on PDA with linux famliar

    Hello,I am disperate
    When I tried to install the jmf on my pda with linux familiar I have got this error message:
    Quando tento di installare le jmf su palamre con linux familiar ricevo il seguente errore
    Unpacking...
    Extracting...
    ./install.sfx.2146: 1: Syntax error: "(" unexpected
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /j2re1.3.1/lib/armv4l
    /libawt.so: libXm.so.2: cannot open shared object file: No such file or director
    y
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1382)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1298)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:53)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:41)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:356)
    Done.
    Why?
    thanks

    I have solved the previous problem but now when I tri to reproduce an audio file I haven't listened any!
    What is the problem?
    Pleasure help me!!!!!!very very urgent

  • Sharing DVD-ROM with windows computers ?

    altought i'm very experienced with linux, i'm rather new to mac os, so if this question sounds dumb, accept my early apologies.
    thing is, some time ago, i was trying to copy some printer drivers from a CD to a windows box that didn't have a working cd-rom reader. at first i tried to share my ibook's dvd drive with the windows box, but couldn't find a way to do that from the GUI. since samba is nothing new to me, i edited samba's smb.conf file and added the share manually. after i restarted samba, the windows box could see the share, list the cd's folders but it couldn't open any file nor run executables.
    all windows said was that i didn't have permission to do so.
    i ended up sharing the C: drive on the windows machine and mounted it on mac os to push the files to a temp folder on the wondows side.
    i found and old thread here (from 2000 IIRC) about a shareware that could share folders other than my own home folder, but i don't want to use it, i rather edit smb.conf manually. i'd like to know if there's anything alse besides adding the share in smb.conf that'll allow windows to access the files on my DVD unit.

    ok here is the problem the mount points of volumes on Mac OSX differs from linux,
    In linux volumes are mounted in /mnt
    however on the mac the reside in /dev for example my dvd drive on my imac is
    /dev/disk1s1
    but the only way to browse the volume is using is pathname /Volumes/dvdname
    where dvdname is that actual name of the disk.
    So I can easily setup a samba sharepoint on my using the /Volumes path e.g add the following to /etc/smb.conf
    [dvd]
    comment = dvd drive on macintosh
    writable = no
    path = /Volumes/dvdname
    The problem is that whenever you change your dvd roms you have to change the path to the /Volumes/ each time.
    Sharepoints would be quick way of doing this.
    I have tried using path = /dev/disk1s1
    but I get an error I will keep digging and if you google around as well maybe we can find a good solution.

  • CIN with Linux static library .a

        Can CIN's work with Linux static libraries? by default cintools create makefile with LD flags specified as "-shared", but my source uses static library /usr/lib/libpci.a

    Solved this problem.

  • Sharing a folder with other users on the same machine (SOLVED)

    Hi,
    Recently, I've been sharing my computer with my dad. I don't want him to use my account, since I have a lot of secret files and bookmarks on my profile. However, I would like to share all my music with him. What I did was to set the permission of my Music directory to 777 and using root create a symbolic link from my own account to his account. But then when I log into his account, it says the folder is corrupt.
    Then I created a symbolic link from my music directory to /media/ and set the permission to 777. Again I tried to see if I can access it from my dad's account and got the same error.
    What's the best way of creating common folders between users in a linux machine?
    Note that, since I use Amarok, I don't want to move my Music to somewhere else, because it will mess up with the database info of songs.
    EDIT: I solved the problem by using mount instead of symbolic links.
    You have to issue the following command:
    mount --bind /home/name/music /media/music/
    Of course you have to execute this command whenever you boot the computer. Just place this command in rc.local and you're good.
    Thanks
    Last edited by mohtasham1983 (2009-11-05 22:06:03)

    grey wrote:If I wanted to share it between different users, I wouldn't put it inside one particular users home directory. Just use a reasonable place that is not used by the system, like /usr/local/data, /var/shared or so, give it the desired permissions and that's it.
    you are absolutely right and i recommend this as well.
    grey wrote:The link will probably not work, because in order to read /home/yourname/music, you need to be able to read /home/yourname. That is even true if root created the link.
    that is true for symbolic links, not bind mounts.  a bind mounted dir doesn't care about the parent directories because your not traversing to it through a link, it's just 'there'.  this is how i put folders under my ~ out on my http server.

  • Maxtor 250GB with Linux

    Hi All,
    Am thinking of purchasing an external Hard Drive of Maxtor, 250GB USB interface. May I know if this device can work with Red Hat Enterprise Linux 4, or does Linux require a driver for this. I have a 2 GB USB from Transcend and it is recognized by Linux. So, I suppose I don't require an additional driver for Maxtor.
    Does anyone find Maxtor having issues with Linux? If so, please mention...
    Regards,
    ...

    Hi Flake
    You will need to control that proper usb is installed :
    'lsmod' |grep -i usb shows that
    usb-storage and usbcore
    are installed.
    After that you will be able to create a file system:
    mke2fs /dev/hdXX (sdXX for scsi) for an ext2 partition
    mke2fs -j /dev/hdXX for ext3 partition
    mkresierfs /dev/hdXX for a reiser3 partion
    Otherwise read that :
    http://kbase.redhat.com/faq/FAQ_43_4520.shtm
    And this one before you buy your external drive:
    http://www.linuxforums.org/forum/peripherals-hardware/58707-maxtor-onetouch-250-gb-external-usb-harddrive.html

  • Install PT8.53 with Linux Issue: Jolt client (ip address 192.168.196.102) does not have proper application password

    Folks,
    Hello.
    I am installing PeopleTools 8.53 with Oracle Database Server 11gR1 and OS Oracle Linux 5.10.
    Data Mover Bootstrap and Application Designer can log into Database instance successfully. My procedure to run PIA is below:
    Step 1: start Oracle Database Server and LISTENR is listening.
    Step 2: start Application Server ./psadmin and 8 processes are started.
    Step 3: start WebLogic Server PIA /opt/PT8.53/webserv/PT853/bin/startPIA.sh
    In Browser, http://192.168.196.102:8000/ps/signon.html comes up successfully. But when sign in using UserID PSADMIN and password "myname", I get the error message in Browser as below:
    The application server is down at this time.
    CHECK APPSERVER LOGS. THE SITE BOOTED WITH INTERNAL DEFAULT SETTINGS, BECAUSE OF: bea.jolt.ServiceException: Invalid Session
    We've detected that your operating system is not supported by this website. For best results, use one of the following operating systems:
    Mac OS X 10.6(Snow Leopard)
    Mac OS X 10.5(Leopard)
    iPad
    Oracle Linux Enterprise
    Mac OS X 10.4(Tiger)
    Windows 8
    Windows 7
    Mac OS X 10.7(Lion)
    Regarding Application Designer, both Database Type "Oracle" and Connection Type "Application Server", UserID "PSADMIN" and password "myname" login successfully. I view TUXLOG (current Tuxedo log file) and its last screen is below:
    191723.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191723.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191723.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191724.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191725.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191725.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191725.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191726.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    191727.lucylinux.lucydomain!JSH.32462.2485226496.-2: JOLT_CAT:1626: "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password"
    I View APPSRV_1023.LOG (current server log file) and its content is below:
    PSADMIN.32259 (0) [2013-10-23T18:55:12.134](0) Begin boot attempt on domain PT853
    PSAPPSRV.32290 (0) [2013-10-23T18:55:35.701](0) PeopleTools Release 8.53 (Linux) starting. Tuxedo server is APPSRV(99)/1
    PSAPPSRV.32290 (0) [2013-10-23T18:55:35.923](0) Cache Directory being used: /home/user/psft/pt/8.53/appserv/PT853/CACHE/PSAPPSRV_1/
    PSAPPSRV.32290 (0) [2013-10-23T18:56:19.256](2) App server host time skew is DB+00:00:00 (ORACLE PT853)
    PSAPPSRV.32290 (0) [2013-10-23T18:56:23.504](0) Server started
    PSAPPSRV.32290 (0) [2013-10-23T18:56:23.507](3) Detected time zone is EDT
    PSAPPSRV.32338 (0) [2013-10-23T18:56:25.793](0) PeopleTools Release 8.53 (Linux) starting. Tuxedo server is APPSRV(99)/2
    PSAPPSRV.32338 (0) [2013-10-23T18:56:26.003](0) Cache Directory being used: /home/user/psft/pt/8.53/appserv/PT853/CACHE/PSAPPSRV_2/
    PSAPPSRV.32338 (0) [2013-10-23T18:57:08.871](2) App server host time skew is DB+00:00:00 (ORACLE PT853)
    PSAPPSRV.32338 (0) [2013-10-23T18:57:10.662](0) Server started
    PSAPPSRV.32338 (0) [2013-10-23T18:57:10.663](3) Detected time zone is EDT
    PSSAMSRV.32388 (0) [2013-10-23T18:57:12.159](2) Min instance is set to 1. To avoid loss of service, configure Min instance to atleast 2.
    PSSAMSRV.32388 (0) [2013-10-23T18:57:12.168](0) PeopleTools Release 8.53 (Li nux) starting. Tuxedo server is APPSRV(99)/100
    PSSAMSRV.32388 (0) [2013-10-23T18:57:12.265](0) Cache Directory being used: /home/user/psft/pt/8.53/appserv/PT853/CACHE/PSSAMSRV_100/
    PSSAMSRV.32388 (0) [2013-10-23T18:57:59.414](0) Server started
    PSSAMSRV.32388 (0) [2013-10-23T18:57:59.416](3) Detected time zone is EDT
    PSADMIN.32259 (0) [2013-10-23T18:58:48.149](0) End boot attempt on domain PT853
    PSAPPSRV.32290 (1) [2013-10-23T18:59:06.144 GetCertificate](3) Returning context. ID=PSADMIN, Lang=ENG, UStreamId=185906140_32290.1, Token=PT_LOCAL/2013-10-23-11.59.26.248432/PSADMIN/ENG/vSz0ix+wq8d+zPRwQ0Wa4hcek0Q=
    ~                                                                                                                                                        
    I think the error is indicated in TUXLOG file "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password". The application password "myname" in Browser http://192.168.196.102:8000/ps/signon.html page is not working. I use the same password "myname" to login Data Mover Bootstrap mode, Application Designer, and Application Server psadmin configuration successfully. I have tried a few other passwords in Browser http://192.168.196.102:8000/ps/signon.html page but not working.
    My question is:
    How to solve Sign In issue on http://192.168.196.102:8000/ps/signon.html that is "ERROR: Jolt client (ip address 192.168.196.102) does not have proper application password" ?
    Thanks.             

    Dear Nicolas,
    Hello. I have used the same password for "DomainConnectPswd" in the file Configuration.properties with that for Application Server setting. Eventually, UserID PSADMIN sign in http://192.168.196.102:8000/ps/signon.html successfully. PeopleTools 8.53 runs correctly in Browser.
    It seems that whether upgrade Oracle Linux 5.0 to the latest 5.10 does not have effect !
    I am very grateful to your great help for this installation of PT8.53 with Linux and Oracle Database !

  • HT4859 I shared itunes account with my daughter, had never synced my phone with computer, synced with computer and chose daughter's phone instead of create new phone, all phone contacts are now gone replaced with daughter's - is there no way to get contac

    I shared itunes account with daughter's phone, never synced my phone with home computer through itunes, synced tonight with itunes but choose her iphone and it restored all her info on my phone, all my phone contacts, text messages and photos are gone  - I had auto backup to icloud daily - is there any way to get phone numbers and texts back off icloud?

    If you have been backing up to iCloud your camera roll photos, text messages and other data and setting should be contained in the backup.  Restoring the backup to the phone should recover them.
    To do this, go to Settings>General>Reset, tap Erase All Content and Settings (which will erase the phone), then go through the setup screens on the phone and when given the option, choose Restore from iCloud Backup and follow the prompts.  Be sure your phone is connected to wifi and your charger as this may take some time to finish.

  • Should I switch from shared iCloud account with wife to two separate accounts with family sharing?

    My wife and I have always shared 1 iCloud accpunt between our our 5s phones, iPad, and an old 4s which is now just a toy for our toddler. With ios 8 I am not sure if it is possible or practical any more. We do it to share purchases and the photo stream and a Google calendar.
    With ios 8, it seems to be impossible for both of our phones to share their location. From what I can tell, only 1 device at a time on the icloud account can share its location. Is that a correct assumption? And icloud no longer gives the option for each of us to sign into separate itunes accounts on find my friends. We are forced to sign in with our 1 shared iCloud account. So we can no longer use find my friends to see each other's location.
    So has ios8 rending sharing an iCloud account useless? I'm wondering if we now need to have separate accounts and link them with family sharing. Will we lose the benefits of having our 1 shared account? I just wanted to make sure we wouldn't lose anything if I set her up with a new account and linked it with family sharing.

    I have lots of questions about this and other things too; I have been sharing my account with my wife and daughter for years through 10s of iPhones and iPads and with the introduction of IOS8 we are having lots of new and not so fun problems.
    As to your question about location.  I have three iPhones and one iPad using the same account now (on IOS 8) and all four devices show up with Find my iPhone.  My wife's was not showing up today but I went in and turned on the new feature "Send last Location" and all of a sudden her phone was able to be found again.  Not sure if that will solve your problem but just wanted you to know that I have the four devices all showing up in Find my iPhone with a shared account.

  • Sharing iTunes library with other users (on Vista)

    I'm posting this for my sister who just purchased a new computer running Vista. She's set up a user account for herself as well as one for each of my two nephews. We've successfully moved over her iTunes music folder from her laptop and can now access it and listen through her account.
    However, we'd like to set it up so that my two nephews can also listen to the music from their user accounts. My oldest nephew also has a shuffle that would sync to it.
    I've found a link to information about sharing, but I still need to clarify a few things.
    Here's the link:
    http://docs.info.apple.com/article.html?artnum=93195
    On this page, it describes how "to share your music with other accounts on the computer" and also how "to listen to another account's music files".
    Exactly how are these two things different? I'm pretty sure that I probably want the first of the two, but I'm not positive.
    And once we successfully set this up, would we have to sync the shuffle via my sister's main account or could it be synced from any of them?

    Let's answer your second question first ...
    And once we successfully set this up, would we have to sync the shuffle via my sister's main account or could it be synced from any of them?
    Any of them.
    ... and your first question second.
    Exactly how are these two things different?
    The first part - sharing your music with other accounts - makes the music available to the other users on the computer.
    It is then up to the other users to decide whether or not they want to make use of the available music, hence the second part - listening to another account's music files - which, as the article says, must be repeated "for each account that is listening to shared music."

Maybe you are looking for

  • Cisco ASA 5505 L2TP VPN cannot access internal network

    Hi, I'm trying to configure Cisco L2TP VPN to my office. After successful connection I cannot access to internal network. Can you jhelp me to find out the issue? I have Cisco ASA: inside network - 192.168.1.0 VPN network - 192.168.168.0 I have router

  • Best practice for Web Dynpro for Java to connect to SAP HR

    What is best way to connect Web Dynpro for Java application deployed in SAP portal to connect to SAP HR ? Is it good practice to connect to underlying SAP database ( eg oracle) directly to get the data or is there a better way ? This below article de

  • Creating attachments in FB03 transaction

    Hi all, I tried to create attachments in FB03 transaction but its giving message as 'Folder does not exist'.  Please suggest me how to achieve this functionality. Regards, Srilatha

  • Same Phone, Can I Switch?

    My husband and I both have the HTC Droid Eris. He is deployed at the moment and his phone works so much better than mine. He left his phone with me and said I could see about getting my number switched to his phone and the same for his number to mine

  • Oracle Application Server 10g R3 documentation link not working

    The Oracle Application Server 10g R3 documentation link is not working: From otn.oracle.com if you click on Documentation and then select Application Server it is supposed to take you to http://www.oracle.com/technology/documentation/appserver.html b