* [gentoo-user] sys-boot/plymouth could not work
@ 2012-04-03 5:43 张春江
2012-04-03 17:19 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: 张春江 @ 2012-04-03 5:43 UTC (permalink / raw
To: gentoo-user
Does anybody in the list have used plymouth.
I installed and configured plymouth as http://dev.gentoo.org/~aidecoe/doc/en/plymouth.xml told.
my grub.conf is
title Gentoo Linux
root (hd0,13)
kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 video=radeon:1366x768 quiet splash
initrd /boot/initramfs-3.2.1-gentoo-r2.img
While I rebooting my machine, it shows "[plymouth] could not create /run/plymouth" and there is no splash.
Then I created /run/plymouth directory in the initrd file system manually, but it seems that this doesn't change anything.
And then I created /run/plymouth in my root file system, while this time system shows
"plymouthd could not start boot splash: No such file or directory".
I checked my Ubuntu virtual machine, which plymouth works well, there is no /run/plymouth directory in initram file system or real root file system.
I googled this problem and found some guys had faced the same problem with me, but nobody have a solution.
This is my first time to ask for help in the list, and this is even my first time to use a mailing list.
Sorry for my poor English.
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-03 5:43 [gentoo-user] sys-boot/plymouth could not work 张春江
@ 2012-04-03 17:19 ` Canek Peláez Valdés
2012-04-04 4:01 ` 张春江
0 siblings, 1 reply; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-03 17:19 UTC (permalink / raw
To: gentoo-user
On Tue, Apr 3, 2012 at 12:43 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
> Does anybody in the list have used plymouth.
I do, but I also use systemd. And GRUB2.
> I installed and configured plymouth as http://dev.gentoo.org/~aidecoe/doc/en/plymouth.xml told.
> my grub.conf is
>
> title Gentoo Linux
> root (hd0,13)
> kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 video=radeon:1366x768 quiet splash
> initrd /boot/initramfs-3.2.1-gentoo-r2.img
Seems correct.
> While I rebooting my machine, it shows "[plymouth] could not create /run/plymouth" and there is no splash.
> Then I created /run/plymouth directory in the initrd file system manually, but it seems that this doesn't change anything.
> And then I created /run/plymouth in my root file system, while this time system shows
> "plymouthd could not start boot splash: No such file or directory".
The /run directory should be created when installing dbus; it's a tmpfs:
# mount | grep /run
tmpfs on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
And then it's bind-mounted in /var/run. At least that's how it happens
with systemd, and that's the expected behaviour. Did you created your
initramfs with dracut?
> I checked my Ubuntu virtual machine, which plymouth works well, there is no /run/plymouth directory in initram file system or real root file system.
My initramfs doesn't have a /run directory either:
# mkdir kk
# cd kk
# zcat /boot/initrd-3.2.12 | cpio -i
21514 blocks
# ls
bin dev etc init lib lib64 proc root run sbin shutdown sys
sysroot tmp usr var
However, inside /var, there is a symbolic link to /run:
# ls -l var
total 4
lrwxrwxrwx 1 root root 9 Apr 3 12:15 lock -> /run/lock
drwxr-xr-x 2 root root 4096 Apr 3 12:15 log
lrwxrwxrwx 1 root root 4 Apr 3 12:15 run -> /run
So the problem it's not the existance (or not) of the run directory, I
believe; it's the fact that it's mounted really early in the boot
process as a tmpfs. So, did you use dracut to generate your initramfs,
or did you use genkernel? Or you did it by hand?
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-03 17:19 ` Canek Peláez Valdés
@ 2012-04-04 4:01 ` 张春江
2012-04-04 4:06 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: 张春江 @ 2012-04-04 4:01 UTC (permalink / raw
To: gentoo-user
On 2012-04-04 01:19:39,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>I do, but I also use systemd. And GRUB2.
I use OpenRC0.9.8.4 and GNU GRUB0.97-r10, maybe that's the difference.
>The /run directory should be created when installing dbus; it's a tmpfs:
I have installed dbus, while I don't have a /run tmpfs.
>So the problem it's not the existance (or not) of the run directory, I
>believe; it's the fact that it's mounted really early in the boot
>process as a tmpfs. So, did you use dracut to generate your initramfs,
>or did you use genkernel? Or you did it by hand?
I don't know how to mount /run before the boot process,
I used dracut to generate my initramfs:
# dracut -H -f
I: *** Including module: dash ***
I: *** Including module: i18n ***
I: *** Including module: plymouth ***
I: *** Including module: kernel-modules ***
I: *** Including module: resume ***
I: *** Including module: rootfs-block ***
I: *** Including module: terminfo ***
I: *** Including module: udev-rules ***
I: Skipping udev rule: 50-udev.rules
I: Skipping udev rule: 95-late.rules
I: *** Including module: usrmount ***
I: *** Including module: base ***
I: *** Including module: fs-lib ***
I: *** Including module: shutdown ***
I: Skipping program kexec as it cannot be found and is flagged to be optional
I: *** Including modules done ***
I: Wrote /boot/initramfs-3.2.1-gentoo-r2.img:
I: -rw-r--r-- 1 root root 2773237 Apr 4 11:52 /boot/initramfs-3.2.1-gentoo-r2.img
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-04 4:01 ` 张春江
@ 2012-04-04 4:06 ` Canek Peláez Valdés
2012-04-04 5:01 ` 张春江
0 siblings, 1 reply; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-04 4:06 UTC (permalink / raw
To: gentoo-user
On Tue, Apr 3, 2012 at 11:01 PM, 张春江 <zhangchunjiangrj@126.com> wrote:
> On 2012-04-04 01:19:39,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>>I do, but I also use systemd. And GRUB2.
> I use OpenRC0.9.8.4 and GNU GRUB0.97-r10, maybe that's the difference.
>
>>The /run directory should be created when installing dbus; it's a tmpfs:
>
> I have installed dbus, while I don't have a /run tmpfs.
>
>>So the problem it's not the existance (or not) of the run directory, I
>>believe; it's the fact that it's mounted really early in the boot
>>process as a tmpfs. So, did you use dracut to generate your initramfs,
>>or did you use genkernel? Or you did it by hand?
>
> I don't know how to mount /run before the boot process,
> I used dracut to generate my initramfs:
> # dracut -H -f
> I: *** Including module: dash ***
> I: *** Including module: i18n ***
> I: *** Including module: plymouth ***
> I: *** Including module: kernel-modules ***
> I: *** Including module: resume ***
> I: *** Including module: rootfs-block ***
> I: *** Including module: terminfo ***
> I: *** Including module: udev-rules ***
> I: Skipping udev rule: 50-udev.rules
> I: Skipping udev rule: 95-late.rules
> I: *** Including module: usrmount ***
> I: *** Including module: base ***
> I: *** Including module: fs-lib ***
> I: *** Including module: shutdown ***
> I: Skipping program kexec as it cannot be found and is flagged to be optional
> I: *** Including modules done ***
> I: Wrote /boot/initramfs-3.2.1-gentoo-r2.img:
> I: -rw-r--r-- 1 root root 2773237 Apr 4 11:52 /boot/initramfs-3.2.1-gentoo-r2.img
Please add rd.debug to your grub kernel command line:
title Gentoo Linux
root (hd0,13)
kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10
video=radeon:1366x768 quiet splash rd.debug
initrd /boot/initramfs-3.2.1-gentoo-r2.img
Reboot, and immediately do
dmesg > output.txt
Please post the contents of output.txt. We need to know what exactly
is failing with the initramfs.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-04 4:06 ` Canek Peláez Valdés
@ 2012-04-04 5:01 ` 张春江
2012-04-04 7:03 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: 张春江 @ 2012-04-04 5:01 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1150 bytes --]
On 2012-04-04 12:06:26,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>Please add rd.debug to your grub kernel command line:
>
>title Gentoo Linux
>root (hd0,13)
>kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10
>video=radeon:1366x768 quiet splash rd.debug
>initrd /boot/initramfs-3.2.1-gentoo-r2.img
>
>Reboot, and immediately do
>
>dmesg > output.txt
>
>Please post the contents of output.txt. We need to know what exactly
>is failing with the initramfs.javascript:void(0)
The accessories are my dmesg output and my boot log.
Now it is very strange that I have a /run tmpfs in my machine.
# mount | grep run
tmpfs on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
# grep run /etc/mtab
tmpfs /run tmpfs rw,nosuid,nodev,relatime,mode=755 0 0
And now when I shutdown my machine, there is no plymouth error message
while no splash either. While booting, it shows
"plymouthd could not start boot splash: No such file or directory" and no splash.
I don't konw why, I just generated initramfs with dracut once again and run
# plymouth --show-splash
just now.
[-- Attachment #2: boot.log.txt --]
[-- Type: text/plain, Size: 3158 bytes --]
* Setting system clock using the hardware clock [Local Time] ... [ ok ]
* Loading module vboxdrv ... [ ok ]
* Loading module vboxnetflt ... [ ok ]
* Autoloaded 2 module(s)
* Checking local filesystems ...
/dev/sda10: clean, 4409/393216 files, 122111/1572864 blocks
/dev/sda14: clean, 366/25376 files, 22544/101376 blocks [ ok ]
* Remounting root filesystem read/write ... [ ok ]
* Updating /etc/mtab ... [ ok ]
* Mounting local filesystems ... [ ok ]
* Configuring kernel parameters ... [ ok ]
* Creating user login records ... [ ok ]
* Cleaning /var/run ... [ ok ]
* Wiping /tmp directory ... [ ok ]
* Setting hostname to zcj ... [ ok ]
* Setting terminal encoding [UTF-8] ... [ ok ]
* Setting keyboard mode [UTF-8] ... [ ok ]
* Loading key mappings [us] ... [ ok ]
* Bringing up interface lo
* 127.0.0.1/8 ... [ ok ]
* Adding routes
* 127.0.0.0/8 via 127.0.0.1 ... [ ok ]
* Mounting USB device filesystem [usbfs] ... [ ok ]
* Activating swap devices ... [ ok ]
* Initializing random number generator ... [ ok ]
INIT: Entering runlevel: 3
* Starting D-BUS system messagebus ... [ ok ]
* Starting NetworkManager ... [ ok ]
* Starting laptop_mode ...
modem-manager: ModemManager (version 0.4) starting...
modem-manager: Loaded plugin Longcheer
modem-manager: Loaded plugin MotoC
modem-manager: Loaded plugin Huawei
modem-manager: Loaded plugin Nokia
modem-manager: Loaded plugin Gobi
modem-manager: Loaded plugin Option
modem-manager: Loaded plugin AnyData
modem-manager: Loaded plugin Option High-Speed
modem-manager: Loaded plugin Generic
modem-manager: Loaded plugin SimTech
modem-manager: Loaded plugin Ericsson MBM
modem-manager: Loaded plugin Sierra
modem-manager: Loaded plugin ZTE
modem-manager: Loaded plugin Novatel
modem-manager: (tty/ttyS0): port's parent platform driver is not whitelisted
modem-manager: (tty/ttyS1): port's parent platform driver is not whitelisted
modem-manager: (tty/ttyS2): port's parent platform driver is not whitelisted
modem-manager: (tty/ttyS3): port's parent platform driver is not whitelis [ ok ]
* Mounting network filesystems ... [ ok ]
* Doing udev cleanups
* Setting up kdm ... [ ok ]
* Starting local [ ok ]
[-- Attachment #3: dmesg.txt --]
[-- Type: text/plain, Size: 41472 bytes --]
Linux version 3.2.1-gentoo-r2 (root@zcj) (gcc version 4.5.3 (Gentoo 4.5.3-r2 p1.1, pie-0.4.7) ) #19 SMP Mon Apr 2 13:04:49 CST 2012
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000007f8a1000 (usable)
BIOS-e820: 000000007f8a1000 - 000000007f8a7000 (reserved)
BIOS-e820: 000000007f8a7000 - 000000007f9ba000 (usable)
BIOS-e820: 000000007f9ba000 - 000000007fa0f000 (reserved)
BIOS-e820: 000000007fa0f000 - 000000007fb08000 (usable)
BIOS-e820: 000000007fb08000 - 000000007fd0f000 (reserved)
BIOS-e820: 000000007fd0f000 - 000000007fd19000 (usable)
BIOS-e820: 000000007fd19000 - 000000007fd1f000 (reserved)
BIOS-e820: 000000007fd1f000 - 000000007fd64000 (usable)
BIOS-e820: 000000007fd64000 - 000000007fd9f000 (ACPI NVS)
BIOS-e820: 000000007fd9f000 - 000000007fe00000 (ACPI data)
BIOS-e820: 000000007fe00000 - 0000000080000000 (reserved)
BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved)
BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved)
BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
DMI present.
DMI: LENOVO 20022 /NITU1, BIOS 18CN37WW(V2.10) 09/18/2009
e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
last_pfn = 0x7fd64 max_arch_pfn = 0x100000
MTRR default type: uncachable
MTRR fixed ranges enabled:
00000-9FFFF write-back
A0000-BFFFF uncachable
C0000-D3FFF write-protect
D4000-DFFFF uncachable
E0000-FFFFF write-protect
MTRR variable ranges enabled:
0 base 000000000 mask F80000000 write-back
1 base 0FFE00000 mask FFFE00000 write-protect
2 disabled
3 disabled
4 disabled
5 disabled
6 disabled
found SMP MP-table at [c00f75a0] f75a0
initial memory mapped : 0 - 01c00000
Base memory trampoline at [c009e000] 9e000 size 4096
init_memory_mapping: 0000000000000000-00000000377fe000
0000000000 - 0000400000 page 4k
0000400000 - 0037400000 page 2M
0037400000 - 00377fe000 page 4k
kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
ACPI: RSDP 000f7510 00024 (v02 LENOVO)
ACPI: XSDT 7fdf848f 00074 (v01 LENOVO CB-01 00000000 LTP 00000000)
ACPI: FACP 7fde8000 000F4 (v03 LENOVO CB-01 00000001 ALAN 00000001)
ACPI: DSDT 7fde9000 066BF (v02 LENOVO CB-01 00000001 INTL 20050624)
ACPI: FACS 7fd9efc0 00040
ACPI: HPET 7fdfed52 00038 (v01 LENOVO CB-01 00000001 LOHR 0000005A)
ACPI: MCFG 7fdfed8a 0003C (v01 LENOVO CB-01 00000001 LOHR 0000005A)
ACPI: SLIX 7fdfedc6 00176 (v01 LENOVO CB-01 00000001 TBD 00000001)
ACPI: DBGP 7fdfef3c 00034 (v01 LENOVO CB-01 00000001 LOHR 00000000)
ACPI: APIC 7fdfef70 00068 (v01 PTLTD ? APIC 00000000 LTP 00000000)
ACPI: BOOT 7fdfefd8 00028 (v01 PTLTD $SBFTBL$ 00000000 LTP 00000001)
ACPI: SSDT 7fde7000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
ACPI: SSDT 7fde6000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
ACPI: SSDT 7fde5000 0020F (v01 PmRef ApTst 00003000 INTL 20050624)
ACPI: Local APIC address 0xfee00000
1157MB HIGHMEM available.
887MB LOWMEM available.
mapped low ram: 0 - 377fe000
low ram: 0 - 377fe000
Zone PFN ranges:
DMA 0x00000010 -> 0x00001000
Normal 0x00001000 -> 0x000377fe
HighMem 0x000377fe -> 0x0007fd64
Movable zone start PFN for each node
early_node_map[6] active PFN ranges
0: 0x00000010 -> 0x0000009f
0: 0x00000100 -> 0x0007f8a1
0: 0x0007f8a7 -> 0x0007f9ba
0: 0x0007fa0f -> 0x0007fb08
0: 0x0007fd0f -> 0x0007fd19
0: 0x0007fd1f -> 0x0007fd64
On node 0 totalpages: 522891
DMA zone: 32 pages used for memmap
DMA zone: 0 pages reserved
DMA zone: 3951 pages, LIFO batch:0
Normal zone: 1744 pages used for memmap
Normal zone: 221486 pages, LIFO batch:31
HighMem zone: 2315 pages used for memmap
HighMem zone: 293363 pages, LIFO batch:31
Using APIC driver default
ACPI: PM-Timer IO Port: 0x408
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
SMP: Allowing 2 CPUs, 0 hotplug CPUs
nr_irqs_gsi: 40
Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
Booting paravirtualized kernel on bare hardware
setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
PERCPU: Embedded 12 pages/cpu @f6000000 s25536 r0 d23616 u2097152
pcpu-alloc: s25536 r0 d23616 u2097152 alloc=1*4194304
pcpu-alloc: [0] 0 1
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 518800
Kernel command line: root=/dev/sda10 quiet splash video=radeon:1280x1024 rd.debug
PID hash table entries: 4096 (order: 2, 16384 bytes)
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Initializing CPU#0
xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
Initializing HighMem for node 0 (000377fe:0007fd64)
Memory: 2068152k/2094480k available (3768k kernel code, 23412k reserved, 1639k data, 400k init, 1182712k highmem)
virtual kernel memory layout:
fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
pkmap : 0xff800000 - 0xffc00000 (4096 kB)
vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
.init : 0xc1548000 - 0xc15ac000 ( 400 kB)
.data : 0xc13ae39d - 0xc1548000 (1639 kB)
.text : 0xc1000000 - 0xc13ae39d (3768 kB)
Checking if this processor honours the WP bit even in supervisor mode...Ok.
Hierarchical RCU implementation.
NR_IRQS:2304 nr_irqs:512 16
CPU 0 irqstacks, hard=f5c06000 soft=f5c08000
Extended CMOS year: 2000
Console: colour VGA+ 80x25
console [tty0] enabled
hpet clockevent registered
Fast TSC calibration failed
TSC: PIT calibration matches HPET. 1 loops
Detected 2194.441 MHz processor.
Calibrating delay loop (skipped), value calculated using timer frequency.. 4388.88 BogoMIPS (lpj=21944410)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 512
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
mce: CPU supports 6 MCE banks
CPU0: Thermal monitoring enabled (TM2)
using mwait in idle threads.
ACPI: Core revision 20110623
Enabling APIC mode: Flat. Using 1 I/O APICs
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: Intel(R) Core(TM)2 Duo CPU T6600 @ 2.20GHz stepping 0a
Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
... version: 2
... bit width: 40
... generic registers: 2
... value mask: 000000ffffffffff
... max period: 000000007fffffff
... fixed-purpose events: 3
... event mask: 0000000700000003
CPU 1 irqstacks, hard=f5c8e000 soft=f5c90000
Booting Node 0, Processors #1 Ok.
smpboot cpu 1: start_ip = 9e000
Initializing CPU#1
Brought up 2 CPUs
Total of 2 processors activated (8777.85 BogoMIPS).
devtmpfs: initialized
NET: Registered protocol family 16
ACPI: bus type pci registered
dca service started, version 1.12.1
PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
PCI: Using MMCONFIG for extended config space
PCI: Using configuration type 1 for base access
bio: create slab <bio-0> at 0
ACPI: Added _OSI(Module Device)
ACPI: Added _OSI(Processor Device)
ACPI: Added _OSI(3.0 _SCP Extensions)
ACPI: Added _OSI(Processor Aggregator Device)
ACPI: EC: Look up EC in DSDT
[Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
ACPI: SSDT 7fd1aca0 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
ACPI: SSDT 7fd19620 00549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 00549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
ACPI: SSDT 7fd1aa20 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
ACPI: SSDT 7fd1af20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
ACPI: Interpreter enabled
ACPI: (supports S0 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
ACPI: No dock devices found.
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff]
pci 0000:00:00.0: [8086:2a40] type 0 class 0x000600
pci 0000:00:01.0: [8086:2a41] type 1 class 0x000604
pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
pci 0000:00:01.0: PME# disabled
pci 0000:00:1a.0: [8086:2937] type 0 class 0x000c03
pci 0000:00:1a.0: reg 20: [io 0x1800-0x181f]
pci 0000:00:1a.1: [8086:2938] type 0 class 0x000c03
pci 0000:00:1a.1: reg 20: [io 0x1820-0x183f]
pci 0000:00:1a.2: [8086:2939] type 0 class 0x000c03
pci 0000:00:1a.2: reg 20: [io 0x1840-0x185f]
pci 0000:00:1a.7: [8086:293c] type 0 class 0x000c03
pci 0000:00:1a.7: reg 10: [mem 0xf5505800-0xf5505bff]
pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
pci 0000:00:1a.7: PME# disabled
pci 0000:00:1b.0: [8086:293e] type 0 class 0x000403
pci 0000:00:1b.0: reg 10: [mem 0xf5500000-0xf5503fff 64bit]
pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1b.0: PME# disabled
pci 0000:00:1c.0: [8086:2940] type 1 class 0x000604
pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.0: PME# disabled
pci 0000:00:1c.1: [8086:2942] type 1 class 0x000604
pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.1: PME# disabled
pci 0000:00:1c.2: [8086:2944] type 1 class 0x000604
pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.2: PME# disabled
pci 0000:00:1c.3: [8086:2946] type 1 class 0x000604
pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.3: PME# disabled
pci 0000:00:1c.5: [8086:294a] type 1 class 0x000604
pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.5: PME# disabled
pci 0000:00:1d.0: [8086:2934] type 0 class 0x000c03
pci 0000:00:1d.0: reg 20: [io 0x1860-0x187f]
pci 0000:00:1d.1: [8086:2935] type 0 class 0x000c03
pci 0000:00:1d.1: reg 20: [io 0x1880-0x189f]
pci 0000:00:1d.2: [8086:2936] type 0 class 0x000c03
pci 0000:00:1d.2: reg 20: [io 0x18a0-0x18bf]
pci 0000:00:1d.7: [8086:293a] type 0 class 0x000c03
pci 0000:00:1d.7: reg 10: [mem 0xf5505c00-0xf5505fff]
pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
pci 0000:00:1d.7: PME# disabled
pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
pci 0000:00:1f.0: [8086:2919] type 0 class 0x000601
pci 0000:00:1f.2: [8086:2929] type 0 class 0x000106
pci 0000:00:1f.2: reg 10: [io 0x18f0-0x18f7]
pci 0000:00:1f.2: reg 14: [io 0x18e4-0x18e7]
pci 0000:00:1f.2: reg 18: [io 0x18e8-0x18ef]
pci 0000:00:1f.2: reg 1c: [io 0x18e0-0x18e3]
pci 0000:00:1f.2: reg 20: [io 0x18c0-0x18df]
pci 0000:00:1f.2: reg 24: [mem 0xf5505000-0xf55057ff]
pci 0000:00:1f.2: PME# supported from D3hot
pci 0000:00:1f.2: PME# disabled
pci 0000:00:1f.3: [8086:2930] type 0 class 0x000c05
pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff 64bit]
pci 0000:00:1f.3: reg 20: [io 0x1c00-0x1c1f]
pci 0000:00:1f.6: [8086:2932] type 0 class 0x001180
pci 0000:00:1f.6: reg 10: [mem 0xf5504000-0xf5504fff 64bit]
pci 0000:01:00.0: [10de:0a74] type 0 class 0x000300
pci 0000:01:00.0: reg 10: [mem 0xf4000000-0xf4ffffff]
pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
pci 0000:01:00.0: reg 1c: [mem 0xce000000-0xcfffffff 64bit pref]
pci 0000:01:00.0: reg 24: [io 0x2000-0x207f]
pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
pci 0000:01:00.1: [10de:0be3] type 0 class 0x000403
pci 0000:01:00.1: reg 10: [mem 0xf5000000-0xf5003fff]
pci 0000:00:01.0: PCI bridge to [bus 01-01]
pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
pci 0000:00:01.0: bridge window [mem 0xce000000-0xdfffffff 64bit pref]
pci 0000:00:1c.0: PCI bridge to [bus 02-02]
pci 0000:00:1c.1: PCI bridge to [bus 03-03]
pci 0000:04:00.0: [8086:4237] type 0 class 0x000280
pci 0000:04:00.0: reg 10: [mem 0xf5100000-0xf5101fff 64bit]
pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
pci 0000:04:00.0: PME# disabled
pci 0000:00:1c.2: PCI bridge to [bus 04-04]
pci 0000:00:1c.2: bridge window [mem 0xf5100000-0xf51fffff]
pci 0000:00:1c.3: PCI bridge to [bus 05-06]
pci 0000:00:1c.3: bridge window [io 0x3000-0x3fff]
pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
pci 0000:00:1c.3: bridge window [mem 0xf6000000-0xf7ffffff 64bit pref]
pci 0000:07:00.0: [14e4:1713] type 0 class 0x000200
pci 0000:07:00.0: reg 10: [mem 0xf5200000-0xf520ffff 64bit]
pci 0000:07:00.0: PME# supported from D3hot D3cold
pci 0000:07:00.0: PME# disabled
pci 0000:00:1c.5: PCI bridge to [bus 07-07]
pci 0000:00:1c.5: bridge window [mem 0xf5200000-0xf52fffff]
pci 0000:00:1e.0: PCI bridge to [bus 08-08] (subtractive decode)
pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
pci0000:00: Unable to request _OSC control (_OSC support mask: 0x09)
ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 1 *3 4 5 6 7 10 12 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 *7 10 12 14 15)
ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 *4 5 6 7 11 12 14 15)
vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
vgaarb: bridge control possible 0000:01:00.0
SCSI subsystem initialized
libata version 3.00 loaded.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
reserve RAM buffer: 000000000009f400 - 000000000009ffff
reserve RAM buffer: 000000007f8a1000 - 000000007fffffff
reserve RAM buffer: 000000007f9ba000 - 000000007fffffff
reserve RAM buffer: 000000007fb08000 - 000000007fffffff
reserve RAM buffer: 000000007fd19000 - 000000007fffffff
reserve RAM buffer: 000000007fd64000 - 000000007fffffff
Switching to clocksource hpet
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp 00:00: [bus 00-ff]
pnp 00:00: [io 0x0000-0x0cf7 window]
pnp 00:00: [io 0x0cf8-0x0cff]
pnp 00:00: [io 0x0d00-0xffff window]
pnp 00:00: [mem 0x000a0000-0x000bffff window]
pnp 00:00: [mem 0x000c0000-0x000c3fff window]
pnp 00:00: [mem 0x000c4000-0x000c7fff window]
pnp 00:00: [mem 0x000c8000-0x000cbfff window]
pnp 00:00: [mem 0x000cc000-0x000cffff window]
pnp 00:00: [mem 0x000d0000-0x000d3fff window]
pnp 00:00: [mem 0x000d4000-0x000d7fff window]
pnp 00:00: [mem 0x000d8000-0x000dbfff window]
pnp 00:00: [mem 0x000dc000-0x000dffff window]
pnp 00:00: [mem 0x000e0000-0x000e3fff window]
pnp 00:00: [mem 0x000e4000-0x000e7fff window]
pnp 00:00: [mem 0x000e8000-0x000ebfff window]
pnp 00:00: [mem 0x000ec000-0x000effff window]
pnp 00:00: [mem 0x000f0000-0x000fffff window]
pnp 00:00: [mem 0x80000000-0xdfffffff window]
pnp 00:00: [mem 0xf0000000-0xfebfffff window]
pnp 00:00: [mem 0xfed40000-0xfed44fff window]
pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
pnp 00:01: [io 0x0000-0x001f]
pnp 00:01: [io 0x0081-0x0091]
pnp 00:01: [io 0x0093-0x009f]
pnp 00:01: [io 0x00c0-0x00df]
pnp 00:01: [dma 4]
pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
pnp 00:02: [mem 0xff000000-0xffffffff]
pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
pnp 00:03: [mem 0xfed00000-0xfed003ff]
system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
system 00:03: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
pnp 00:04: [io 0x00f0]
pnp 00:04: [irq 13]
pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
pnp 00:05: [io 0x002e-0x002f]
pnp 00:05: [io 0x004e-0x004f]
pnp 00:05: [io 0x0061]
pnp 00:05: [io 0x0063]
pnp 00:05: [io 0x0065]
pnp 00:05: [io 0x0067]
pnp 00:05: [io 0x0068]
pnp 00:05: [io 0x006c]
pnp 00:05: [io 0x0070]
pnp 00:05: [io 0x0080]
pnp 00:05: [io 0x0092]
pnp 00:05: [io 0x00b2-0x00b3]
pnp 00:05: [io 0x0680-0x069f]
pnp 00:05: [io 0x0480-0x048f]
pnp 00:05: [io 0xffff]
pnp 00:05: [io 0xffff]
pnp 00:05: [io 0x0400-0x047f]
pnp 00:05: [io 0x1180-0x11ff]
pnp 00:05: [io 0x164e-0x164f]
pnp 00:05: [io 0xfe00]
system 00:05: [io 0x0680-0x069f] has been reserved
system 00:05: [io 0x0480-0x048f] has been reserved
system 00:05: [io 0xffff] has been reserved
system 00:05: [io 0xffff] has been reserved
system 00:05: [io 0x0400-0x047f] has been reserved
system 00:05: [io 0x1180-0x11ff] has been reserved
system 00:05: [io 0x164e-0x164f] has been reserved
system 00:05: [io 0xfe00] has been reserved
system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:06: [io 0x0070-0x0077]
pnp 00:06: [irq 8]
pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
pnp 00:07: [io 0x0060]
pnp 00:07: [io 0x0064]
pnp 00:07: [irq 1]
pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
pnp 00:08: [irq 12]
pnp 00:08: Plug and Play ACPI device, IDs PNP0f13 (active)
pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
pnp 00:09: [mem 0xfed10000-0xfed13fff]
pnp 00:09: [mem 0xfed18000-0xfed18fff]
pnp 00:09: [mem 0xfed19000-0xfed19fff]
pnp 00:09: [mem 0xe0000000-0xefffffff]
pnp 00:09: [mem 0xfed20000-0xfed3ffff]
pnp 00:09: [mem 0xfed45000-0xfed8ffff]
system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp: PnP ACPI: found 10 devices
ACPI: ACPI bus type pnp unregistered
PCI: max bus depth: 1 pci_try_num: 2
pci 0000:00:1f.3: BAR 0: assigned [mem 0x80000000-0x800000ff 64bit]
pci 0000:00:1f.3: BAR 0: set to [mem 0x80000000-0x800000ff 64bit] (PCI address [0x80000000-0x800000ff])
pci 0000:00:1c.5: BAR 9: assigned [mem 0x80100000-0x802fffff 64bit pref]
pci 0000:00:1c.5: BAR 7: assigned [io 0x4000-0x4fff]
pci 0000:00:1c.2: BAR 9: assigned [mem 0x80300000-0x804fffff 64bit pref]
pci 0000:00:1c.2: BAR 7: assigned [io 0x5000-0x5fff]
pci 0000:00:1c.1: BAR 8: assigned [mem 0x80500000-0x806fffff]
pci 0000:00:1c.1: BAR 9: assigned [mem 0x80700000-0x808fffff 64bit pref]
pci 0000:00:1c.1: BAR 7: assigned [io 0x6000-0x6fff]
pci 0000:00:1c.0: BAR 8: assigned [mem 0x80900000-0x80afffff]
pci 0000:00:1c.0: BAR 9: assigned [mem 0x80b00000-0x80cfffff 64bit pref]
pci 0000:00:1c.0: BAR 7: assigned [io 0x7000-0x7fff]
pci 0000:01:00.0: BAR 6: assigned [mem 0xf5080000-0xf50fffff pref]
pci 0000:00:01.0: PCI bridge to [bus 01-01]
pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
pci 0000:00:01.0: bridge window [mem 0xce000000-0xdfffffff 64bit pref]
pci 0000:00:1c.0: PCI bridge to [bus 02-02]
pci 0000:00:1c.0: bridge window [io 0x7000-0x7fff]
pci 0000:00:1c.0: bridge window [mem 0x80900000-0x80afffff]
pci 0000:00:1c.0: bridge window [mem 0x80b00000-0x80cfffff 64bit pref]
pci 0000:00:1c.1: PCI bridge to [bus 03-03]
pci 0000:00:1c.1: bridge window [io 0x6000-0x6fff]
pci 0000:00:1c.1: bridge window [mem 0x80500000-0x806fffff]
pci 0000:00:1c.1: bridge window [mem 0x80700000-0x808fffff 64bit pref]
pci 0000:00:1c.2: PCI bridge to [bus 04-04]
pci 0000:00:1c.2: bridge window [io 0x5000-0x5fff]
pci 0000:00:1c.2: bridge window [mem 0xf5100000-0xf51fffff]
pci 0000:00:1c.2: bridge window [mem 0x80300000-0x804fffff 64bit pref]
pci 0000:00:1c.3: PCI bridge to [bus 05-06]
pci 0000:00:1c.3: bridge window [io 0x3000-0x3fff]
pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
pci 0000:00:1c.3: bridge window [mem 0xf6000000-0xf7ffffff 64bit pref]
pci 0000:00:1c.5: PCI bridge to [bus 07-07]
pci 0000:00:1c.5: bridge window [io 0x4000-0x4fff]
pci 0000:00:1c.5: bridge window [mem 0xf5200000-0xf52fffff]
pci 0000:00:1c.5: bridge window [mem 0x80100000-0x802fffff 64bit pref]
pci 0000:00:1e.0: PCI bridge to [bus 08-08]
pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:01.0: setting latency timer to 64
pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
pci 0000:00:1c.0: setting latency timer to 64
pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:1c.1: setting latency timer to 64
pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:1c.2: setting latency timer to 64
pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
pci 0000:00:1c.3: setting latency timer to 64
pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:1c.5: setting latency timer to 64
pci 0000:00:1e.0: setting latency timer to 64
pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
pci_bus 0000:00: resource 9 [mem 0x80000000-0xdfffffff]
pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfebfffff]
pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
pci_bus 0000:01: resource 1 [mem 0xf4000000-0xf50fffff]
pci_bus 0000:01: resource 2 [mem 0xce000000-0xdfffffff 64bit pref]
pci_bus 0000:02: resource 0 [io 0x7000-0x7fff]
pci_bus 0000:02: resource 1 [mem 0x80900000-0x80afffff]
pci_bus 0000:02: resource 2 [mem 0x80b00000-0x80cfffff 64bit pref]
pci_bus 0000:03: resource 0 [io 0x6000-0x6fff]
pci_bus 0000:03: resource 1 [mem 0x80500000-0x806fffff]
pci_bus 0000:03: resource 2 [mem 0x80700000-0x808fffff 64bit pref]
pci_bus 0000:04: resource 0 [io 0x5000-0x5fff]
pci_bus 0000:04: resource 1 [mem 0xf5100000-0xf51fffff]
pci_bus 0000:04: resource 2 [mem 0x80300000-0x804fffff 64bit pref]
pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf3ffffff]
pci_bus 0000:05: resource 2 [mem 0xf6000000-0xf7ffffff 64bit pref]
pci_bus 0000:07: resource 0 [io 0x4000-0x4fff]
pci_bus 0000:07: resource 1 [mem 0xf5200000-0xf52fffff]
pci_bus 0000:07: resource 2 [mem 0x80100000-0x802fffff 64bit pref]
pci_bus 0000:08: resource 4 [io 0x0000-0x0cf7]
pci_bus 0000:08: resource 5 [io 0x0d00-0xffff]
pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:08: resource 7 [mem 0x000d4000-0x000d7fff]
pci_bus 0000:08: resource 8 [mem 0x000d8000-0x000dbfff]
pci_bus 0000:08: resource 9 [mem 0x80000000-0xdfffffff]
pci_bus 0000:08: resource 10 [mem 0xf0000000-0xfebfffff]
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
UDP hash table entries: 512 (order: 2, 16384 bytes)
UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
pci 0000:01:00.0: Boot video device
PCI: CLS 64 bytes, default 64
Simple Boot Flag at 0x36 set to 0x1
highmem bounce pool size: 64 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
squashfs: version 4.0 (2009/01/31) Phillip Lougher
NTFS driver 2.1.30 [Flags: R/O].
fuse init (API version 7.17)
SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
SGI XFS Quota Management subsystem
msgmni has been set to 1729
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
io scheduler noop registered
io scheduler deadline registered (default)
pcieport 0000:00:01.0: setting latency timer to 64
pcieport 0000:00:1c.0: setting latency timer to 64
pcieport 0000:00:1c.1: setting latency timer to 64
pcieport 0000:00:1c.2: setting latency timer to 64
pcieport 0000:00:1c.3: setting latency timer to 64
pcieport 0000:00:1c.5: setting latency timer to 64
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Linux agpgart interface v0.103
ACPI: AC Adapter [ACAD] (on-line)
input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
ACPI: Lid Switch [LID0]
input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
ACPI: Power Button [PWRB]
input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
ACPI: Sleep Button [SLPB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
ACPI: Power Button [PWRF]
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Marking TSC unstable due to TSC halts in idle
ACPI: acpi_idle registered with cpuidle
ACPI: Invalid active0 threshold
thermal LNXTHERM:00: registered as thermal_zone0
ACPI: Thermal Zone [TZ00] (56 C)
ioatdma: Intel(R) QuickData Technology Driver 4.00
brd: module loaded
loop: module loaded
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
SCSI Media Changer driver v0.25
ahci 0000:00:1f.2: version 3.0
ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
ahci: SSS flag set, parallel bus scan disabled
ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x13 impl SATA mode
ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems sxs
ahci 0000:00:1f.2: setting latency timer to 64
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
ata1: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505100 irq 19
ata2: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505180 irq 19
ata3: DUMMY
ata4: DUMMY
ata5: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505300 irq 19
cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.7 (July 20, 2011)
tg3.c:v3.121 (November 2, 2011)
tg3 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
tg3 0000:07:00.0: setting latency timer to 64
tg3 0000:07:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:26:22:df:46:3f
tg3 0000:07:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0])
tg3 0000:07:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[0]
tg3 0000:07:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
aoe: AoE v47 initialised.
i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mousedev: PS/2 mouse device common for all mice
cpuidle: using governor ladder
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
TCP cubic registered
NET: Registered protocol family 17
Registering the dns_resolver key type
Using IPI No-Shortcut mode
registered taskstats version 1
ACPI: Battery Slot [BAT1] (battery present)
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata1.00: ATA-8: WDC WD3200BEVT-22ZCT0, 11.01A11, max UDMA/133
ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access ATA WDC WD3200BEVT-2 11.0 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 >
sd 0:0:0:0: [sda] Attached SCSI disk
ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T50N, RV08, max UDMA/133
ata2.00: configured for UDMA/133
scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T50N RV08 PQ: 0 ANSI: 5
sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
cdrom: Uniform CD-ROM driver Revision: 3.20
sr 1:0:0:0: Attached scsi CD-ROM sr0
sr 1:0:0:0: Attached scsi generic sg1 type 5
ata5: SATA link down (SStatus 0 SControl 300)
input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input5
input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input6
md: Waiting for all devices to be available before autodetect
md: If you don't use raid, use raid=noautodetect
md: Autodetecting RAID arrays.
md: Scanned 0 and added 0 devices.
md: autorun ...
md: ... autorun DONE.
EXT3-fs (sda10): error: couldn't mount because of unsupported optional features (240)
EXT2-fs (sda10): error: couldn't mount because of unsupported optional features (240)
EXT4-fs (sda10): mounted filesystem with ordered data mode. Opts: (null)
VFS: Mounted root (ext4 filesystem) readonly on device 8:10.
devtmpfs: mounted
Freeing unused kernel memory: 400k freed
Write protecting the kernel text: 3772k
Write protecting the kernel read-only data: 1444k
udevd[837]: starting version 171
cfg80211: Calling CRDA to update world regulatory domain
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 20 (level, low) -> IRQ 20
ehci_hcd 0000:00:1a.7: setting latency timer to 64
ehci_hcd 0000:00:1a.7: EHCI Host Controller
ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:1a.7: debug port 1
ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
ehci_hcd 0000:00:1a.7: irq 20, io mem 0xf5505800
ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: EHCI Host Controller
usb usb1: Manufacturer: Linux 3.2.1-gentoo-r2 ehci_hcd
usb usb1: SerialNumber: 0000:00:1a.7
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
ehci_hcd 0000:00:1d.7: setting latency timer to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
ehci_hcd 0000:00:1d.7: debug port 1
ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf5505c00
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: EHCI Host Controller
usb usb2: Manufacturer: Linux 3.2.1-gentoo-r2 ehci_hcd
usb usb2: SerialNumber: 0000:00:1d.7
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
snd_hda_intel 0000:00:1b.0: power state changed by ACPI to D0
snd_hda_intel 0000:00:1b.0: power state changed by ACPI to D0
snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
snd_hda_intel 0000:00:1b.0: setting latency timer to 64
uhci_hcd: USB Universal Host Controller Interface driver
Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
Copyright(c) 2003-2011 Intel Corporation
iwlwifi 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
iwlwifi 0000:04:00.0: setting latency timer to 64
iwlwifi 0000:04:00.0: pci_resource_len = 0x00002000
iwlwifi 0000:04:00.0: pci_resource_base = f837c000
iwlwifi 0000:04:00.0: HW Revision ID = 0x0
iwlwifi 0000:04:00.0: pci_enable_msi failed(0Xffffffff)
iwlwifi 0000:04:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: device EEPROM VER=0x11f, CALIB=0x4
iwlwifi 0000:04:00.0: Device SKU: 0Xf0
iwlwifi 0000:04:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-5.ucode' failed.
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-4.ucode' failed.
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-3.ucode' failed.
iwlwifi 0000:04:00.0: Firmware has old API version, expected v5, got v2.
iwlwifi 0000:04:00.0: New firmware can be obtained from http://www.intellinuxwireless.org/.
iwlwifi 0000:04:00.0: loaded firmware version 8.24.2.12
Registered led device: phy0-led
ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
usb 2-3: new high-speed USB device number 2 using ehci_hcd
Disabling lock debugging due to kernel taint
nvidia: module license 'NVIDIA' taints kernel.
snd_hda_intel 0000:01:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
hda_intel: Disabling MSI
snd_hda_intel 0000:01:00.1: setting latency timer to 64
uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
uhci_hcd 0000:00:1a.0: setting latency timer to 64
uhci_hcd 0000:00:1a.0: UHCI Host Controller
uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001800
usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb3: Product: UHCI Host Controller
usb usb3: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb3: SerialNumber: 0000:00:1a.0
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
uhci_hcd 0000:00:1a.1: setting latency timer to 64
uhci_hcd 0000:00:1a.1: UHCI Host Controller
uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001820
usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb4: Product: UHCI Host Controller
usb usb4: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb4: SerialNumber: 0000:00:1a.1
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1a.2: setting latency timer to 64
uhci_hcd 0000:00:1a.2: UHCI Host Controller
uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
uhci_hcd 0000:00:1a.2: irq 20, io base 0x00001840
usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb5: Product: UHCI Host Controller
usb usb5: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb5: SerialNumber: 0000:00:1a.2
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
uhci_hcd 0000:00:1d.0: setting latency timer to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb6: Product: UHCI Host Controller
usb usb6: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb6: SerialNumber: 0000:00:1d.0
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
uhci_hcd 0000:00:1d.1: setting latency timer to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb7: Product: UHCI Host Controller
usb usb7: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb7: SerialNumber: 0000:00:1d.1
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
uhci_hcd 0000:00:1d.2: setting latency timer to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb8: Product: UHCI Host Controller
usb usb8: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb8: SerialNumber: 0000:00:1d.2
hub 8-0:1.0: USB hub found
hub 8-0:1.0: 2 ports detected
usb 2-3: New USB device found, idVendor=090c, idProduct=3714
usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 2-3: Product: Lenovo EasyCamera
usb 2-3: Manufacturer: Image Processor
usb 8-1: new low-speed USB device number 2 using uhci_hcd
usb 8-1: New USB device found, idVendor=0461, idProduct=4d80
usb 8-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
usb 8-1: Product: USB Optical Mouse
input: USB Optical Mouse as /devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.0/input/input7
generic-usb 0003:0461:4D80.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:1d.2-1/input0
HDMI status: Codec=0 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=1 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=2 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
nvidia 0000:01:00.0: power state changed by ACPI to D0
nvidia 0000:01:00.0: power state changed by ACPI to D0
nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
nvidia 0000:01:00.0: setting latency timer to 64
vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
NVRM: loading NVIDIA UNIX x86 Kernel Module 290.10 Wed Nov 16 19:27:25 PST 2011
Real Time Clock Driver v1.12b
vboxdrv: Found 2 processor cores.
vboxdrv: fAsync=0 offMin=0x1c3 offMax=0x1ecf
vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
vboxdrv: Successfully loaded version 4.1.8 (interface 0x00190000).
EXT4-fs (sda10): re-mounted. Opts: (null)
EXT4-fs (sda14): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda11): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda12): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda13): mounted filesystem with ordered data mode. Opts: (null)
Adding 2096124k swap on /dev/sda9. Priority:-1 extents:1 across:2096124k
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: Radio type=0x1-0x2-0x0
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: Radio type=0x1-0x2-0x0
tg3 0000:07:00.0: eth0: Link is up at 100 Mbps, full duplex
tg3 0000:07:00.0: eth0: Flow control is on for TX and on for RX
ata1.00: configured for UDMA/133
ata1: EH complete
EXT4-fs (sda10): re-mounted. Opts: commit=0
EXT4-fs (sda14): re-mounted. Opts: commit=0
EXT4-fs (sda11): re-mounted. Opts: commit=0
EXT4-fs (sda12): re-mounted. Opts: commit=0
EXT4-fs (sda13): re-mounted. Opts: commit=0
device eth0 entered promiscuous mode
NET: Registered protocol family 10
ADDRCONF(NETDEV_UP): wlan0: link is not ready
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-04 5:01 ` 张春江
@ 2012-04-04 7:03 ` Canek Peláez Valdés
2012-04-04 7:32 ` 张春江
0 siblings, 1 reply; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-04 7:03 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1626 bytes --]
El 04/04/2012 00:03, "张春江" <zhangchunjiangrj@126.com> escribió:
>
> On 2012-04-04 12:06:26,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
> >Please add rd.debug to your grub kernel command line:
> >
> >title Gentoo Linux
> >root (hd0,13)
> >kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10
> >video=radeon:1366x768 quiet splash rd.debug
> >initrd /boot/initramfs-3.2.1-gentoo-r2.img
> >
> >Reboot, and immediately do
> >
> >dmesg > output.txt
> >
> >Please post the contents of output.txt. We need to know what exactly
> >is failing with the initramfs.javascript:void(0)
>
> The accessories are my dmesg output and my boot log.
>
> Now it is very strange that I have a /run tmpfs in my machine.
> # mount | grep run
> tmpfs on /run type tmpfs (rw,nosuid,nodev,relatime,mode=755)
>
> # grep run /etc/mtab
> tmpfs /run tmpfs rw,nosuid,nodev,relatime,mode=755 0 0
>
> And now when I shutdown my machine, there is no plymouth error message
> while no splash either. While booting, it shows
> "plymouthd could not start boot splash: No such file or directory" and no
splash.
>
> I don't konw why, I just generated initramfs with dracut once again and
run
> # plymouth --show-splash
> just now.
Sorry, I forgot; you also need to remove the "quiet" option from your
kernel command line:
title Gentoo Linux
root (hd0,13)
kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10
video=radeon:1366x768 splash rd.debug
initrd /boot/initramfs-3.2.1-gentoo-r2.img
The quiet option overrides the rd.debug option. Please reboot and send
again the output from dmesg.
Regards.
[-- Attachment #2: Type: text/html, Size: 2131 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-04 7:03 ` Canek Peláez Valdés
@ 2012-04-04 7:32 ` 张春江
2012-04-04 17:28 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: 张春江 @ 2012-04-04 7:32 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 497 bytes --]
On 2012-04-04 15:03:56,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
> Sorry, I forgot; you also need to remove the "quiet" option from your kernel command line:>
> title Gentoo Linux
> root (hd0,13)
> kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 video=radeon:1366x768 splash rd.debug
> initrd /boot/initramfs-3.2.1-gentoo-r2.img
> The quiet option overrides the rd.debug option. Please reboot and send again the output from dmesg.
Here is the new dmesg output.
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain, Size: 41306 bytes --]
Linux version 3.2.1-gentoo-r2 (root@zcj) (gcc version 4.5.3 (Gentoo 4.5.3-r2 p1.1, pie-0.4.7) ) #19 SMP Mon Apr 2 13:04:49 CST 2012
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000007f8a1000 (usable)
BIOS-e820: 000000007f8a1000 - 000000007f8a7000 (reserved)
BIOS-e820: 000000007f8a7000 - 000000007f9ba000 (usable)
BIOS-e820: 000000007f9ba000 - 000000007fa0f000 (reserved)
BIOS-e820: 000000007fa0f000 - 000000007fb08000 (usable)
BIOS-e820: 000000007fb08000 - 000000007fd0f000 (reserved)
BIOS-e820: 000000007fd0f000 - 000000007fd19000 (usable)
BIOS-e820: 000000007fd19000 - 000000007fd1f000 (reserved)
BIOS-e820: 000000007fd1f000 - 000000007fd64000 (usable)
BIOS-e820: 000000007fd64000 - 000000007fd9f000 (ACPI NVS)
BIOS-e820: 000000007fd9f000 - 000000007fe00000 (ACPI data)
BIOS-e820: 000000007fe00000 - 0000000080000000 (reserved)
BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved)
BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved)
BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
DMI present.
DMI: LENOVO 20022 /NITU1, BIOS 18CN37WW(V2.10) 09/18/2009
e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
last_pfn = 0x7fd64 max_arch_pfn = 0x100000
MTRR default type: uncachable
MTRR fixed ranges enabled:
00000-9FFFF write-back
A0000-BFFFF uncachable
C0000-D3FFF write-protect
D4000-DFFFF uncachable
E0000-FFFFF write-protect
MTRR variable ranges enabled:
0 base 000000000 mask F80000000 write-back
1 base 0FFE00000 mask FFFE00000 write-protect
2 disabled
3 disabled
4 disabled
5 disabled
6 disabled
found SMP MP-table at [c00f75a0] f75a0
initial memory mapped : 0 - 01c00000
Base memory trampoline at [c009e000] 9e000 size 4096
init_memory_mapping: 0000000000000000-00000000377fe000
0000000000 - 0000400000 page 4k
0000400000 - 0037400000 page 2M
0037400000 - 00377fe000 page 4k
kernel direct mapping tables up to 377fe000 @ 1bfb000-1c00000
ACPI: RSDP 000f7510 00024 (v02 LENOVO)
ACPI: XSDT 7fdf848f 00074 (v01 LENOVO CB-01 00000000 LTP 00000000)
ACPI: FACP 7fde8000 000F4 (v03 LENOVO CB-01 00000001 ALAN 00000001)
ACPI: DSDT 7fde9000 066BF (v02 LENOVO CB-01 00000001 INTL 20050624)
ACPI: FACS 7fd9efc0 00040
ACPI: HPET 7fdfed52 00038 (v01 LENOVO CB-01 00000001 LOHR 0000005A)
ACPI: MCFG 7fdfed8a 0003C (v01 LENOVO CB-01 00000001 LOHR 0000005A)
ACPI: SLIX 7fdfedc6 00176 (v01 LENOVO CB-01 00000001 TBD 00000001)
ACPI: DBGP 7fdfef3c 00034 (v01 LENOVO CB-01 00000001 LOHR 00000000)
ACPI: APIC 7fdfef70 00068 (v01 PTLTD ? APIC 00000000 LTP 00000000)
ACPI: BOOT 7fdfefd8 00028 (v01 PTLTD $SBFTBL$ 00000000 LTP 00000001)
ACPI: SSDT 7fde7000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
ACPI: SSDT 7fde6000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
ACPI: SSDT 7fde5000 0020F (v01 PmRef ApTst 00003000 INTL 20050624)
ACPI: Local APIC address 0xfee00000
1157MB HIGHMEM available.
887MB LOWMEM available.
mapped low ram: 0 - 377fe000
low ram: 0 - 377fe000
Zone PFN ranges:
DMA 0x00000010 -> 0x00001000
Normal 0x00001000 -> 0x000377fe
HighMem 0x000377fe -> 0x0007fd64
Movable zone start PFN for each node
early_node_map[6] active PFN ranges
0: 0x00000010 -> 0x0000009f
0: 0x00000100 -> 0x0007f8a1
0: 0x0007f8a7 -> 0x0007f9ba
0: 0x0007fa0f -> 0x0007fb08
0: 0x0007fd0f -> 0x0007fd19
0: 0x0007fd1f -> 0x0007fd64
On node 0 totalpages: 522891
DMA zone: 32 pages used for memmap
DMA zone: 0 pages reserved
DMA zone: 3951 pages, LIFO batch:0
Normal zone: 1744 pages used for memmap
Normal zone: 221486 pages, LIFO batch:31
HighMem zone: 2315 pages used for memmap
HighMem zone: 293363 pages, LIFO batch:31
Using APIC driver default
ACPI: PM-Timer IO Port: 0x408
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
SMP: Allowing 2 CPUs, 0 hotplug CPUs
nr_irqs_gsi: 40
Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
Booting paravirtualized kernel on bare hardware
setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
PERCPU: Embedded 12 pages/cpu @f6000000 s25536 r0 d23616 u2097152
pcpu-alloc: s25536 r0 d23616 u2097152 alloc=1*4194304
pcpu-alloc: [0] 0 1
Built 1 zonelists in Zone order, mobility grouping on. Total pages: 518800
Kernel command line: root=/dev/sda10 splash video=radeon:1366x768 rd.debug
PID hash table entries: 4096 (order: 2, 16384 bytes)
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Initializing CPU#0
xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
Initializing HighMem for node 0 (000377fe:0007fd64)
Memory: 2068152k/2094480k available (3768k kernel code, 23412k reserved, 1639k data, 400k init, 1182712k highmem)
virtual kernel memory layout:
fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
pkmap : 0xff800000 - 0xffc00000 (4096 kB)
vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
.init : 0xc1548000 - 0xc15ac000 ( 400 kB)
.data : 0xc13ae39d - 0xc1548000 (1639 kB)
.text : 0xc1000000 - 0xc13ae39d (3768 kB)
Checking if this processor honours the WP bit even in supervisor mode...Ok.
Hierarchical RCU implementation.
NR_IRQS:2304 nr_irqs:512 16
CPU 0 irqstacks, hard=f5c06000 soft=f5c08000
Extended CMOS year: 2000
Console: colour VGA+ 80x25
console [tty0] enabled
hpet clockevent registered
Fast TSC calibration using PIT
Detected 2194.376 MHz processor.
Calibrating delay loop (skipped), value calculated using timer frequency.. 4388.75 BogoMIPS (lpj=21943760)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 512
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
mce: CPU supports 6 MCE banks
CPU0: Thermal monitoring enabled (TM2)
using mwait in idle threads.
ACPI: Core revision 20110623
Enabling APIC mode: Flat. Using 1 I/O APICs
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: Intel(R) Core(TM)2 Duo CPU T6600 @ 2.20GHz stepping 0a
Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
... version: 2
... bit width: 40
... generic registers: 2
... value mask: 000000ffffffffff
... max period: 000000007fffffff
... fixed-purpose events: 3
... event mask: 0000000700000003
CPU 1 irqstacks, hard=f5c8e000 soft=f5c90000
Booting Node 0, Processors #1 Ok.
smpboot cpu 1: start_ip = 9e000
Initializing CPU#1
Brought up 2 CPUs
Total of 2 processors activated (8777.73 BogoMIPS).
devtmpfs: initialized
NET: Registered protocol family 16
ACPI: bus type pci registered
dca service started, version 1.12.1
PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
PCI: Using MMCONFIG for extended config space
PCI: Using configuration type 1 for base access
bio: create slab <bio-0> at 0
ACPI: Added _OSI(Module Device)
ACPI: Added _OSI(Processor Device)
ACPI: Added _OSI(3.0 _SCP Extensions)
ACPI: Added _OSI(Processor Aggregator Device)
ACPI: EC: Look up EC in DSDT
[Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
ACPI: SSDT 7fd1aca0 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 00223 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
ACPI: SSDT 7fd19620 00549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 00549 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
ACPI: SSDT 7fd1aa20 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
ACPI: SSDT 7fd1af20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT (null) 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
ACPI: Interpreter enabled
ACPI: (supports S0 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
ACPI: No dock devices found.
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xdfffffff]
pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff]
pci 0000:00:00.0: [8086:2a40] type 0 class 0x000600
pci 0000:00:01.0: [8086:2a41] type 1 class 0x000604
pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
pci 0000:00:01.0: PME# disabled
pci 0000:00:1a.0: [8086:2937] type 0 class 0x000c03
pci 0000:00:1a.0: reg 20: [io 0x1800-0x181f]
pci 0000:00:1a.1: [8086:2938] type 0 class 0x000c03
pci 0000:00:1a.1: reg 20: [io 0x1820-0x183f]
pci 0000:00:1a.2: [8086:2939] type 0 class 0x000c03
pci 0000:00:1a.2: reg 20: [io 0x1840-0x185f]
pci 0000:00:1a.7: [8086:293c] type 0 class 0x000c03
pci 0000:00:1a.7: reg 10: [mem 0xf5505800-0xf5505bff]
pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
pci 0000:00:1a.7: PME# disabled
pci 0000:00:1b.0: [8086:293e] type 0 class 0x000403
pci 0000:00:1b.0: reg 10: [mem 0xf5500000-0xf5503fff 64bit]
pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1b.0: PME# disabled
pci 0000:00:1c.0: [8086:2940] type 1 class 0x000604
pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.0: PME# disabled
pci 0000:00:1c.1: [8086:2942] type 1 class 0x000604
pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.1: PME# disabled
pci 0000:00:1c.2: [8086:2944] type 1 class 0x000604
pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.2: PME# disabled
pci 0000:00:1c.3: [8086:2946] type 1 class 0x000604
pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.3: PME# disabled
pci 0000:00:1c.5: [8086:294a] type 1 class 0x000604
pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
pci 0000:00:1c.5: PME# disabled
pci 0000:00:1d.0: [8086:2934] type 0 class 0x000c03
pci 0000:00:1d.0: reg 20: [io 0x1860-0x187f]
pci 0000:00:1d.1: [8086:2935] type 0 class 0x000c03
pci 0000:00:1d.1: reg 20: [io 0x1880-0x189f]
pci 0000:00:1d.2: [8086:2936] type 0 class 0x000c03
pci 0000:00:1d.2: reg 20: [io 0x18a0-0x18bf]
pci 0000:00:1d.7: [8086:293a] type 0 class 0x000c03
pci 0000:00:1d.7: reg 10: [mem 0xf5505c00-0xf5505fff]
pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
pci 0000:00:1d.7: PME# disabled
pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
pci 0000:00:1f.0: [8086:2919] type 0 class 0x000601
pci 0000:00:1f.2: [8086:2929] type 0 class 0x000106
pci 0000:00:1f.2: reg 10: [io 0x18f0-0x18f7]
pci 0000:00:1f.2: reg 14: [io 0x18e4-0x18e7]
pci 0000:00:1f.2: reg 18: [io 0x18e8-0x18ef]
pci 0000:00:1f.2: reg 1c: [io 0x18e0-0x18e3]
pci 0000:00:1f.2: reg 20: [io 0x18c0-0x18df]
pci 0000:00:1f.2: reg 24: [mem 0xf5505000-0xf55057ff]
pci 0000:00:1f.2: PME# supported from D3hot
pci 0000:00:1f.2: PME# disabled
pci 0000:00:1f.3: [8086:2930] type 0 class 0x000c05
pci 0000:00:1f.3: reg 10: [mem 0x00000000-0x000000ff 64bit]
pci 0000:00:1f.3: reg 20: [io 0x1c00-0x1c1f]
pci 0000:00:1f.6: [8086:2932] type 0 class 0x001180
pci 0000:00:1f.6: reg 10: [mem 0xf5504000-0xf5504fff 64bit]
pci 0000:01:00.0: [10de:0a74] type 0 class 0x000300
pci 0000:01:00.0: reg 10: [mem 0xf4000000-0xf4ffffff]
pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
pci 0000:01:00.0: reg 1c: [mem 0xce000000-0xcfffffff 64bit pref]
pci 0000:01:00.0: reg 24: [io 0x2000-0x207f]
pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
pci 0000:01:00.1: [10de:0be3] type 0 class 0x000403
pci 0000:01:00.1: reg 10: [mem 0xf5000000-0xf5003fff]
pci 0000:00:01.0: PCI bridge to [bus 01-01]
pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
pci 0000:00:01.0: bridge window [mem 0xce000000-0xdfffffff 64bit pref]
pci 0000:00:1c.0: PCI bridge to [bus 02-02]
pci 0000:00:1c.1: PCI bridge to [bus 03-03]
pci 0000:04:00.0: [8086:4237] type 0 class 0x000280
pci 0000:04:00.0: reg 10: [mem 0xf5100000-0xf5101fff 64bit]
pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
pci 0000:04:00.0: PME# disabled
pci 0000:00:1c.2: PCI bridge to [bus 04-04]
pci 0000:00:1c.2: bridge window [mem 0xf5100000-0xf51fffff]
pci 0000:00:1c.3: PCI bridge to [bus 05-06]
pci 0000:00:1c.3: bridge window [io 0x3000-0x3fff]
pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
pci 0000:00:1c.3: bridge window [mem 0xf6000000-0xf7ffffff 64bit pref]
pci 0000:07:00.0: [14e4:1713] type 0 class 0x000200
pci 0000:07:00.0: reg 10: [mem 0xf5200000-0xf520ffff 64bit]
pci 0000:07:00.0: PME# supported from D3hot D3cold
pci 0000:07:00.0: PME# disabled
pci 0000:00:1c.5: PCI bridge to [bus 07-07]
pci 0000:00:1c.5: bridge window [mem 0xf5200000-0xf52fffff]
pci 0000:00:1e.0: PCI bridge to [bus 08-08] (subtractive decode)
pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0x80000000-0xdfffffff] (subtractive decode)
pci 0000:00:1e.0: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
pci0000:00: Unable to request _OSC control (_OSC support mask: 0x09)
ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 1 *3 4 5 6 7 10 12 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 *7 10 12 14 15)
ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 *10 12 14 15)
ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 *4 5 6 7 11 12 14 15)
vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
vgaarb: bridge control possible 0000:01:00.0
SCSI subsystem initialized
libata version 3.00 loaded.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
reserve RAM buffer: 000000000009f400 - 000000000009ffff
reserve RAM buffer: 000000007f8a1000 - 000000007fffffff
reserve RAM buffer: 000000007f9ba000 - 000000007fffffff
reserve RAM buffer: 000000007fb08000 - 000000007fffffff
reserve RAM buffer: 000000007fd19000 - 000000007fffffff
reserve RAM buffer: 000000007fd64000 - 000000007fffffff
Switching to clocksource hpet
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp 00:00: [bus 00-ff]
pnp 00:00: [io 0x0000-0x0cf7 window]
pnp 00:00: [io 0x0cf8-0x0cff]
pnp 00:00: [io 0x0d00-0xffff window]
pnp 00:00: [mem 0x000a0000-0x000bffff window]
pnp 00:00: [mem 0x000c0000-0x000c3fff window]
pnp 00:00: [mem 0x000c4000-0x000c7fff window]
pnp 00:00: [mem 0x000c8000-0x000cbfff window]
pnp 00:00: [mem 0x000cc000-0x000cffff window]
pnp 00:00: [mem 0x000d0000-0x000d3fff window]
pnp 00:00: [mem 0x000d4000-0x000d7fff window]
pnp 00:00: [mem 0x000d8000-0x000dbfff window]
pnp 00:00: [mem 0x000dc000-0x000dffff window]
pnp 00:00: [mem 0x000e0000-0x000e3fff window]
pnp 00:00: [mem 0x000e4000-0x000e7fff window]
pnp 00:00: [mem 0x000e8000-0x000ebfff window]
pnp 00:00: [mem 0x000ec000-0x000effff window]
pnp 00:00: [mem 0x000f0000-0x000fffff window]
pnp 00:00: [mem 0x80000000-0xdfffffff window]
pnp 00:00: [mem 0xf0000000-0xfebfffff window]
pnp 00:00: [mem 0xfed40000-0xfed44fff window]
pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
pnp 00:01: [io 0x0000-0x001f]
pnp 00:01: [io 0x0081-0x0091]
pnp 00:01: [io 0x0093-0x009f]
pnp 00:01: [io 0x00c0-0x00df]
pnp 00:01: [dma 4]
pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
pnp 00:02: [mem 0xff000000-0xffffffff]
pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
pnp 00:03: [mem 0xfed00000-0xfed003ff]
system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
system 00:03: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
pnp 00:04: [io 0x00f0]
pnp 00:04: [irq 13]
pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
pnp 00:05: [io 0x002e-0x002f]
pnp 00:05: [io 0x004e-0x004f]
pnp 00:05: [io 0x0061]
pnp 00:05: [io 0x0063]
pnp 00:05: [io 0x0065]
pnp 00:05: [io 0x0067]
pnp 00:05: [io 0x0068]
pnp 00:05: [io 0x006c]
pnp 00:05: [io 0x0070]
pnp 00:05: [io 0x0080]
pnp 00:05: [io 0x0092]
pnp 00:05: [io 0x00b2-0x00b3]
pnp 00:05: [io 0x0680-0x069f]
pnp 00:05: [io 0x0480-0x048f]
pnp 00:05: [io 0xffff]
pnp 00:05: [io 0xffff]
pnp 00:05: [io 0x0400-0x047f]
pnp 00:05: [io 0x1180-0x11ff]
pnp 00:05: [io 0x164e-0x164f]
pnp 00:05: [io 0xfe00]
system 00:05: [io 0x0680-0x069f] has been reserved
system 00:05: [io 0x0480-0x048f] has been reserved
system 00:05: [io 0xffff] has been reserved
system 00:05: [io 0xffff] has been reserved
system 00:05: [io 0x0400-0x047f] has been reserved
system 00:05: [io 0x1180-0x11ff] has been reserved
system 00:05: [io 0x164e-0x164f] has been reserved
system 00:05: [io 0xfe00] has been reserved
system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:06: [io 0x0070-0x0077]
pnp 00:06: [irq 8]
pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
pnp 00:07: [io 0x0060]
pnp 00:07: [io 0x0064]
pnp 00:07: [irq 1]
pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
pnp 00:08: [irq 12]
pnp 00:08: Plug and Play ACPI device, IDs PNP0f13 (active)
pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
pnp 00:09: [mem 0xfed10000-0xfed13fff]
pnp 00:09: [mem 0xfed18000-0xfed18fff]
pnp 00:09: [mem 0xfed19000-0xfed19fff]
pnp 00:09: [mem 0xe0000000-0xefffffff]
pnp 00:09: [mem 0xfed20000-0xfed3ffff]
pnp 00:09: [mem 0xfed45000-0xfed8ffff]
system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp: PnP ACPI: found 10 devices
ACPI: ACPI bus type pnp unregistered
PCI: max bus depth: 1 pci_try_num: 2
pci 0000:00:1f.3: BAR 0: assigned [mem 0x80000000-0x800000ff 64bit]
pci 0000:00:1f.3: BAR 0: set to [mem 0x80000000-0x800000ff 64bit] (PCI address [0x80000000-0x800000ff])
pci 0000:00:1c.5: BAR 9: assigned [mem 0x80100000-0x802fffff 64bit pref]
pci 0000:00:1c.5: BAR 7: assigned [io 0x4000-0x4fff]
pci 0000:00:1c.2: BAR 9: assigned [mem 0x80300000-0x804fffff 64bit pref]
pci 0000:00:1c.2: BAR 7: assigned [io 0x5000-0x5fff]
pci 0000:00:1c.1: BAR 8: assigned [mem 0x80500000-0x806fffff]
pci 0000:00:1c.1: BAR 9: assigned [mem 0x80700000-0x808fffff 64bit pref]
pci 0000:00:1c.1: BAR 7: assigned [io 0x6000-0x6fff]
pci 0000:00:1c.0: BAR 8: assigned [mem 0x80900000-0x80afffff]
pci 0000:00:1c.0: BAR 9: assigned [mem 0x80b00000-0x80cfffff 64bit pref]
pci 0000:00:1c.0: BAR 7: assigned [io 0x7000-0x7fff]
pci 0000:01:00.0: BAR 6: assigned [mem 0xf5080000-0xf50fffff pref]
pci 0000:00:01.0: PCI bridge to [bus 01-01]
pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
pci 0000:00:01.0: bridge window [mem 0xf4000000-0xf50fffff]
pci 0000:00:01.0: bridge window [mem 0xce000000-0xdfffffff 64bit pref]
pci 0000:00:1c.0: PCI bridge to [bus 02-02]
pci 0000:00:1c.0: bridge window [io 0x7000-0x7fff]
pci 0000:00:1c.0: bridge window [mem 0x80900000-0x80afffff]
pci 0000:00:1c.0: bridge window [mem 0x80b00000-0x80cfffff 64bit pref]
pci 0000:00:1c.1: PCI bridge to [bus 03-03]
pci 0000:00:1c.1: bridge window [io 0x6000-0x6fff]
pci 0000:00:1c.1: bridge window [mem 0x80500000-0x806fffff]
pci 0000:00:1c.1: bridge window [mem 0x80700000-0x808fffff 64bit pref]
pci 0000:00:1c.2: PCI bridge to [bus 04-04]
pci 0000:00:1c.2: bridge window [io 0x5000-0x5fff]
pci 0000:00:1c.2: bridge window [mem 0xf5100000-0xf51fffff]
pci 0000:00:1c.2: bridge window [mem 0x80300000-0x804fffff 64bit pref]
pci 0000:00:1c.3: PCI bridge to [bus 05-06]
pci 0000:00:1c.3: bridge window [io 0x3000-0x3fff]
pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf3ffffff]
pci 0000:00:1c.3: bridge window [mem 0xf6000000-0xf7ffffff 64bit pref]
pci 0000:00:1c.5: PCI bridge to [bus 07-07]
pci 0000:00:1c.5: bridge window [io 0x4000-0x4fff]
pci 0000:00:1c.5: bridge window [mem 0xf5200000-0xf52fffff]
pci 0000:00:1c.5: bridge window [mem 0x80100000-0x802fffff 64bit pref]
pci 0000:00:1e.0: PCI bridge to [bus 08-08]
pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:01.0: setting latency timer to 64
pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
pci 0000:00:1c.0: setting latency timer to 64
pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:1c.1: setting latency timer to 64
pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:1c.2: setting latency timer to 64
pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
pci 0000:00:1c.3: setting latency timer to 64
pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
pci 0000:00:1c.5: setting latency timer to 64
pci 0000:00:1e.0: setting latency timer to 64
pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
pci_bus 0000:00: resource 9 [mem 0x80000000-0xdfffffff]
pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfebfffff]
pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
pci_bus 0000:01: resource 1 [mem 0xf4000000-0xf50fffff]
pci_bus 0000:01: resource 2 [mem 0xce000000-0xdfffffff 64bit pref]
pci_bus 0000:02: resource 0 [io 0x7000-0x7fff]
pci_bus 0000:02: resource 1 [mem 0x80900000-0x80afffff]
pci_bus 0000:02: resource 2 [mem 0x80b00000-0x80cfffff 64bit pref]
pci_bus 0000:03: resource 0 [io 0x6000-0x6fff]
pci_bus 0000:03: resource 1 [mem 0x80500000-0x806fffff]
pci_bus 0000:03: resource 2 [mem 0x80700000-0x808fffff 64bit pref]
pci_bus 0000:04: resource 0 [io 0x5000-0x5fff]
pci_bus 0000:04: resource 1 [mem 0xf5100000-0xf51fffff]
pci_bus 0000:04: resource 2 [mem 0x80300000-0x804fffff 64bit pref]
pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf3ffffff]
pci_bus 0000:05: resource 2 [mem 0xf6000000-0xf7ffffff 64bit pref]
pci_bus 0000:07: resource 0 [io 0x4000-0x4fff]
pci_bus 0000:07: resource 1 [mem 0xf5200000-0xf52fffff]
pci_bus 0000:07: resource 2 [mem 0x80100000-0x802fffff 64bit pref]
pci_bus 0000:08: resource 4 [io 0x0000-0x0cf7]
pci_bus 0000:08: resource 5 [io 0x0d00-0xffff]
pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:08: resource 7 [mem 0x000d4000-0x000d7fff]
pci_bus 0000:08: resource 8 [mem 0x000d8000-0x000dbfff]
pci_bus 0000:08: resource 9 [mem 0x80000000-0xdfffffff]
pci_bus 0000:08: resource 10 [mem 0xf0000000-0xfebfffff]
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 131072 bind 65536)
TCP reno registered
UDP hash table entries: 512 (order: 2, 16384 bytes)
UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
pci 0000:01:00.0: Boot video device
PCI: CLS 64 bytes, default 64
Simple Boot Flag at 0x36 set to 0x1
highmem bounce pool size: 64 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
squashfs: version 4.0 (2009/01/31) Phillip Lougher
NTFS driver 2.1.30 [Flags: R/O].
fuse init (API version 7.17)
SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
SGI XFS Quota Management subsystem
msgmni has been set to 1729
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
io scheduler noop registered
io scheduler deadline registered (default)
pcieport 0000:00:01.0: setting latency timer to 64
pcieport 0000:00:1c.0: setting latency timer to 64
pcieport 0000:00:1c.1: setting latency timer to 64
pcieport 0000:00:1c.2: setting latency timer to 64
pcieport 0000:00:1c.3: setting latency timer to 64
pcieport 0000:00:1c.5: setting latency timer to 64
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Linux agpgart interface v0.103
ACPI: AC Adapter [ACAD] (on-line)
input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
ACPI: Lid Switch [LID0]
input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
ACPI: Power Button [PWRB]
input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
ACPI: Sleep Button [SLPB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
ACPI: Power Button [PWRF]
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Marking TSC unstable due to TSC halts in idle
ACPI: acpi_idle registered with cpuidle
ACPI: Invalid active0 threshold
thermal LNXTHERM:00: registered as thermal_zone0
ACPI: Thermal Zone [TZ00] (70 C)
ioatdma: Intel(R) QuickData Technology Driver 4.00
brd: module loaded
loop: module loaded
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
SCSI Media Changer driver v0.25
ahci 0000:00:1f.2: version 3.0
ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
ahci: SSS flag set, parallel bus scan disabled
ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x13 impl SATA mode
ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems sxs
ahci 0000:00:1f.2: setting latency timer to 64
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
ata1: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505100 irq 19
ata2: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505180 irq 19
ata3: DUMMY
ata4: DUMMY
ata5: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505300 irq 19
cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.7 (July 20, 2011)
tg3.c:v3.121 (November 2, 2011)
tg3 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
tg3 0000:07:00.0: setting latency timer to 64
tg3 0000:07:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:26:22:df:46:3f
tg3 0000:07:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0])
tg3 0000:07:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[0]
tg3 0000:07:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
aoe: AoE v47 initialised.
i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mousedev: PS/2 mouse device common for all mice
ACPI: Battery Slot [BAT1] (battery present)
cpuidle: using governor ladder
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
TCP cubic registered
NET: Registered protocol family 17
Registering the dns_resolver key type
Using IPI No-Shortcut mode
registered taskstats version 1
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata1.00: ATA-8: WDC WD3200BEVT-22ZCT0, 11.01A11, max UDMA/133
ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access ATA WDC WD3200BEVT-2 11.0 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 0:0:0:0: Attached scsi generic sg0 type 0
sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 >
sd 0:0:0:0: [sda] Attached SCSI disk
ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T50N, RV08, max UDMA/133
ata2.00: configured for UDMA/133
scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T50N RV08 PQ: 0 ANSI: 5
sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
cdrom: Uniform CD-ROM driver Revision: 3.20
sr 1:0:0:0: Attached scsi CD-ROM sr0
sr 1:0:0:0: Attached scsi generic sg1 type 5
ata5: SATA link down (SStatus 0 SControl 300)
input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input5
input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input6
md: Waiting for all devices to be available before autodetect
md: If you don't use raid, use raid=noautodetect
md: Autodetecting RAID arrays.
md: Scanned 0 and added 0 devices.
md: autorun ...
md: ... autorun DONE.
EXT3-fs (sda10): error: couldn't mount because of unsupported optional features (240)
EXT2-fs (sda10): error: couldn't mount because of unsupported optional features (240)
EXT4-fs (sda10): mounted filesystem with ordered data mode. Opts: (null)
VFS: Mounted root (ext4 filesystem) readonly on device 8:10.
devtmpfs: mounted
Freeing unused kernel memory: 400k freed
Write protecting the kernel text: 3772k
Write protecting the kernel read-only data: 1444k
udevd[838]: starting version 171
cfg80211: Calling CRDA to update world regulatory domain
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 20 (level, low) -> IRQ 20
ehci_hcd 0000:00:1a.7: setting latency timer to 64
ehci_hcd 0000:00:1a.7: EHCI Host Controller
ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:1a.7: debug port 1
ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
ehci_hcd 0000:00:1a.7: irq 20, io mem 0xf5505800
ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: EHCI Host Controller
usb usb1: Manufacturer: Linux 3.2.1-gentoo-r2 ehci_hcd
usb usb1: SerialNumber: 0000:00:1a.7
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
ehci_hcd 0000:00:1d.7: setting latency timer to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
ehci_hcd 0000:00:1d.7: debug port 1
ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf5505c00
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: EHCI Host Controller
usb usb2: Manufacturer: Linux 3.2.1-gentoo-r2 ehci_hcd
usb usb2: SerialNumber: 0000:00:1d.7
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
snd_hda_intel 0000:00:1b.0: power state changed by ACPI to D0
snd_hda_intel 0000:00:1b.0: power state changed by ACPI to D0
snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
snd_hda_intel 0000:00:1b.0: setting latency timer to 64
uhci_hcd: USB Universal Host Controller Interface driver
Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
Copyright(c) 2003-2011 Intel Corporation
iwlwifi 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
iwlwifi 0000:04:00.0: setting latency timer to 64
iwlwifi 0000:04:00.0: pci_resource_len = 0x00002000
iwlwifi 0000:04:00.0: pci_resource_base = f8320000
iwlwifi 0000:04:00.0: HW Revision ID = 0x0
iwlwifi 0000:04:00.0: pci_enable_msi failed(0Xffffffff)
iwlwifi 0000:04:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: device EEPROM VER=0x11f, CALIB=0x4
iwlwifi 0000:04:00.0: Device SKU: 0Xf0
iwlwifi 0000:04:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
snd_hda_intel 0000:01:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
hda_intel: Disabling MSI
uhci_hcd 0000:00:1a.0: setting latency timer to 64
uhci_hcd 0000:00:1a.0: UHCI Host Controller
uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
snd_hda_intel 0000:01:00.1: setting latency timer to 64
uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001800
usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb3: Product: UHCI Host Controller
usb usb3: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb3: SerialNumber: 0000:00:1a.0
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
uhci_hcd 0000:00:1a.1: setting latency timer to 64
uhci_hcd 0000:00:1a.1: UHCI Host Controller
uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001820
usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb4: Product: UHCI Host Controller
usb usb4: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb4: SerialNumber: 0000:00:1a.1
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1a.2: setting latency timer to 64
uhci_hcd 0000:00:1a.2: UHCI Host Controller
uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
uhci_hcd 0000:00:1a.2: irq 20, io base 0x00001840
usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb5: Product: UHCI Host Controller
usb usb5: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb5: SerialNumber: 0000:00:1a.2
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
uhci_hcd 0000:00:1d.0: setting latency timer to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb6: Product: UHCI Host Controller
usb usb6: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb6: SerialNumber: 0000:00:1d.0
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
uhci_hcd 0000:00:1d.1: setting latency timer to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb7: Product: UHCI Host Controller
usb usb7: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb7: SerialNumber: 0000:00:1d.1
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
uhci_hcd 0000:00:1d.2: setting latency timer to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb8: Product: UHCI Host Controller
usb usb8: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb8: SerialNumber: 0000:00:1d.2
hub 8-0:1.0: USB hub found
hub 8-0:1.0: 2 ports detected
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-5.ucode' failed.
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-4.ucode' failed.
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-3.ucode' failed.
iwlwifi 0000:04:00.0: Firmware has old API version, expected v5, got v2.
iwlwifi 0000:04:00.0: New firmware can be obtained from http://www.intellinuxwireless.org/.
iwlwifi 0000:04:00.0: loaded firmware version 8.24.2.12
Registered led device: phy0-led
usb 2-3: new high-speed USB device number 2 using ehci_hcd
ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
Disabling lock debugging due to kernel taint
nvidia: module license 'NVIDIA' taints kernel.
usb 2-3: New USB device found, idVendor=090c, idProduct=3714
usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 2-3: Product: Lenovo EasyCamera
usb 2-3: Manufacturer: Image Processor
usb 8-1: new low-speed USB device number 2 using uhci_hcd
usb 8-1: New USB device found, idVendor=0461, idProduct=4d80
usb 8-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
usb 8-1: Product: USB Optical Mouse
input: USB Optical Mouse as /devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.0/input/input7
generic-usb 0003:0461:4D80.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:1d.2-1/input0
HDMI status: Codec=0 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=1 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=2 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
nvidia 0000:01:00.0: power state changed by ACPI to D0
nvidia 0000:01:00.0: power state changed by ACPI to D0
nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
nvidia 0000:01:00.0: setting latency timer to 64
vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
NVRM: loading NVIDIA UNIX x86 Kernel Module 290.10 Wed Nov 16 19:27:25 PST 2011
Real Time Clock Driver v1.12b
vboxdrv: Found 2 processor cores.
vboxdrv: fAsync=0 offMin=0x1ad offMax=0x67d
vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
vboxdrv: Successfully loaded version 4.1.8 (interface 0x00190000).
EXT4-fs (sda10): re-mounted. Opts: (null)
EXT4-fs (sda14): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda11): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda12): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda13): mounted filesystem with ordered data mode. Opts: (null)
Adding 2096124k swap on /dev/sda9. Priority:-1 extents:1 across:2096124k
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: Radio type=0x1-0x2-0x0
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: Radio type=0x1-0x2-0x0
tg3 0000:07:00.0: eth0: Link is up at 100 Mbps, full duplex
tg3 0000:07:00.0: eth0: Flow control is on for TX and on for RX
ata1.00: configured for UDMA/133
ata1: EH complete
EXT4-fs (sda10): re-mounted. Opts: commit=0
EXT4-fs (sda14): re-mounted. Opts: commit=0
EXT4-fs (sda11): re-mounted. Opts: commit=0
EXT4-fs (sda12): re-mounted. Opts: commit=0
EXT4-fs (sda13): re-mounted. Opts: commit=0
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-04 7:32 ` 张春江
@ 2012-04-04 17:28 ` Canek Peláez Valdés
2012-04-04 17:29 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-04 17:28 UTC (permalink / raw
To: gentoo-user
On Wed, Apr 4, 2012 at 2:32 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
> On 2012-04-04 15:03:56,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>> Sorry, I forgot; you also need to remove the "quiet" option from your kernel command line:>
>> title Gentoo Linux
>> root (hd0,13)
>> kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 video=radeon:1366x768 splash rd.debug
>> initrd /boot/initramfs-3.2.1-gentoo-r2.img
>> The quiet option overrides the rd.debug option. Please reboot and send again the output from dmesg.
>
> Here is the new dmesg output.
Something is wrong. There is no dracut messages in your dmesg output,
so either you are not using the rd.debug command line (which,
according to your logs, you *are* using), or you are not using a
dracut-created initramfs, or the initramfs is somehow corrupted.
Can I see your grub.cfg file, as it is please? Also, it seems that the
problem is OpenRC not creating the /run tmpfs early on during the boot
process:
https://bugs.gentoo.org/show_bug.cgi?id=409921
Until that gets fixed, recent versions of plymouth cannot work with
OpenRC. Maybe you could try an old version?
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-04 17:28 ` Canek Peláez Valdés
@ 2012-04-04 17:29 ` Canek Peláez Valdés
2012-04-05 7:47 ` 张春江
0 siblings, 1 reply; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-04 17:29 UTC (permalink / raw
To: gentoo-user
On Wed, Apr 4, 2012 at 12:28 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
> On Wed, Apr 4, 2012 at 2:32 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
>> On 2012-04-04 15:03:56,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>>> Sorry, I forgot; you also need to remove the "quiet" option from your kernel command line:>
>>> title Gentoo Linux
>>> root (hd0,13)
>>> kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 video=radeon:1366x768 splash rd.debug
>>> initrd /boot/initramfs-3.2.1-gentoo-r2.img
>>> The quiet option overrides the rd.debug option. Please reboot and send again the output from dmesg.
>>
>> Here is the new dmesg output.
>
> Something is wrong. There is no dracut messages in your dmesg output,
> so either you are not using the rd.debug command line (which,
> according to your logs, you *are* using), or you are not using a
> dracut-created initramfs, or the initramfs is somehow corrupted.
>
> Can I see your grub.cfg file, as it is please? Also, it seems that the
> problem is OpenRC not creating the /run tmpfs early on during the boot
> process:
>
> https://bugs.gentoo.org/show_bug.cgi?id=409921
>
> Until that gets fixed, recent versions of plymouth cannot work with
> OpenRC. Maybe you could try an old version?
>
> Regards.
Also, can I see your fstab? It seems you use quite the complex setup
for your partitions.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-04 17:29 ` Canek Peláez Valdés
@ 2012-04-05 7:47 ` 张春江
2012-04-05 18:10 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: 张春江 @ 2012-04-05 7:47 UTC (permalink / raw
To: gentoo-user
On 2012-04-05 01:29:36,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>On Wed, Apr 4, 2012 at 12:28 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
>>
>> Something is wrong. There is no dracut messages in your dmesg output,
>> so either you are not using the rd.debug command line (which,
>> according to your logs, you *are* using), or you are not using a
>> dracut-created initramfs, or the initramfs is somehow corrupted.
I used
# dracut -H -f
to create my initramfs. I don't know why there is no dracut message in
my dmesg output.
>> Can I see your grub.cfg file, as it is please? Also, it seems that the
>> problem is OpenRC not creating the /run tmpfs early on during the boot
>> process:
>>
>> https://bugs.gentoo.org/show_bug.cgi?id=409921
>>
>> Until that gets fixed, recent versions of plymouth cannot work with
>> OpenRC. Maybe you could try an old version?
>>
>> Regards.
>
>Also, can I see your fstab? It seems you use quite the complex setup
>for your partitions.
The latest version of plymouth is 0.9_pre20111013-r1.
I installed sys-boot/plymouth-0.8.3-r5 but it still couldn't work, just like v0.9_pre.
There is no ebuild for other versions.
Then I tried to install by tarball, but version 0.8.1 and 0.8.2 have a make error:
"fatal error: drm/drm.h: No such file or directory", but I have already installed
x11-libs/libdrm and all the other drm related applications are masked.
Version 0.7.2 have an another make error.
This is my grub.conf:
default 0
timeout 5
#splashimage=(hd0,13)/boot/grub/splash.xpm.gz
title Gentoo Linux
root (hd0,13)
kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet video=radeon:1366x768
initrd /boot/initramfs-3.2.1-gentoo-r2.img
title Win7
rootnoverify (hd0,0)
makeactive
chainloader +1
This is my /etc/fstab:
# <fs> <mountpoint> <type> <opts> <dump/pass>
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/sda14 /boot ext4 defaults,noatime 1 2
/dev/sda10 / ext4 noatime 0 1
/dev/sda11 /usr ext4 noatime 0 0
/dev/sda12 /var ext4 noatime 0 0
/dev/sda13 /home ext4 noatime 0 0
/dev/sda9 none swap sw 0 0
/dev/cdrom /mnt/cdrom auto noauto,user 0 0
/dev/sda1 /media/win7 ntfs-3g rw,users,umask=000 0 0
/dev/sda5 /media/music ntfs-3g rw,users,umask=000 0 0
/dev/sda6 /media/animation ntfs-3g rw,users,umask=000 0 0
/dev/sda7 /media/data ntfs-3g rw,users,umask=000 0 0
/dev/sda8 /media/video ntfs-3g rw,users,umask=000 0 0
Thank you very much for your help!
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-05 7:47 ` 张春江
@ 2012-04-05 18:10 ` Canek Peláez Valdés
2012-04-05 18:32 ` Joost Roeleveld
0 siblings, 1 reply; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-05 18:10 UTC (permalink / raw
To: gentoo-user
On Thu, Apr 5, 2012 at 2:47 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
> On 2012-04-05 01:29:36,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>>On Wed, Apr 4, 2012 at 12:28 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
>>>
>>> Something is wrong. There is no dracut messages in your dmesg output,
>>> so either you are not using the rd.debug command line (which,
>>> according to your logs, you *are* using), or you are not using a
>>> dracut-created initramfs, or the initramfs is somehow corrupted.
>
> I used
> # dracut -H -f
> to create my initramfs. I don't know why there is no dracut message in
> my dmesg output.
>
>>> Can I see your grub.cfg file, as it is please? Also, it seems that the
>>> problem is OpenRC not creating the /run tmpfs early on during the boot
>>> process:
>>>
>>> https://bugs.gentoo.org/show_bug.cgi?id=409921
>>>
>>> Until that gets fixed, recent versions of plymouth cannot work with
>>> OpenRC. Maybe you could try an old version?
>>>
>>> Regards.
>>
>>Also, can I see your fstab? It seems you use quite the complex setup
>>for your partitions.
>
> The latest version of plymouth is 0.9_pre20111013-r1.
> I installed sys-boot/plymouth-0.8.3-r5 but it still couldn't work, just like v0.9_pre.
> There is no ebuild for other versions.
> Then I tried to install by tarball, but version 0.8.1 and 0.8.2 have a make error:
> "fatal error: drm/drm.h: No such file or directory", but I have already installed
> x11-libs/libdrm and all the other drm related applications are masked.
> Version 0.7.2 have an another make error.
>
> This is my grub.conf:
> default 0
> timeout 5
> #splashimage=(hd0,13)/boot/grub/splash.xpm.gz
>
> title Gentoo Linux
> root (hd0,13)
> kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet video=radeon:1366x768
> initrd /boot/initramfs-3.2.1-gentoo-r2.img
>
> title Win7
> rootnoverify (hd0,0)
> makeactive
> chainloader +1
>
> This is my /etc/fstab:
> # <fs> <mountpoint> <type> <opts> <dump/pass>
> # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
> /dev/sda14 /boot ext4 defaults,noatime 1 2
> /dev/sda10 / ext4 noatime 0 1
> /dev/sda11 /usr ext4 noatime 0 0
> /dev/sda12 /var ext4 noatime 0 0
> /dev/sda13 /home ext4 noatime 0 0
> /dev/sda9 none swap sw 0 0
> /dev/cdrom /mnt/cdrom auto noauto,user 0 0
> /dev/sda1 /media/win7 ntfs-3g rw,users,umask=000 0 0
> /dev/sda5 /media/music ntfs-3g rw,users,umask=000 0 0
> /dev/sda6 /media/animation ntfs-3g rw,users,umask=000 0 0
> /dev/sda7 /media/data ntfs-3g rw,users,umask=000 0 0
> /dev/sda8 /media/video ntfs-3g rw,users,umask=000 0 0
>
> Thank you very much for your help!
I see several problems from your grub and fstab config files:
1. If you have a separate /boot partition, you should have something like
kernel (hd0,14)/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet
video=radeon:1366x768
initrd (hd0,14)/initramfs-3.2.1-gentoo-r2.img
in your grub.cfg.
2. GRUB cannot read ext4 partitions (GRUB2 can), so you are reading
them as ext3 (I don't know if this can cause any problems). The reason
I started to use GRUB2 was because I wanted to use ext4 for my /.
3. Where is the rd.debug command line? Without it, we can't see
dracut's debug messages.
Delete /boot/initramfs*, and recreate the initramfs again, add the
rd.debug kernel command line in grub.cfg, and reboot again. The dmesg
output should have a lot of lines with "dracut:"; send that to the
list.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-05 18:10 ` Canek Peláez Valdés
@ 2012-04-05 18:32 ` Joost Roeleveld
2012-04-05 18:50 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: Joost Roeleveld @ 2012-04-05 18:32 UTC (permalink / raw
To: gentoo-user
On Thursday, April 05, 2012 01:10:46 PM Canek Peláez Valdés wrote:
> On Thu, Apr 5, 2012 at 2:47 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
> > On 2012-04-05 01:29:36,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
> >
>
>>On Wed, Apr 4, 2012 at 12:28 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
> >>> Something is wrong. There is no dracut messages in your dmesg output,
> >>> so either you are not using the rd.debug command line (which,
> >>> according to your logs, you *are* using), or you are not using a
> >>> dracut-created initramfs, or the initramfs is somehow corrupted.
> >
> > I used
> > # dracut -H -f
> > to create my initramfs. I don't know why there is no dracut message in
> > my dmesg output.
> >
> >>> Can I see your grub.cfg file, as it is please? Also, it seems that th
> >>>e
> >>> problem is OpenRC not creating the /run tmpfs early on during the boo
> >>>t
> >>> process:
> >>>
> >>> https://bugs.gentoo.org/show_bug.cgi?id=409921
> >>>
> >>> Until that gets fixed, recent versions of plymouth cannot work with
> >>> OpenRC. Maybe you could try an old version?
> >>>
> >>> Regards.
> >>
> >>Also, can I see your fstab? It seems you use quite the complex setup
> >>for your partitions.
> >>
> > The latest version of plymouth is 0.9_pre20111013-r1.
> > I installed sys-boot/plymouth-0.8.3-r5 but it still couldn't work, just
> > like v0.9_pre. There is no ebuild for other versions.
> > Then I tried to install by tarball, but version 0.8.1 and 0.8.2 have a
> > make error: "fatal error: drm/drm.h: No such file or directory", but I
> > have already installed x11-libs/libdrm and all the other drm related
> > applications are masked. Version 0.7.2 have an another make error.
> >
> > This is my grub.conf:
> > default 0
> > timeout 5
> > #splashimage=(hd0,13)/boot/grub/splash.xpm.gz
> >
> > title Gentoo Linux
> > root (hd0,13)
> > kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet
> > video=radeon:1366x768 initrd /boot/initramfs-3.2.1-gentoo-r2.img
> >
> > title Win7
> > rootnoverify (hd0,0)
> > makeactive
> > chainloader +1
> >
> > This is my /etc/fstab:
> > # <fs> <mountpoint> <type> <opts>
> > <dump/pass> # NOTE: If your BOOT partition is ReiserFS, add the notail
> > option to opts. /dev/sda14 /boot ext4
> > defaults,noatime 1 2 /dev/sda10 /
> > ext4 noatime 0 1 /dev/sda11
> > /usr ext4 noatime 0 0 /dev/sda12
> > /var ext4 noatime 0
> > 0 /dev/sda13 /home ext4 noatime
> > 0 0 /dev/sda9 none swap
> > sw 0 0 /dev/cdrom /mnt/cdrom
> > auto noauto,user 0 0 /dev/sda1
> > /media/win7 ntfs-3g rw,users,umask=000 0 0 /dev/sda5
> > /media/music ntfs-3g rw,users,umask=000 0 0
> > /dev/sda6 /media/animation ntfs-3g
> > rw,users,umask=000 0 0 /dev/sda7 /media/data
> > ntfs-3g rw,users,umask=000 0 0 /dev/sda8
> > /media/video ntfs-3g rw,users,umask=000 0 0
> >
> > Thank you very much for your help!
>
> I see several problems from your grub and fstab config files:
>
> 1. If you have a separate /boot partition, you should have something like
>
> kernel (hd0,14)/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet
> video=radeon:1366x768
> initrd (hd0,14)/initramfs-3.2.1-gentoo-r2.img
> in your grub.cfg.
Grub starts counting at "0", not at "1". So the partition is marked as
(hd0,13)
The /boot partition has a symlink called boot pointing back to itself.
(hd0,13)/boot = (hd0,13)
When specifying " root (hd0,13) " Grub will default to that partition.
Eg. the grub config matches fstab.
> 2. GRUB cannot read ext4 partitions (GRUB2 can), so you are reading
> them as ext3 (I don't know if this can cause any problems). The reason
> I started to use GRUB2 was because I wanted to use ext4 for my /.
I don't think ext4 and ext3 use the same disk layout, eg. I don't think that
can work.
> 3. Where is the rd.debug command line? Without it, we can't see
> dracut's debug messages.
>
> Delete /boot/initramfs*, and recreate the initramfs again, add the
> rd.debug kernel command line in grub.cfg, and reboot again. The dmesg
> output should have a lot of lines with "dracut:"; send that to the
> list.
Why start with deleting the initramfs?
Why not create a new one with a new name and keep the old one for comparison
later?
--
Joost
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-05 18:32 ` Joost Roeleveld
@ 2012-04-05 18:50 ` Canek Peláez Valdés
2012-04-05 19:03 ` Michael Mol
0 siblings, 1 reply; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-05 18:50 UTC (permalink / raw
To: gentoo-user
On Thu, Apr 5, 2012 at 1:32 PM, Joost Roeleveld <joost@antarean.org> wrote:
> On Thursday, April 05, 2012 01:10:46 PM Canek Peláez Valdés wrote:
>> On Thu, Apr 5, 2012 at 2:47 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
>> > On 2012-04-05 01:29:36,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>> >
>>
>>>On Wed, Apr 4, 2012 at 12:28 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
>> >>> Something is wrong. There is no dracut messages in your dmesg output,
>> >>> so either you are not using the rd.debug command line (which,
>> >>> according to your logs, you *are* using), or you are not using a
>> >>> dracut-created initramfs, or the initramfs is somehow corrupted.
>> >
>> > I used
>> > # dracut -H -f
>> > to create my initramfs. I don't know why there is no dracut message in
>> > my dmesg output.
>> >
>> >>> Can I see your grub.cfg file, as it is please? Also, it seems that th
>> >>>e
>> >>> problem is OpenRC not creating the /run tmpfs early on during the boo
>> >>>t
>> >>> process:
>> >>>
>> >>> https://bugs.gentoo.org/show_bug.cgi?id=409921
>> >>>
>> >>> Until that gets fixed, recent versions of plymouth cannot work with
>> >>> OpenRC. Maybe you could try an old version?
>> >>>
>> >>> Regards.
>> >>
>> >>Also, can I see your fstab? It seems you use quite the complex setup
>> >>for your partitions.
>> >>
>> > The latest version of plymouth is 0.9_pre20111013-r1.
>> > I installed sys-boot/plymouth-0.8.3-r5 but it still couldn't work, just
>> > like v0.9_pre. There is no ebuild for other versions.
>> > Then I tried to install by tarball, but version 0.8.1 and 0.8.2 have a
>> > make error: "fatal error: drm/drm.h: No such file or directory", but I
>> > have already installed x11-libs/libdrm and all the other drm related
>> > applications are masked. Version 0.7.2 have an another make error.
>> >
>> > This is my grub.conf:
>> > default 0
>> > timeout 5
>> > #splashimage=(hd0,13)/boot/grub/splash.xpm.gz
>> >
>> > title Gentoo Linux
>> > root (hd0,13)
>> > kernel /boot/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet
>> > video=radeon:1366x768 initrd /boot/initramfs-3.2.1-gentoo-r2.img
>> >
>> > title Win7
>> > rootnoverify (hd0,0)
>> > makeactive
>> > chainloader +1
>> >
>> > This is my /etc/fstab:
>> > # <fs> <mountpoint> <type> <opts>
>> > <dump/pass> # NOTE: If your BOOT partition is ReiserFS, add the notail
>> > option to opts. /dev/sda14 /boot ext4
>> > defaults,noatime 1 2 /dev/sda10 /
>> > ext4 noatime 0 1 /dev/sda11
>> > /usr ext4 noatime 0 0 /dev/sda12
>> > /var ext4 noatime 0
>> > 0 /dev/sda13 /home ext4 noatime
>> > 0 0 /dev/sda9 none swap
>> > sw 0 0 /dev/cdrom /mnt/cdrom
>> > auto noauto,user 0 0 /dev/sda1
>> > /media/win7 ntfs-3g rw,users,umask=000 0 0 /dev/sda5
>> > /media/music ntfs-3g rw,users,umask=000 0 0
>> > /dev/sda6 /media/animation ntfs-3g
>> > rw,users,umask=000 0 0 /dev/sda7 /media/data
>> > ntfs-3g rw,users,umask=000 0 0 /dev/sda8
>> > /media/video ntfs-3g rw,users,umask=000 0 0
>> >
>> > Thank you very much for your help!
>>
>> I see several problems from your grub and fstab config files:
>>
>> 1. If you have a separate /boot partition, you should have something like
>>
>> kernel (hd0,14)/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet
>> video=radeon:1366x768
>> initrd (hd0,14)/initramfs-3.2.1-gentoo-r2.img
>> in your grub.cfg.
>
> Grub starts counting at "0", not at "1". So the partition is marked as
> (hd0,13)
> The /boot partition has a symlink called boot pointing back to itself.
> (hd0,13)/boot = (hd0,13)
>
> When specifying " root (hd0,13) " Grub will default to that partition.
>
> Eg. the grub config matches fstab.
You are right about that; I just saw the sd14 on fstab, and thought it
should be the same on grub.
>> 2. GRUB cannot read ext4 partitions (GRUB2 can), so you are reading
>> them as ext3 (I don't know if this can cause any problems). The reason
>> I started to use GRUB2 was because I wanted to use ext4 for my /.
>
> I don't think ext4 and ext3 use the same disk layout, eg. I don't think that
> can work.
ext4 is fully backwards compatible with ext3, obviously; otherwise 张春江
would not be able to boot his system.
>> 3. Where is the rd.debug command line? Without it, we can't see
>> dracut's debug messages.
>>
>> Delete /boot/initramfs*, and recreate the initramfs again, add the
>> rd.debug kernel command line in grub.cfg, and reboot again. The dmesg
>> output should have a lot of lines with "dracut:"; send that to the
>> list.
>
> Why start with deleting the initramfs?
> Why not create a new one with a new name and keep the old one for comparison
> later?
Since I believed that the /boot partition and dir could differ, I
thought it would be the safest route; now it doesn't really matter.
But anyway, the initramfs is automatically generated by dracut; I
don't see a reason to keep one if it seems to be failing, when I
trivially can create a new one. I delete mine all the time.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-05 18:50 ` Canek Peláez Valdés
@ 2012-04-05 19:03 ` Michael Mol
2012-04-05 19:10 ` Canek Peláez Valdés
0 siblings, 1 reply; 17+ messages in thread
From: Michael Mol @ 2012-04-05 19:03 UTC (permalink / raw
To: gentoo-user
On Thu, Apr 5, 2012 at 2:50 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
> On Thu, Apr 5, 2012 at 1:32 PM, Joost Roeleveld <joost@antarean.org> wrote:
>> On Thursday, April 05, 2012 01:10:46 PM Canek Peláez Valdés wrote:
>>> On Thu, Apr 5, 2012 at 2:47 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
>>> 2. GRUB cannot read ext4 partitions (GRUB2 can), so you are reading
>>> them as ext3 (I don't know if this can cause any problems). The reason
>>> I started to use GRUB2 was because I wanted to use ext4 for my /.
>>
>> I don't think ext4 and ext3 use the same disk layout, eg. I don't think that
>> can work.
>
> ext4 is fully backwards compatible with ext3, obviously; otherwise 张春江
> would not be able to boot his system.
Not exactly. If you use them, ext4 adds structures and features which
means the filesystem isn't liked by ext3-only code. I don't remember
which these are, I just know I tended to accidentally enable them
while tweaking filesystems with tune2fs.
Just noting this for clarity.
--
:wq
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-05 19:03 ` Michael Mol
@ 2012-04-05 19:10 ` Canek Peláez Valdés
2012-04-06 10:18 ` Jorge Martínez López
2012-04-06 16:06 ` [gentoo-user] sys-boot/plymouth could not work[solved] 张春江
0 siblings, 2 replies; 17+ messages in thread
From: Canek Peláez Valdés @ 2012-04-05 19:10 UTC (permalink / raw
To: gentoo-user
On Thu, Apr 5, 2012 at 2:03 PM, Michael Mol <mikemol@gmail.com> wrote:
> On Thu, Apr 5, 2012 at 2:50 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
>> On Thu, Apr 5, 2012 at 1:32 PM, Joost Roeleveld <joost@antarean.org> wrote:
>>> On Thursday, April 05, 2012 01:10:46 PM Canek Peláez Valdés wrote:
>>>> On Thu, Apr 5, 2012 at 2:47 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
>>>> 2. GRUB cannot read ext4 partitions (GRUB2 can), so you are reading
>>>> them as ext3 (I don't know if this can cause any problems). The reason
>>>> I started to use GRUB2 was because I wanted to use ext4 for my /.
>>>
>>> I don't think ext4 and ext3 use the same disk layout, eg. I don't think that
>>> can work.
>>
>> ext4 is fully backwards compatible with ext3, obviously; otherwise 张春江
>> would not be able to boot his system.
>
> Not exactly. If you use them, ext4 adds structures and features which
> means the filesystem isn't liked by ext3-only code. I don't remember
> which these are, I just know I tended to accidentally enable them
> while tweaking filesystems with tune2fs.
tune2fs -O extents,uninit_bg,dir_index
which, again, obviously 张春江 hasn't set, otherwise either he wouldn't
be able to boot his system, or we had seen the warnings in his logs.
Just as long as he doesn't use those new features, ext4 is fully
backwards compatible with ext3.
Regards.
--
Canek Peláez Valdés
Posgrado en Ciencia e Ingeniería de la Computación
Universidad Nacional Autónoma de México
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work
2012-04-05 19:10 ` Canek Peláez Valdés
@ 2012-04-06 10:18 ` Jorge Martínez López
2012-04-06 16:06 ` [gentoo-user] sys-boot/plymouth could not work[solved] 张春江
1 sibling, 0 replies; 17+ messages in thread
From: Jorge Martínez López @ 2012-04-06 10:18 UTC (permalink / raw
To: gentoo-user
Hi!
The video=radeon:... option is not strictly necessary. Actually from
the logs it seems you have a NVIDIA card...
Greetings,
--
Jorge Martínez López <jorgeml@gmail.com> http://www.jorgeml.net
Google Talk / XMPP: jorgeml@gmail.com
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [gentoo-user] sys-boot/plymouth could not work[solved]
2012-04-05 19:10 ` Canek Peláez Valdés
2012-04-06 10:18 ` Jorge Martínez López
@ 2012-04-06 16:06 ` 张春江
1 sibling, 0 replies; 17+ messages in thread
From: 张春江 @ 2012-04-06 16:06 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 4200 bytes --]
On 2012-04-06 03:10:07,"Canek Peláez Valdés" <caneko@gmail.com> wrote:
>On Thu, Apr 5, 2012 at 2:03 PM, Michael Mol <mikemol@gmail.com> wrote:
>> On Thu, Apr 5, 2012 at 2:50 PM, Canek Peláez Valdés <caneko@gmail.com> wrote:
>>> On Thu, Apr 5, 2012 at 1:32 PM, Joost Roeleveld <joost@antarean.org> wrote:
>>>> On Thursday, April 05, 2012 01:10:46 PM Canek Peláez Valdés wrote:
>>>>> On Thu, Apr 5, 2012 at 2:47 AM, 张春江 <zhangchunjiangrj@126.com> wrote:
Thank you! The problem have been solved!
I'm ashamed to tell you that the reason is my wrong kernel complie option.
I knew little about gentoo and kernel complie when I install her,
so I choose genkernel and it generated a kernel image and an initramfs.
Weeks before, I complied my kernel manually with this option canceled:
General setup-->
Initial RAM filesystem and RAM disk(initramfs/initrd) support
Then my machine can boot both with initramfs and not, so I think the option
is not matter and I soon forgot it.
Today I suddenly realized it and recomplied my kernel with the option on and
the plymouth works!
That's also the reason why the dmesg output didn't have any information about dracut.
The accessory is my new dmesg output, which have dracut information.
On 2012-04-06 18:18:26,"Jorge Martínez López" <jorgeml@gmail.com> wrote:
>Hi!
>
>The video=radeon:... option is not strictly necessary. Actually from
>the logs it seems you have a NVIDIA card...
You are right, I use NVIDIA card and video=radeon isn't neccessory.
If I use "video=radeon:1366x768", which is my screen size, in kernel command line,
plymouth will just show fedora's default booting splash:
three bars(a deep blue one ,a blue one and a white one) moving forward slowly,
no matter what theme you set.
If I use "vga=792" instead of "video=radeon:1366x768", every theme can be shown well,
and if no screen size specified, no splash at all.
>>>>> 2. GRUB cannot read ext4 partitions (GRUB2 can), so you are reading
>>>>> them as ext3 (I don't know if this can cause any problems). The reason
>>>>> I started to use GRUB2 was because I wanted to use ext4 for my /.
>>>>
>>>> I don't think ext4 and ext3 use the same disk layout, eg. I don't think that
>>>> can work.
>>>
>>> ext4 is fully backwards compatible with ext3, obviously; otherwise 张春江
>>> would not be able to boot his system.
>>
>> Not exactly. If you use them, ext4 adds structures and features which
>> means the filesystem isn't liked by ext3-only code. I don't remember
>> which these are, I just know I tended to accidentally enable them
>> while tweaking filesystems with tune2fs.
>
>tune2fs -O extents,uninit_bg,dir_index
>
>which, again, obviously 张春江 hasn't set, otherwise either he wouldn't
>be able to boot his system, or we had seen the warnings in his logs.
>
>Just as long as he doesn't use those new features, ext4 is fully
>backwards compatible with ext3.
I havn't set tune2fs, so in my machine, ext4 can backwards compatible with ext3.
>> 1. If you have a separate /boot partition, you should have something like
>>
>> kernel (hd0,14)/kernel-3.2.1-gentoo-r2 root=/dev/sda10 splash quiet
>> video=radeon:1366x768
>> initrd (hd0,14)/initramfs-3.2.1-gentoo-r2.img
>> in your grub.cfg.
>
> Grub starts counting at "0", not at "1". So the partition is marked as
> (hd0,13)
> The /boot partition has a symlink called boot pointing back to itself.
> (hd0,13)/boot = (hd0,13)
>
> When specifying " root (hd0,13) " Grub will default to that partition.
>
> Eg. the grub config matches fstab.
My grub.conf is ok, I think that there is no need to specific (hd0,13) before /boot
In my opinion, "root (hd0,13)" command is before command kernel and initrd,
so GRUB will regard (hd0,13) as root fs, and it will looking for kernel and initramfs in
hd(0,13)/boot/kernel|initramfs. To test this, I tried to boot with:
title Gentoo Linux
root (hd0,13)
kernel /kernel-3.2.1-gentoo-r2 root=/dev/sda10 quiet splash vga=792
initrd /initramfs-3.2.1-gentoo-r2.img
this can boot successful too.
Than all of you!
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain, Size: 59485 bytes --]
0000:00:01.0: setting latency timer to 64
pcieport 0000:00:1c.0: setting latency timer to 64
pcieport 0000:00:1c.1: setting latency timer to 64
pcieport 0000:00:1c.2: setting latency timer to 64
pcieport 0000:00:1c.3: setting latency timer to 64
pcieport 0000:00:1c.5: setting latency timer to 64
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Linux agpgart interface v0.103
ACPI: AC Adapter [ACAD] (on-line)
input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
ACPI: Lid Switch [LID0]
input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
ACPI: Power Button [PWRB]
input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
ACPI: Sleep Button [SLPB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
ACPI: Power Button [PWRF]
Monitor-Mwait will be used to enter C-1 state
Monitor-Mwait will be used to enter C-2 state
Marking TSC unstable due to TSC halts in idle
ACPI: acpi_idle registered with cpuidle
ACPI: Invalid active0 threshold
thermal LNXTHERM:00: registered as thermal_zone0
ACPI: Thermal Zone [TZ00] (47 C)
ioatdma: Intel(R) QuickData Technology Driver 4.00
brd: module loaded
loop: module loaded
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
SCSI Media Changer driver v0.25
ahci 0000:00:1f.2: version 3.0
ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
ahci: SSS flag set, parallel bus scan disabled
ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x13 impl SATA mode
ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc ems sxs
ahci 0000:00:1f.2: setting latency timer to 64
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
ata1: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505100 irq 19
ata2: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505180 irq 19
ata3: DUMMY
ata4: DUMMY
ata5: SATA max UDMA/133 abar m2048@0xf5505000 port 0xf5505300 irq 19
cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.7 (July 20, 2011)
tg3.c:v3.121 (November 2, 2011)
tg3 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
tg3 0000:07:00.0: setting latency timer to 64
tg3 0000:07:00.0: eth0: Tigon3 [partno(BCM95906) rev c002] (PCI Express) MAC address 00:26:22:df:46:3f
tg3 0000:07:00.0: eth0: attached PHY is 5906 (10/100Base-TX Ethernet) (WireSpeed[0], EEE[0])
tg3 0000:07:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[0]
tg3 0000:07:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
aoe: AoE v47 initialised.
i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
ACPI: Battery Slot [BAT1] (battery present)
mousedev: PS/2 mouse device common for all mice
cpuidle: using governor ladder
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
TCP cubic registered
NET: Registered protocol family 17
Registering the dns_resolver key type
Using IPI No-Shortcut mode
registered taskstats version 1
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata1.00: ATA-8: WDC WD3200BEVT-22ZCT0, 11.01A11, max UDMA/133
ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access ATA WDC WD3200BEVT-2 11.0 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 >
sd 0:0:0:0: [sda] Attached SCSI disk
ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T50N, RV08, max UDMA/133
ata2.00: configured for UDMA/133
scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T50N RV08 PQ: 0 ANSI: 5
sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
cdrom: Uniform CD-ROM driver Revision: 3.20
sr 1:0:0:0: Attached scsi CD-ROM sr0
sr 1:0:0:0: Attached scsi generic sg1 type 5
ata5: SATA link down (SStatus 0 SControl 300)
Freeing unused kernel memory: 408k freed
Write protecting the kernel text: 3772k
Write protecting the kernel read-only data: 1448k
dracut: + source_conf /etc/conf.d
dracut: + local f
dracut: + [ /etc/conf.d ]
dracut: + [ -d //etc/conf.d ]
dracut: + return
dracut: + getarg rd.break=cmdline rdbreak=cmdline
dracut: + set +x
dracut: + return 1
dracut: + source_hook cmdline
dracut: + source_all /lib/dracut/hooks/cmdline
dracut: + local f
dracut: + [ /lib/dracut/hooks/cmdline ]
dracut: + [ -d //lib/dracut/hooks/cmdline ]
dracut: + [ -e //lib/dracut/hooks/cmdline/01parse-kernel.sh ]
dracut: + . //lib/dracut/hooks/cmdline/01parse-kernel.sh
dracut: + getargs rd.driver.pre rdloaddriver=
dracut: + set +x
dracut: + return 1
dracut: + getargs rd.driver.blacklist rdblacklist=
dracut: + set +x
dracut: + return 1
dracut: + getargs rd.driver.post rdinsmodpost=
dracut: + set +x
dracut: + return 1
dracut: + [ -n ]
dracut: + unset _do_insmodpost
dracut: + [ -e //lib/dracut/hooks/cmdline/10parse-resume.sh ]
dracut: + . //lib/dracut/hooks/cmdline/10parse-resume.sh
dracut: + getarg resume=
dracut: + set +x
dracut: + return 1
dracut: + resume=
dracut: + unset resume
dracut: + getarg splash=
dracut: + set +x
dracut: + return 0
dracut: + splash=
dracut: + export splash
dracut: + [ -e //lib/dracut/hooks/cmdline/10parse-root-opts.sh ]
dracut: + . //lib/dracut/hooks/cmdline/10parse-root-opts.sh
dracut: + getarg root=
dracut: + set +x
dracut: + return 0
dracut: + root=/dev/sda10
dracut: + getarg rootflags=
dracut: + set +x
dracut: + return 1
dracut: + rflags=
dracut: + getarg rw
dracut: + set +x
dracut: + return 1
dracut: + rflags=ro
dracut: + getarg rootfstype=
dracut: + set +x
dracut: + return 1
dracut: + fstype=
dracut: + [ -z ]
dracut: + fstype=auto
dracut: + [ -e //lib/dracut/hooks/cmdline/20parse-i18n.sh ]
dracut: + . //lib/dracut/hooks/cmdline/20parse-i18n.sh
dracut: + inst_key_val /etc/vconsole.conf KEYMAP vconsole.keymap KEYTABLE
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=
dracut: + shift
dracut: + _file=/etc/vconsole.conf
dracut: + shift
dracut: + getarg KEYMAP vconsole.keymap KEYTABLE
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=
dracut: + [ -n ]
dracut: + unset _file
dracut: + unset _value
dracut: + inst_key_val /etc/vconsole.conf FONT vconsole.font SYSFONT
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=
dracut: + shift
dracut: + _file=/etc/vconsole.conf
dracut: + shift
dracut: + getarg FONT vconsole.font SYSFONT
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=
dracut: + [ -n ]
dracut: + unset _file
dracut: + unset _value
dracut: + inst_key_val /etc/vconsole.conf FONT_MAP vconsole.font.map CONTRANS
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=
dracut: + shift
dracut: + _file=/etc/vconsole.conf
dracut: + shift
dracut: + getarg FONT_MAP vconsole.font.map CONTRANS
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=
dracut: + [ -n ]
dracut: + unset _file
dracut: + unset _value
dracut: + inst_key_val /etc/vconsole.conf FONT_UNIMAP vconsole.font.unimap UNIMAP
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=
dracut: + shift
dracut: + _file=/etc/vconsole.conf
dracut: + shift
dracut: + getarg FONT_UNIMAP vconsole.font.unimap UNIMAP
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=
dracut: + [ -n ]
dracut: + unset _file
dracut: + unset _value
dracut: + inst_key_val 1 /etc/vconsole.conf UNICODE vconsole.unicode vconsole.font.unicode
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=1
dracut: + shift
dracut: + _file=/etc/vconsole.conf
dracut: + shift
dracut: + getarg UNICODE vconsole.unicode vconsole.font.unicode
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=1
dracut: + [ -n 1 ]
dracut: + printf %s="%s"n UNICODE 1
dracut: + unset _file
dracut: + unset _value
dracut: + inst_key_val /etc/vconsole.conf EXT_KEYMAP vconsole.keymap.ext
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=
dracut: + shift
dracut: + _file=/etc/vconsole.conf
dracut: + shift
dracut: + getarg EXT_KEYMAP vconsole.keymap.ext
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=
dracut: + [ -n ]
dracut: + unset _file
dracut: + unset _value
dracut: + inst_key_val /etc/locale.conf LANG locale.LANG
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=
dracut: + shift
dracut: + _file=/etc/locale.conf
dracut: + shift
dracut: + getarg LANG locale.LANG
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=
dracut: + [ -n ]
dracut: + unset _file
dracut: + unset _value
dracut: + inst_key_val /etc/locale.conf LC_ALL locale.LC_ALL
dracut: + local _value
dracut: + local _file
dracut: + local _default
dracut: + _default=
dracut: + shift
dracut: + _file=/etc/locale.conf
dracut: + shift
dracut: + getarg LC_ALL locale.LC_ALL
dracut: + set +x
dracut: + return 1
dracut: + _value=
dracut: + [ -z ]
dracut: + _value=
dracut: + [ -n ]
dracut: + unset _file
dracut: + unset _value
dracut: + [ -f /etc/locale.conf ]
dracut: + [ -e //lib/dracut/hooks/cmdline/95parse-block.sh ]
dracut: + . //lib/dracut/hooks/cmdline/95parse-block.sh
dracut: + root=block:/dev/sda10
dracut: + rootok=1
dracut: + [ -z block:/dev/sda10 ]
dracut: + [ -z 1 ]
dracut: + echo root='block:/dev/sda10'
dracut: + echo rflags='ro'
dracut: + echo fstype='auto'
dracut: + echo netroot=''
dracut: + echo NEWROOT='/sysroot'
dracut: + getarg rd.break=pre-udev rdbreak=pre-udev
dracut: + set +x
dracut: + return 1
dracut: + source_hook pre-udev
dracut: + source_all /lib/dracut/hooks/pre-udev
dracut: + local f
dracut: + [ /lib/dracut/hooks/pre-udev ]
dracut: + [ -d //lib/dracut/hooks/pre-udev ]
dracut: + [ -e //lib/dracut/hooks/pre-udev/30block-genrules.sh ]
dracut: + . //lib/dracut/hooks/pre-udev/30block-genrules.sh
dracut: + [ block = block ]
dracut: + printf KERNEL=="%s", SYMLINK+="root"n sda10
dracut: + printf SYMLINK=="%s", SYMLINK+="root"n sda10
dracut: + printf [ -e "%s" ] && { ln -s "%s" /dev/root 2>/dev/null; rm "$job"; }n /dev/sda10 /dev/sda10
dracut: + wait_for_dev /dev/sda10
dracut: + local _name
dracut: + str_replace /dev/sda10 / \x2f
dracut: + local in=/dev/sda10
dracut: + local s=/
dracut: + local r=\x2f
dracut: + local out=
dracut: + strstr /dev/sda10 /
dracut: + [ dev/sda10 != /dev/sda10 ]
dracut: + chop=
dracut: + out=\x2f
dracut: + in=dev/sda10
dracut: + strstr dev/sda10 /
dracut: + [ sda10 != dev/sda10 ]
dracut: + chop=dev
dracut: + out=\x2fdev\x2f
dracut: + in=sda10
dracut: + strstr sda10 /
dracut: + [ sda10 != sda10 ]
dracut: + echo \x2fdev\x2fsda10
dracut: + _name=x2fdevx2fsda10
dracut: + printf [ -e "%s" ]n /dev/sda10
dracut: + printf [ -e "%s" ] || /dev/sda10
dracut: + printf warn ""%s" does not exist"n /dev/sda10
dracut: + [ -e //lib/dracut/hooks/pre-udev/30resume-genrules.sh ]
dracut: + . //lib/dracut/hooks/pre-udev/30resume-genrules.sh
dracut: + a_splash=-P splash=n
dracut: + [ -n ]
dracut: + getarg noresume
dracut: + set +x
dracut: + return 1
dracut: + [ -x /usr/sbin/resume ]
dracut: + echo SUBSYSTEM=="block", ACTION=="add|change", ENV{ID_FS_TYPE}=="suspend|swsuspend|swsupend", RUN+="/bin/sh -c 'echo %M:%m > /sys/power/resume'"
dracut: + udevd --daemon --resolve-names=never
udevd[764]: starting version 171
dracut: + UDEV_LOG_PRIO_ARG=--log-priority
dracut: + UDEV_QUEUE_EMPTY=udevadm settle --timeout=0
dracut: + [ 171 -lt 140 ]
dracut: + getargbool 0 rd.udev.info -y rdudevinfo
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=0
dracut: + shift
dracut: + getarg rd.udev.info -y rdudevinfo
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=0
dracut: + [ -n 0 ]
dracut: + [ 0 = 0 ]
dracut: + return 1
dracut: + getargbool 0 rd.udev.debug -y rdudevdebug
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=0
dracut: + shift
dracut: + getarg rd.udev.debug -y rdudevdebug
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=0
dracut: + [ -n 0 ]
dracut: + [ 0 = 0 ]
dracut: + return 1
dracut: + udevproperty hookdir=/lib/dracut/hooks
dracut: + [ -z 171 ]
dracut: + [ 171 -ge 143 ]
dracut: + udevadm control --property=hookdir=/lib/dracut/hooks
dracut: + getarg rd.break=pre-trigger rdbreak=pre-trigger
dracut: + set +x
dracut: + return 1
dracut: + source_hook pre-trigger
dracut: + source_all /lib/dracut/hooks/pre-trigger
dracut: + local f
dracut: + [ /lib/dracut/hooks/pre-trigger ]
dracut: + [ -d //lib/dracut/hooks/pre-trigger ]
dracut: + [ -e //lib/dracut/hooks/pre-trigger/10plymouth-pretrigger.sh ]
dracut: + . //lib/dracut/hooks/pre-trigger/10plymouth-pretrigger.sh
dracut: + getargbool 1 plymouth.enable
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=1
dracut: + shift
dracut: + getarg plymouth.enable
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=1
dracut: + [ -n 1 ]
dracut: + [ 1 = 0 ]
dracut: + [ 1 = no ]
dracut: + [ 1 = off ]
dracut: + return 0
dracut: + getargbool 1 rd.plymouth -n rd_NO_PLYMOUTH
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=1
dracut: + shift
dracut: + getarg rd.plymouth -n rd_NO_PLYMOUTH
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=1
dracut: + [ -n 1 ]
dracut: + [ 1 = 0 ]
dracut: + [ 1 = no ]
dracut: + [ 1 = off ]
dracut: + return 0
dracut: + [ -c /dev/null ]
dracut: + udevadm trigger --action=add --attr-match=class=0x030000
dracut: + udevadm trigger --action=add --subsystem-match=graphics --subsystem-match=drm --subsystem-match=tty
dracut: + udevadm settle --timeout=30
dracut: + vinfo
dracut: + read line
dracut: + [ -c /dev/zero ]
dracut: + [ -c /dev/tty0 ]
dracut: + [ -e /dev/systty ]
dracut: + ln -s tty0 /dev/systty
dracut: + [ -c /dev/fb0 ]
dracut: + mknod -m 0660 /dev/fb0 c 29 0
dracut: + [ -e /dev/fb ]
dracut: + ln -s fb0 /dev/fb
dracut: + info Starting plymouth daemon
dracut: + check_quiet
dracut: + [ -z ]
dracut: + DRACUT_QUIET=yes
dracut: + getargbool 0 rd.info -y rdinfo
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=0
dracut: + shift
dracut: + getarg rd.info -y rdinfo
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=0
dracut: + [ -n 0 ]
dracut: + [ 0 = 0 ]
dracut: + return 1
dracut: + getargbool 0 rd.debug -y rdinitdebug
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=0
dracut: + shift
dracut: + getarg rd.debug -y rdinitdebug
dracut: + set +x
dracut: + return 0
dracut: + _b=
dracut: + [ 0 -ne 0 -a -z ]
dracut: + [ -n ]
dracut: + return 0
dracut: + DRACUT_QUIET=no
dracut: Starting plymouth daemon
dracut: + getarg quiet
dracut: + set +x
dracut: + return 1
dracut: + DRACUT_QUIET=yes
dracut: + echo <30>dracut: Starting plymouth daemon
dracut: + [ yes != yes ]
dracut: + mkdir -m 0755 /run/plymouth
dracut: + getarg console=
dracut: + set +x
dracut: + return 1
dracut: + sed -e s/,.*//
dracut: + consoledev=
dracut: + consoledev=tty0
dracut: + [ -x /lib/udev/console_init ]
dracut: + /lib/udev/console_init /dev/tty0
dracut: + [ -x /bin/plymouthd ]
dracut: + /bin/plymouthd --attach-to-session --pid-file /run/plymouth/pid
dracut: + /bin/plymouth --show-splash
dracut: + vinfo
dracut: + read line
input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input5
input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio1/input/input6
dracut: + [ -x /lib/udev/console_init ]
dracut: + /lib/udev/console_init /dev/tty0
dracut: + udevadm control --reload
dracut: + udevadm trigger --type=subsystems --action=add
dracut: + udevadm trigger --type=devices --action=add
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 20 (level, low) -> IRQ 20
ehci_hcd 0000:00:1a.7: setting latency timer to 64
ehci_hcd 0000:00:1a.7: EHCI Host Controller
ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:1a.7: debug port 1
ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
ehci_hcd 0000:00:1a.7: irq 20, io mem 0xf5505800
ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: EHCI Host Controller
usb usb1: Manufacturer: Linux 3.2.1-gentoo-r2 ehci_hcd
usb usb1: SerialNumber: 0000:00:1a.7
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
ehci_hcd 0000:00:1d.7: setting latency timer to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
ehci_hcd 0000:00:1d.7: debug port 1
ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf5505c00
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: EHCI Host Controller
usb usb2: Manufacturer: Linux 3.2.1-gentoo-r2 ehci_hcd
usb usb2: SerialNumber: 0000:00:1d.7
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
uhci_hcd: USB Universal Host Controller Interface driver
uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
uhci_hcd 0000:00:1a.0: setting latency timer to 64
uhci_hcd 0000:00:1a.0: UHCI Host Controller
uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001800
usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb3: Product: UHCI Host Controller
usb usb3: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb3: SerialNumber: 0000:00:1a.0
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
uhci_hcd 0000:00:1a.1: setting latency timer to 64
uhci_hcd 0000:00:1a.1: UHCI Host Controller
uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001820
usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb4: Product: UHCI Host Controller
usb usb4: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb4: SerialNumber: 0000:00:1a.1
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
uhci_hcd 0000:00:1a.2: setting latency timer to 64
uhci_hcd 0000:00:1a.2: UHCI Host Controller
uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
uhci_hcd 0000:00:1a.2: irq 20, io base 0x00001840
usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb5: Product: UHCI Host Controller
usb usb5: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb5: SerialNumber: 0000:00:1a.2
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
uhci_hcd 0000:00:1d.0: setting latency timer to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb6: Product: UHCI Host Controller
usb usb6: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb6: SerialNumber: 0000:00:1d.0
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
uhci_hcd 0000:00:1d.1: setting latency timer to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb7: Product: UHCI Host Controller
usb usb7: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb7: SerialNumber: 0000:00:1d.1
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 2 ports detected
uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
uhci_hcd 0000:00:1d.2: setting latency timer to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb8: Product: UHCI Host Controller
usb usb8: Manufacturer: Linux 3.2.1-gentoo-r2 uhci_hcd
usb usb8: SerialNumber: 0000:00:1d.2
hub 8-0:1.0: USB hub found
hub 8-0:1.0: 2 ports detected
dracut: + getarg rd.break=initqueue rdbreak=initqueue
dracut: + set +x
dracut: + return 1
dracut: + getarg rd.retry rd_retry=
dracut: + set +x
dracut: + return 1
dracut: + RDRETRY=
dracut: + RDRETRY=20
dracut: + RDRETRY=40
dracut: + export RDRETRY
dracut: + main_loop=0
dracut: + export main_loop
dracut: + :
dracut: + check_finished
dracut: + local f
dracut: + [ /lib/dracut/hooks/initqueue/finished/devexists-x2fdevx2fsda10.sh = /lib/dracut/hooks/initqueue/finished/*.sh ]
dracut: + [ -e /lib/dracut/hooks/initqueue/finished/devexists-x2fdevx2fsda10.sh ]
dracut: + . /lib/dracut/hooks/initqueue/finished/devexists-x2fdevx2fsda10.sh
dracut: + [ -e /dev/sda10 ]
dracut: + return 0
dracut: + break
dracut: + unset job
dracut: + unset queuetriggered
dracut: + unset main_loop
dracut: + unset RDRETRY
dracut: + getarg rd.break=pre-mount rdbreak=pre-mount
dracut: + set +x
dracut: + return 1
dracut: + source_hook pre-mount
dracut: + source_all /lib/dracut/hooks/pre-mount
dracut: + local f
dracut: + [ /lib/dracut/hooks/pre-mount ]
dracut: + [ -d //lib/dracut/hooks/pre-mount ]
dracut: + [ -e //lib/dracut/hooks/pre-mount/*.sh ]
dracut: + getarg rd.break=mount rdbreak=mount
dracut: + set +x
dracut: + return 1
dracut: + i=0
dracut: + :
dracut: + ismounted /sysroot
dracut: + read a m a
dracut: + [ / = /sysroot ]
dracut: + read a m a
dracut: + [ /proc = /sysroot ]
dracut: + read a m a
dracut: + [ /sys = /sysroot ]
dracut: + read a m a
dracut: + [ /dev = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/pts = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/shm = /sysroot ]
dracut: + read a m a
dracut: + [ /run = /sysroot ]
dracut: + read a m a
dracut: + [ /sys/fs/fuse/connections = /sysroot ]
dracut: + read a m a
dracut: + return 1
dracut: + [ -f /lib/dracut/hooks/mount/10resume.sh ]
dracut: + . /lib/dracut/hooks/mount/10resume.sh
dracut: + PATH=/usr/sbin:/usr/bin:/sbin:/bin
dracut: + [ -s /.resume -a -b ]
dracut: + ismounted /sysroot
dracut: + read a m a
dracut: + [ / = /sysroot ]
dracut: + read a m a
dracut: + [ /proc = /sysroot ]
dracut: + read a m a
dracut: + [ /sys = /sysroot ]
dracut: + read a m a
dracut: + [ /dev = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/pts = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/shm = /sysroot ]
dracut: + read a m a
dracut: + [ /run = /sysroot ]
dracut: + read a m a
dracut: + [ /sys/fs/fuse/connections = /sysroot ]
dracut: + read a m a
dracut: + return 1
dracut: + [ -f /lib/dracut/hooks/mount/99mount-root.sh ]
dracut: + . /lib/dracut/hooks/mount/99mount-root.sh
dracut: + type getarg
dracut: + type det_fs
dracut: + . /lib/fs-lib.sh
dracut: + type getarg
dracut: + [ -n block:/dev/sda10 -a -z ]
dracut: + mount_root
dracut: + local _ret
dracut: + det_fs /dev/sda10 auto
dracut: + local _dev=/dev/sda10
dracut: + local _orig=auto
dracut: + local _fs
dracut: + udevadm info --query=env --name=/dev/sda10
dracut: + read line
dracut: + str_starts UDEV_LOG=3 ID_FS_TYPE=
dracut: + [ UDEV_LOG=3 != UDEV_LOG=3 ]
dracut: + read line
dracut: + str_starts DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 ID_FS_TYPE=
dracut: + [ DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 != DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 ]
dracut: + read line
dracut: + str_starts MAJOR=8 ID_FS_TYPE=
dracut: + [ MAJOR=8 != MAJOR=8 ]
dracut: + read line
dracut: + str_starts MINOR=10 ID_FS_TYPE=
dracut: + [ MINOR=10 != MINOR=10 ]
dracut: + read line
dracut: + str_starts DEVNAME=sda10 ID_FS_TYPE=
dracut: + [ DEVNAME=sda10 != DEVNAME=sda10 ]
dracut: + read line
dracut: + str_starts DEVTYPE=partition ID_FS_TYPE=
dracut: + [ DEVTYPE=partition != DEVTYPE=partition ]
dracut: + read line
dracut: + str_starts SUBSYSTEM=block ID_FS_TYPE=
dracut: + [ SUBSYSTEM=block != SUBSYSTEM=block ]
dracut: + read line
dracut: + _fs=
dracut: + _fs=auto
dracut: + [ auto = auto ]
dracut: + _fs=auto
dracut: + echo auto
dracut: + rootfs=auto
dracut: + mount -t auto -o ro,ro /dev/sda10 /sysroot
EXT4-fs (sda10): mounted filesystem with ordered data mode. Opts: (null)
dracut: + READONLY=
dracut: + fsckoptions=
dracut: + [ -f /sysroot/etc/sysconfig/readonly-root ]
dracut: + getargbool 0 readonlyroot= -y readonlyroot
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=0
dracut: + shift
dracut: + getarg readonlyroot= -y readonlyroot
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=0
dracut: + [ -n 0 ]
dracut: + [ 0 = 0 ]
dracut: + return 1
dracut: + getarg noreadonlyroot
dracut: + set +x
dracut: + return 1
dracut: + [ -f /sysroot/fastboot ]
dracut: + getargbool 0 fastboot
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=0
dracut: + shift
dracut: + getarg fastboot
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=0
dracut: + [ -n 0 ]
dracut: + [ 0 = 0 ]
dracut: + return 1
dracut: + [ -f /sysroot/fsckoptions ]
dracut: + [ -f /sysroot/forcefsck ]
dracut: + getargbool 0 forcefsck
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=0
dracut: + shift
dracut: + getarg forcefsck
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=0
dracut: + [ -n 0 ]
dracut: + [ 0 = 0 ]
dracut: + return 1
dracut: + [ -f /sysroot/.autofsck ]
dracut: + rootopts=
dracut: + getargbool 1 rd.fstab -n rd_NO_FSTAB
dracut: + local _b
dracut: + unset _b
dracut: + local _default
dracut: + _default=1
dracut: + shift
dracut: + getarg rd.fstab -n rd_NO_FSTAB
dracut: + set +x
dracut: + return 1
dracut: + _b=
dracut: + [ 1 -ne 0 -a -z ]
dracut: + _b=1
dracut: + [ -n 1 ]
dracut: + [ 1 = 0 ]
dracut: + [ 1 = no ]
dracut: + [ 1 = off ]
dracut: + return 0
dracut: + getarg rootflags
dracut: + set +x
dracut: + return 1
dracut: + [ -f /sysroot/etc/fstab ]
dracut: + [ -L /sysroot/etc/fstab ]
dracut: + rootopts=defaults
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != ]
dracut: + [ = / ]
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != ]
dracut: + [ = / ]
dracut: + read dev mp fs opts rest
dracut: + [ != # ]
dracut: + continue
dracut: + read dev mp fs opts rest
dracut: + [ != ]
dracut: + [ = / ]
dracut: + read dev mp fs opts rest
dracut: + [ /dev/sda14 != /dev/sda14 ]
dracut: + [ /boot = / ]
dracut: + read dev mp fs opts rest
dracut: + [ /dev/sda10 != /dev/sda10 ]
dracut: + [ / = / ]
dracut: + det_fs /dev/sda10 ext4
dracut: + local _dev=/dev/sda10
dracut: + local _orig=ext4
dracut: + local _fs
dracut: + read line
dracut: + udevadm info --query=env --name=/dev/sda10
dracut: + str_starts UDEV_LOG=3 ID_FS_TYPE=
dracut: + [ UDEV_LOG=3 != UDEV_LOG=3 ]
dracut: + read line
dracut: + str_starts DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 ID_FS_TYPE=
dracut: + [ DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 != DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 ]
dracut: + read line
dracut: + str_starts MAJOR=8 ID_FS_TYPE=
dracut: + [ MAJOR=8 != MAJOR=8 ]
dracut: + read line
dracut: + str_starts MINOR=10 ID_FS_TYPE=
dracut: + [ MINOR=10 != MINOR=10 ]
dracut: + read line
dracut: + str_starts DEVNAME=/dev/sda10 ID_FS_TYPE=
dracut: + [ DEVNAME=/dev/sda10 != DEVNAME=/dev/sda10 ]
dracut: + read line
dracut: + str_starts DEVTYPE=partition ID_FS_TYPE=
dracut: + [ DEVTYPE=partition != DEVTYPE=partition ]
dracut: + read line
dracut: + str_starts SUBSYSTEM=block ID_FS_TYPE=
dracut: + [ SUBSYSTEM=block != SUBSYSTEM=block ]
dracut: + read line
dracut: + str_starts ID_ATA=1 ID_FS_TYPE=
dracut: + [ ID_ATA=1 != ID_ATA=1 ]
dracut: + read line
dracut: + str_starts ID_TYPE=disk ID_FS_TYPE=
dracut: + [ ID_TYPE=disk != ID_TYPE=disk ]
dracut: + read line
dracut: + str_starts ID_BUS=ata ID_FS_TYPE=
dracut: + [ ID_BUS=ata != ID_BUS=ata ]
dracut: + read line
dracut: + str_starts ID_MODEL=WDC_WD3200BEVT-22ZCT0 ID_FS_TYPE=
dracut: + [ ID_MODEL=WDC_WD3200BEVT-22ZCT0 != ID_MODEL=WDC_WD3200BEVT-22ZCT0 ]
dracut: + read line
dracut: + str_starts ID_MODEL_ENC=WDCx20WD3200BEVT-22ZCT0x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20 ID_FS_TYPE=
dracut: + [ ID_MODEL_ENC=WDCx20WD3200BEVT-22ZCT0x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20 != ID_MODEL_ENC=WDCx20WD3200BEVT-22ZCT0x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20 ]
dracut: + read line
dracut: + str_starts ID_REVISION=11.01A11 ID_FS_TYPE=
dracut: + [ ID_REVISION=11.01A11 != ID_REVISION=11.01A11 ]
dracut: + read line
dracut: + str_starts ID_SERIAL=WDC_WD3200BEVT-22ZCT0_WD-WX10AA964632 ID_FS_TYPE=
dracut: + [ ID_SERIAL=WDC_WD3200BEVT-22ZCT0_WD-WX10AA964632 != ID_SERIAL=WDC_WD3200BEVT-22ZCT0_WD-WX10AA964632 ]
dracut: + read line
dracut: + str_starts ID_SERIAL_SHORT=WD-WX10AA964632 ID_FS_TYPE=
dracut: + [ ID_SERIAL_SHORT=WD-WX10AA964632 != ID_SERIAL_SHORT=WD-WX10AA964632 ]
dracut: + read line
dracut: + str_starts ID_ATA_WRITE_CACHE=1 ID_FS_TYPE=
dracut: + [ ID_ATA_WRITE_CACHE=1 != ID_ATA_WRITE_CACHE=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_WRITE_CACHE_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_WRITE_CACHE_ENABLED=1 != ID_ATA_WRITE_CACHE_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_HPA=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_HPA=1 != ID_ATA_FEATURE_SET_HPA=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_HPA_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_HPA_ENABLED=1 != ID_ATA_FEATURE_SET_HPA_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_PM=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_PM=1 != ID_ATA_FEATURE_SET_PM=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_PM_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_PM_ENABLED=1 != ID_ATA_FEATURE_SET_PM_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY=1 != ID_ATA_FEATURE_SET_SECURITY=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 != ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=106 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=106 != ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=106 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=106 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=106 != ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=106 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 != ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SMART=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SMART=1 != ID_ATA_FEATURE_SET_SMART=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SMART_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SMART_ENABLED=1 != ID_ATA_FEATURE_SET_SMART_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM=1 != ID_ATA_FEATURE_SET_AAM=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM_ENABLED=0 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM_ENABLED=0 != ID_ATA_FEATURE_SET_AAM_ENABLED=0 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=128 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=128 != ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=128 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=254 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=254 != ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=254 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_APM=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_APM=1 != ID_ATA_FEATURE_SET_APM=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_APM_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_APM_ENABLED=1 != ID_ATA_FEATURE_SET_APM_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_APM_CURRENT_VALUE=254 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_APM_CURRENT_VALUE=254 != ID_ATA_FEATURE_SET_APM_CURRENT_VALUE=254 ]
dracut: + read line
dracut: + str_starts ID_ATA_DOWNLOAD_MICROCODE=1 ID_FS_TYPE=
dracut: + [ ID_ATA_DOWNLOAD_MICROCODE=1 != ID_ATA_DOWNLOAD_MICROCODE=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_SATA=1 ID_FS_TYPE=
dracut: + [ ID_ATA_SATA=1 != ID_ATA_SATA=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_SATA_SIGNAL_RATE_GEN2=1 ID_FS_TYPE=
dracut: + [ ID_ATA_SATA_SIGNAL_RATE_GEN2=1 != ID_ATA_SATA_SIGNAL_RATE_GEN2=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_SATA_SIGNAL_RATE_GEN1=1 ID_FS_TYPE=
dracut: + [ ID_ATA_SATA_SIGNAL_RATE_GEN1=1 != ID_ATA_SATA_SIGNAL_RATE_GEN1=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_ROTATION_RATE_RPM=5400 ID_FS_TYPE=
dracut: + [ ID_ATA_ROTATION_RATE_RPM=5400 != ID_ATA_ROTATION_RATE_RPM=5400 ]
dracut: + read line
dracut: + str_starts ID_WWN=0x50014ee001bf055c ID_FS_TYPE=
dracut: + [ ID_WWN=0x50014ee001bf055c != ID_WWN=0x50014ee001bf055c ]
dracut: + read line
dracut: + str_starts ID_WWN_WITH_EXTENSION=0x50014ee001bf055c ID_FS_TYPE=
dracut: + [ ID_WWN_WITH_EXTENSION=0x50014ee001bf055c != ID_WWN_WITH_EXTENSION=0x50014ee001bf055c ]
dracut: + read line
dracut: + str_starts ID_SCSI_COMPAT=SATA_WDC_WD3200BEVT-_WD-WX10AA964632 ID_FS_TYPE=
dracut: + [ ID_SCSI_COMPAT=SATA_WDC_WD3200BEVT-_WD-WX10AA964632 != ID_SCSI_COMPAT=SATA_WDC_WD3200BEVT-_WD-WX10AA964632 ]
dracut: + read line
dracut: + str_starts ID_PATH=pci-0000:00:1f.2-scsi-0:0:0:0 ID_FS_TYPE=
dracut: + [ ID_PATH=pci-0000:00:1f.2-scsi-0:0:0:0 != ID_PATH=pci-0000:00:1f.2-scsi-0:0:0:0 ]
dracut: + read line
dracut: + str_starts ID_PART_TABLE_TYPE=dos ID_FS_TYPE=
dracut: + [ ID_PART_TABLE_TYPE=dos != ID_PART_TABLE_TYPE=dos ]
dracut: + read line
dracut: + str_starts ID_FS_UUID=de246769-301f-4c22-bad3-17a97e91e27e ID_FS_TYPE=
dracut: + [ ID_FS_UUID=de246769-301f-4c22-bad3-17a97e91e27e != ID_FS_UUID=de246769-301f-4c22-bad3-17a97e91e27e ]
dracut: + read line
dracut: + str_starts ID_FS_UUID_ENC=de246769-301f-4c22-bad3-17a97e91e27e ID_FS_TYPE=
dracut: + [ ID_FS_UUID_ENC=de246769-301f-4c22-bad3-17a97e91e27e != ID_FS_UUID_ENC=de246769-301f-4c22-bad3-17a97e91e27e ]
dracut: + read line
dracut: + str_starts ID_FS_VERSION=1.0 ID_FS_TYPE=
dracut: + [ ID_FS_VERSION=1.0 != ID_FS_VERSION=1.0 ]
dracut: + read line
dracut: + str_starts ID_FS_TYPE=ext4 ID_FS_TYPE=
dracut: + [ ext4 != ID_FS_TYPE=ext4 ]
dracut: + echo ext4
dracut: + break
dracut: + _fs=ext4
dracut: + _fs=ext4
dracut: + [ ext4 = auto ]
dracut: + echo ext4
dracut: + rootfs=ext4
dracut: + rootopts=noatime
dracut: + break
dracut: + filter_rootopts noatime
dracut: + rootopts=noatime
dracut: + local OLDIFS=
dracut:
dracut: + IFS=,
dracut: + set -- noatime
dracut: + IFS=
dracut:
dracut: + local v
dracut: + [ 1 -gt 0 ]
dracut: + v=,noatime
dracut: + shift
dracut: + [ 0 -gt 0 ]
dracut: + rootopts=noatime
dracut: + echo noatime
dracut: + rootopts=noatime
dracut: + rflags=noatime,ro
dracut: + umount /sysroot
usb 2-3: new high-speed USB device number 2 using ehci_hcd
dracut: + [ -z -a != yes ]
dracut: + strstr noatime,ro,noatime _netdev
dracut: + [ noatime,ro,noatime != noatime,ro,noatime ]
dracut: + fsck_single /dev/sda10 ext4
dracut: + local FSTAB_FILE=/etc/fstab.empty
dracut: + local _dev=/dev/sda10
dracut: + local _fs=ext4
dracut: + local _fop=
dracut: + local _drv
dracut: + [ 3 -lt 2 ]
dracut: + [ -e /dev/sda10 ]
dracut: + [ -e /dev/sda10 ]
dracut: + det_fs /dev/sda10 ext4
dracut: + local _dev=/dev/sda10
dracut: + local _orig=ext4
dracut: + local _fs
dracut: + udevadm info --query=env --name=/dev/sda10
dracut: + read line
dracut: + str_starts UDEV_LOG=3 ID_FS_TYPE=
dracut: + [ UDEV_LOG=3 != UDEV_LOG=3 ]
dracut: + read line
dracut: + str_starts DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 ID_FS_TYPE=
dracut: + [ DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 != DEVPATH=/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda/sda10 ]
dracut: + read line
dracut: + str_starts MAJOR=8 ID_FS_TYPE=
dracut: + [ MAJOR=8 != MAJOR=8 ]
dracut: + read line
dracut: + str_starts MINOR=10 ID_FS_TYPE=
dracut: + [ MINOR=10 != MINOR=10 ]
dracut: + read line
dracut: + str_starts DEVNAME=/dev/sda10 ID_FS_TYPE=
dracut: + [ DEVNAME=/dev/sda10 != DEVNAME=/dev/sda10 ]
dracut: + read line
dracut: + str_starts DEVTYPE=partition ID_FS_TYPE=
dracut: + [ DEVTYPE=partition != DEVTYPE=partition ]
dracut: + read line
dracut: + str_starts SUBSYSTEM=block ID_FS_TYPE=
dracut: + [ SUBSYSTEM=block != SUBSYSTEM=block ]
dracut: + read line
dracut: + str_starts ID_ATA=1 ID_FS_TYPE=
dracut: + [ ID_ATA=1 != ID_ATA=1 ]
dracut: + read line
dracut: + str_starts ID_TYPE=disk ID_FS_TYPE=
dracut: + [ ID_TYPE=disk != ID_TYPE=disk ]
dracut: + read line
dracut: + str_starts ID_BUS=ata ID_FS_TYPE=
dracut: + [ ID_BUS=ata != ID_BUS=ata ]
dracut: + read line
dracut: + str_starts ID_MODEL=WDC_WD3200BEVT-22ZCT0 ID_FS_TYPE=
dracut: + [ ID_MODEL=WDC_WD3200BEVT-22ZCT0 != ID_MODEL=WDC_WD3200BEVT-22ZCT0 ]
dracut: + read line
dracut: + str_starts ID_MODEL_ENC=WDCx20WD3200BEVT-22ZCT0x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20 ID_FS_TYPE=
dracut: + [ ID_MODEL_ENC=WDCx20WD3200BEVT-22ZCT0x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20 != ID_MODEL_ENC=WDCx20WD3200BEVT-22ZCT0x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20x20 ]
dracut: + read line
dracut: + str_starts ID_REVISION=11.01A11 ID_FS_TYPE=
dracut: + [ ID_REVISION=11.01A11 != ID_REVISION=11.01A11 ]
dracut: + read line
dracut: + str_starts ID_SERIAL=WDC_WD3200BEVT-22ZCT0_WD-WX10AA964632 ID_FS_TYPE=
dracut: + [ ID_SERIAL=WDC_WD3200BEVT-22ZCT0_WD-WX10AA964632 != ID_SERIAL=WDC_WD3200BEVT-22ZCT0_WD-WX10AA964632 ]
dracut: + read line
dracut: + str_starts ID_SERIAL_SHORT=WD-WX10AA964632 ID_FS_TYPE=
dracut: + [ ID_SERIAL_SHORT=WD-WX10AA964632 != ID_SERIAL_SHORT=WD-WX10AA964632 ]
dracut: + read line
dracut: + str_starts ID_ATA_WRITE_CACHE=1 ID_FS_TYPE=
dracut: + [ ID_ATA_WRITE_CACHE=1 != ID_ATA_WRITE_CACHE=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_WRITE_CACHE_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_WRITE_CACHE_ENABLED=1 != ID_ATA_WRITE_CACHE_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_HPA=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_HPA=1 != ID_ATA_FEATURE_SET_HPA=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_HPA_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_HPA_ENABLED=1 != ID_ATA_FEATURE_SET_HPA_ENABLED=1 ]
dracut: Checking ext4: /dev/sda10
dracut: issuing e2fsck -a /dev/sda10
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_PM=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_PM=1 != ID_ATA_FEATURE_SET_PM=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_PM_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_PM_ENABLED=1 != ID_ATA_FEATURE_SET_PM_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY=1 != ID_ATA_FEATURE_SET_SECURITY=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 != ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=106 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=106 != ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=106 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=106 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=106 != ID_ATA_FEATURE_SET_SECURITY_ENHANCED_ERASE_UNIT_MIN=106 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 != ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SMART=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SMART=1 != ID_ATA_FEATURE_SET_SMART=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_SMART_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_SMART_ENABLED=1 != ID_ATA_FEATURE_SET_SMART_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM=1 != ID_ATA_FEATURE_SET_AAM=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM_ENABLED=0 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM_ENABLED=0 != ID_ATA_FEATURE_SET_AAM_ENABLED=0 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=128 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=128 != ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=128 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=254 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=254 != ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=254 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_APM=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_APM=1 != ID_ATA_FEATURE_SET_APM=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_APM_ENABLED=1 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_APM_ENABLED=1 != ID_ATA_FEATURE_SET_APM_ENABLED=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_FEATURE_SET_APM_CURRENT_VALUE=254 ID_FS_TYPE=
dracut: + [ ID_ATA_FEATURE_SET_APM_CURRENT_VALUE=254 != ID_ATA_FEATURE_SET_APM_CURRENT_VALUE=254 ]
dracut: + read line
dracut: + str_starts ID_ATA_DOWNLOAD_MICROCODE=1 ID_FS_TYPE=
dracut: + [ ID_ATA_DOWNLOAD_MICROCODE=1 != ID_ATA_DOWNLOAD_MICROCODE=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_SATA=1 ID_FS_TYPE=
dracut: + [ ID_ATA_SATA=1 != ID_ATA_SATA=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_SATA_SIGNAL_RATE_GEN2=1 ID_FS_TYPE=
dracut: + [ ID_ATA_SATA_SIGNAL_RATE_GEN2=1 != ID_ATA_SATA_SIGNAL_RATE_GEN2=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_SATA_SIGNAL_RATE_GEN1=1 ID_FS_TYPE=
dracut: + [ ID_ATA_SATA_SIGNAL_RATE_GEN1=1 != ID_ATA_SATA_SIGNAL_RATE_GEN1=1 ]
dracut: + read line
dracut: + str_starts ID_ATA_ROTATION_RATE_RPM=5400 ID_FS_TYPE=
dracut: + [ ID_ATA_ROTATION_RATE_RPM=5400 != ID_ATA_ROTATION_RATE_RPM=5400 ]
dracut: + read line
dracut: + str_starts ID_WWN=0x50014ee001bf055c ID_FS_TYPE=
dracut: + [ ID_WWN=0x50014ee001bf055c != ID_WWN=0x50014ee001bf055c ]
dracut: + read line
dracut: + str_starts ID_WWN_WITH_EXTENSION=0x50014ee001bf055c ID_FS_TYPE=
dracut: + [ ID_WWN_WITH_EXTENSION=0x50014ee001bf055c != ID_WWN_WITH_EXTENSION=0x50014ee001bf055c ]
dracut: + read line
dracut: + str_starts ID_SCSI_COMPAT=SATA_WDC_WD3200BEVT-_WD-WX10AA964632 ID_FS_TYPE=
dracut: + [ ID_SCSI_COMPAT=SATA_WDC_WD3200BEVT-_WD-WX10AA964632 != ID_SCSI_COMPAT=SATA_WDC_WD3200BEVT-_WD-WX10AA964632 ]
dracut: + read line
dracut: + str_starts ID_PATH=pci-0000:00:1f.2-scsi-0:0:0:0 ID_FS_TYPE=
dracut: + [ ID_PATH=pci-0000:00:1f.2-scsi-0:0:0:0 != ID_PATH=pci-0000:00:1f.2-scsi-0:0:0:0 ]
dracut: + read line
dracut: + str_starts ID_PART_TABLE_TYPE=dos ID_FS_TYPE=
dracut: + [ ID_PART_TABLE_TYPE=dos != ID_PART_TABLE_TYPE=dos ]
dracut: + read line
dracut: + str_starts ID_FS_UUID=de246769-301f-4c22-bad3-17a97e91e27e ID_FS_TYPE=
dracut: + [ ID_FS_UUID=de246769-301f-4c22-bad3-17a97e91e27e != ID_FS_UUID=de246769-301f-4c22-bad3-17a97e91e27e ]
dracut: + read line
dracut: + str_starts ID_FS_UUID_ENC=de246769-301f-4c22-bad3-17a97e91e27e ID_FS_TYPE=
dracut: + [ ID_FS_UUID_ENC=de246769-301f-4c22-bad3-17a97e91e27e != ID_FS_UUID_ENC=de246769-301f-4c22-bad3-17a97e91e27e ]
dracut: + read line
dracut: + str_starts ID_FS_VERSION=1.0 ID_FS_TYPE=
dracut: + [ ID_FS_VERSION=1.0 != ID_FS_VERSION=1.0 ]
dracut: + read line
dracut: + str_starts ID_FS_TYPE=ext4 ID_FS_TYPE=
dracut: + [ ext4 != ID_FS_TYPE=ext4 ]
dracut: + echo ext4
dracut: + break
dracut: + _fs=ext4
dracut: + _fs=ext4
dracut: + [ ext4 = auto ]
dracut: + echo ext4
dracut: + _fs=ext4
dracut: + fsck_able ext4
dracut: + type e2fsck
dracut: + _drv=_drv=e2fsck fsck_drv_com
dracut: + return 0
dracut: + info Checking ext4: /dev/sda10
dracut: + check_quiet
dracut: + [ -z yes ]
dracut: + echo <30>dracut: Checking ext4: /dev/sda10
dracut: + [ yes != yes ]
dracut: + export FSTAB_FILE
dracut: + eval _drv=e2fsck fsck_drv_com
dracut: + _drv=e2fsck fsck_drv_com
dracut: + local _ret
dracut: + local _out
dracut: + strstr -[ynap]
dracut: + [ != ]
dracut: + _fop=-a
dracut: + info issuing e2fsck -a /dev/sda10
dracut: + check_quiet
dracut: + [ -z yes ]
dracut: + echo <30>dracut: issuing e2fsck -a /dev/sda10
dracut: + [ yes != yes ]
dracut: + e2fsck -a /dev/sda10
usb 2-3: New USB device found, idVendor=090c, idProduct=3714
usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 2-3: Product: Lenovo EasyCamera
usb 2-3: Manufacturer: Image Processor
dracut: + _out=/dev/sda10: clean, 4414/393216 files, 122383/1572864 blocks
dracut: + _ret=0
dracut: + fsck_tail
dracut: + [ 0 -gt 0 ]
dracut: + [ 0 -ge 4 ]
dracut: + [ -n /dev/sda10: clean, 4414/393216 files, 122383/1572864 blocks ]
dracut: + vinfo
dracut: + read line
dracut: + echo /dev/sda10: clean, 4414/393216 files, 122383/1572864 blocks
dracut: + info /dev/sda10: clean, 4414/393216 files, 122383/1572864 blocks
dracut: /dev/sda10: clean, 4414/393216 files, 122383/1572864 blocks
dracut: + check_quiet
dracut: + [ -z yes ]
dracut: + echo <30>dracut: /dev/sda10: clean, 4414/393216 files, 122383/1572864 blocks
dracut: + [ yes != yes ]
dracut: + read line
dracut: + [ 0 -ge 2 ]
dracut: + return 0
dracut: Remounting /dev/sda10 with -o noatime,ro
dracut: + return 0
dracut: + _ret=0
dracut: + [ 0 -ne 255 ]
dracut: + echo 0
dracut: + info Remounting /dev/sda10 with -o noatime,ro
dracut: + check_quiet
dracut: + [ -z yes ]
dracut: + echo <30>dracut: Remounting /dev/sda10 with -o noatime,ro
dracut: + [ yes != yes ]
dracut: + vinfo
dracut: + read line
dracut: + mount -t ext4 -o noatime,ro /dev/sda10 /sysroot
usb 8-1: new low-speed USB device number 2 using uhci_hcd
EXT4-fs (sda10): mounted filesystem with ordered data mode. Opts: (null)
dracut: + [ -f /sysroot/forcefsck ]
dracut: + [ -f /sysroot/.autofsck ]
dracut: + ismounted /sysroot
dracut: + read a m a
dracut: + [ / = /sysroot ]
dracut: + read a m a
dracut: + [ /proc = /sysroot ]
dracut: + read a m a
dracut: + [ /sys = /sysroot ]
dracut: + read a m a
dracut: + [ /dev = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/pts = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/shm = /sysroot ]
dracut: + read a m a
dracut: + [ /run = /sysroot ]
dracut: + read a m a
dracut: + [ /sys/fs/fuse/connections = /sysroot ]
dracut: + read a m a
dracut: + [ /sysroot = /sysroot ]
dracut: + return 0
dracut: + usable_root /sysroot
dracut: + local _d
dracut: + [ -d /sysroot ]
dracut: + [ -e /sysroot/proc ]
dracut: + [ -e /sysroot/sys ]
dracut: + [ -e /sysroot/dev ]
usb 8-1: New USB device found, idVendor=0461, idProduct=4d80
usb 8-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
usb 8-1: Product: USB Optical Mouse
input: USB Optical Mouse as /devices/pci0000:00/0000:00:1d.2/usb8/8-1/8-1:1.0/input/input7
generic-usb 0003:0461:4D80.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:1d.2-1/input0
dracut: + return 0
dracut: + break
dracut: + i=1
dracut: + [ 1 -gt 20 ]
dracut: + :
dracut: + ismounted /sysroot
dracut: + read a m a
dracut: + [ / = /sysroot ]
dracut: + read a m a
dracut: + [ /proc = /sysroot ]
dracut: + read a m a
dracut: + [ /sys = /sysroot ]
dracut: + read a m a
dracut: + [ /dev = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/pts = /sysroot ]
dracut: + read a m a
dracut: + [ /dev/shm = /sysroot ]
dracut: + read a m a
dracut: + [ /run = /sysroot ]
dracut: + read a m a
dracut: + [ /sys/fs/fuse/connections = /sysroot ]
dracut: + read a m a
dracut: + [ /sysroot = /sysroot ]
dracut: + return 0
dracut: + usable_root /sysroot
dracut: + local _d
dracut: + [ -d /sysroot ]
dracut: + [ -e /sysroot/proc ]
dracut: + [ -e /sysroot/sys ]
dracut: + [ -e /sysroot/dev ]
dracut: + return 0
dracut: + break
dracut: + vinfo
dracut: + read line
dracut: + echo -n Mounted root filesystem
dracut: + read dev mp rest
dracut: + [ / = /sysroot ]
dracut: + read dev mp rest
dracut: + [ /proc = /sysroot ]
dracut: + read dev mp rest
dracut: + [ /sys = /sysroot ]
dracut: + read dev mp rest
dracut: + [ /dev = /sysroot ]
dracut: + read dev mp rest
dracut: + [ /dev/pts = /sysroot ]
dracut: + read dev mp rest
dracut: + [ /dev/shm = /sysroot ]
dracut: Mounted root filesystem /dev/sda10
dracut: + read dev mp rest
dracut: + [ /run = /sysroot ]
dracut: + read dev mp rest
dracut: + [ /sys/fs/fuse/connections = /sysroot ]
dracut: + read dev mp rest
dracut: + [ /sysroot = /sysroot ]
dracut: + echo /dev/sda10
dracut: + read dev mp rest
dracut: + info Mounted root filesystem /dev/sda10
dracut: + check_quiet
dracut: + [ -z yes ]
dracut: + echo <30>dracut: Mounted root filesystem /dev/sda10
dracut: + [ yes != yes ]
dracut: + read line
dracut: + getarg rd.break=pre-pivot rdbreak=pre-pivot
dracut: + set +x
dracut: + return 1
dracut: + source_hook pre-pivot
dracut: + source_all /lib/dracut/hooks/pre-pivot
dracut: + local f
dracut: + [ /lib/dracut/hooks/pre-pivot ]
dracut: + [ -d //lib/dracut/hooks/pre-pivot ]
dracut: + [ -e //lib/dracut/hooks/pre-pivot/50mount-usr.sh ]
dracut: + . //lib/dracut/hooks/pre-pivot/50mount-usr.sh
dracut: + type info
dracut: + type fsck_single
dracut: + [ -f /sysroot/etc/fstab ]
dracut: + mount_usr
dracut: + local _dev _mp _fs _opts _rest _usr_found _ret _freq _passno
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != ]
dracut: + [ = /usr ]
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: Mounting /usr
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != ]
dracut: + [ = /usr ]
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != # ]
dracut: + continue
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ != ]
dracut: + [ = /usr ]
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ /dev/sda14 != /dev/sda14 ]
dracut: + [ /boot = /usr ]
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ /dev/sda10 != /dev/sda10 ]
dracut: + [ / = /usr ]
dracut: + read _dev _mp _fs _opts _freq _passno
dracut: + [ /dev/sda11 != /dev/sda11 ]
dracut: + [ /usr = /usr ]
dracut: + echo /dev/sda11 /sysroot/usr ext4 noatime 0 0
dracut: + _usr_found=1
dracut: + break
dracut: + [ x1 != x ]
dracut: + [ 0 != 0 ]
dracut: + :
dracut: + _ret=0
dracut: + echo 0
dracut: + [ 0 -ne 255 ]
dracut: + info Mounting /usr
dracut: + check_quiet
dracut: + [ -z yes ]
dracut: + echo <30>dracut: Mounting /usr
dracut: + [ yes != yes ]
dracut: + mount /sysroot/usr
dracut: + vinfo
dracut: + read line
EXT4-fs (sda11): mounted filesystem with ordered data mode. Opts: (null)
dracut: + [ -e //lib/dracut/hooks/pre-pivot/90plymouth-newroot.sh ]
dracut: + . //lib/dracut/hooks/pre-pivot/90plymouth-newroot.sh
dracut: + [ -x /bin/plymouth ]
dracut: + /bin/plymouth --newroot=/sysroot
dracut: + getarg real_init=
dracut: + set +x
dracut: + return 1
dracut: + getarg init=
dracut: + set +x
dracut: + return 1
dracut: + getargs rd.distroinit=
dracut: + set +x
dracut: + return 1
dracut: + [ -n ]
dracut: + continue
dracut: + [ -n ]
dracut: + continue
dracut: + [ -n /sbin/init ]
dracut: + readlink -f /sysroot//sbin/init
dracut: + __p=/sysroot/sbin/init
dracut: + [ -x /sysroot/sbin/init ]
dracut: + INIT=/sbin/init
dracut: + break
dracut: + [ /sbin/init ]
dracut: + [ 171 -lt 168 ]
dracut: + udevadm control --exit
dracut: + udevadm info --cleanup-db
dracut: + export RD_TIMESTAMP
dracut: + set +x
dracut: + return 1
dracut: + set +x
dracut: + [ -d /sysroot/run ]
dracut: + NEWRUN=/sysroot/run
dracut: + mount --bind /run /sysroot/run
dracut: + NEWINITRAMFSROOT=/sysroot/run/initramfs
dracut: + [ /sysroot/run/initramfs/lib -ef /lib ]
dracut: + wait_for_loginit
dracut: + set +x
dracut: Switching root
udevd[1646]: starting version 171
Disabling lock debugging due to kernel taint
nvidia: module license 'NVIDIA' taints kernel.
snd_hda_intel 0000:00:1b.0: power state changed by ACPI to D0
snd_hda_intel 0000:00:1b.0: power state changed by ACPI to D0
snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
snd_hda_intel 0000:00:1b.0: setting latency timer to 64
cfg80211: Calling CRDA to update world regulatory domain
snd_hda_intel 0000:01:00.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
hda_intel: Disabling MSI
snd_hda_intel 0000:01:00.1: setting latency timer to 64
Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
Copyright(c) 2003-2011 Intel Corporation
iwlwifi 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
iwlwifi 0000:04:00.0: setting latency timer to 64
iwlwifi 0000:04:00.0: pci_resource_len = 0x00002000
iwlwifi 0000:04:00.0: pci_resource_base = f9980000
iwlwifi 0000:04:00.0: HW Revision ID = 0x0
iwlwifi 0000:04:00.0: pci_enable_msi failed(0Xffffffff)
iwlwifi 0000:04:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: device EEPROM VER=0x11f, CALIB=0x4
iwlwifi 0000:04:00.0: Device SKU: 0Xf0
iwlwifi 0000:04:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-5.ucode' failed.
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-4.ucode' failed.
iwlwifi 0000:04:00.0: request for firmware file 'iwlwifi-5000-3.ucode' failed.
iwlwifi 0000:04:00.0: Firmware has old API version, expected v5, got v2.
iwlwifi 0000:04:00.0: New firmware can be obtained from http://www.intellinuxwireless.org/.
iwlwifi 0000:04:00.0: loaded firmware version 8.24.2.12
Registered led device: phy0-led
ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
HDMI status: Codec=0 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=1 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=2 Pin=5 Presence_Detect=0 ELD_Valid=0
HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
nvidia 0000:01:00.0: power state changed by ACPI to D0
nvidia 0000:01:00.0: power state changed by ACPI to D0
nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
nvidia 0000:01:00.0: setting latency timer to 64
vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
NVRM: loading NVIDIA UNIX x86 Kernel Module 290.10 Wed Nov 16 19:27:25 PST 2011
Real Time Clock Driver v1.12b
vboxdrv: Found 2 processor cores.
vboxdrv: fAsync=0 offMin=0x1b8 offMax=0x187e
vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
vboxdrv: Successfully loaded version 4.1.8 (interface 0x00190000).
EXT4-fs (sda10): re-mounted. Opts: (null)
EXT4-fs (sda14): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda12): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (sda13): mounted filesystem with ordered data mode. Opts: (null)
Adding 2096124k swap on /dev/sda9. Priority:-1 extents:1 across:2096124k
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: Radio type=0x1-0x2-0x0
iwlwifi 0000:04:00.0: L1 Enabled; Disabling L0S
iwlwifi 0000:04:00.0: Radio type=0x1-0x2-0x0
ata1.00: configured for UDMA/133
ata1: EH complete
EXT4-fs (sda10): re-mounted. Opts: commit=0
EXT4-fs (sda11): re-mounted. Opts: commit=0
EXT4-fs (sda14): re-mounted. Opts: commit=0
EXT4-fs (sda12): re-mounted. Opts: commit=0
EXT4-fs (sda13): re-mounted. Opts: commit=0
wlan0: authenticate with c8:3a:35:08:34:c8 (try 1)
wlan0: authenticated
wlan0: waiting for beacon from c8:3a:35:08:34:c8
wlan0: beacon received
wlan0: associate with c8:3a:35:08:34:c8 (try 1)
wlan0: RX AssocResp from c8:3a:35:08:34:c8 (capab=0x431 status=0 aid=2)
wlan0: associated
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2012-04-06 16:09 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-03 5:43 [gentoo-user] sys-boot/plymouth could not work 张春江
2012-04-03 17:19 ` Canek Peláez Valdés
2012-04-04 4:01 ` 张春江
2012-04-04 4:06 ` Canek Peláez Valdés
2012-04-04 5:01 ` 张春江
2012-04-04 7:03 ` Canek Peláez Valdés
2012-04-04 7:32 ` 张春江
2012-04-04 17:28 ` Canek Peláez Valdés
2012-04-04 17:29 ` Canek Peláez Valdés
2012-04-05 7:47 ` 张春江
2012-04-05 18:10 ` Canek Peláez Valdés
2012-04-05 18:32 ` Joost Roeleveld
2012-04-05 18:50 ` Canek Peláez Valdés
2012-04-05 19:03 ` Michael Mol
2012-04-05 19:10 ` Canek Peláez Valdés
2012-04-06 10:18 ` Jorge Martínez López
2012-04-06 16:06 ` [gentoo-user] sys-boot/plymouth could not work[solved] 张春江
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox