You are not logged in.
Evertime I boot uvdev hangs on this error and then continue flawless. It seems from 3.1.X kernel
seq 1271 '/devices/pci0000:00/0000:00:1c.0/0000:02:00.0' killed
What is this devices?
Last edited by archel (2012-03-03 22:41:11)
Offline
Take a look at this thread. It just fixed my problem:
https://bbs.archlinux.org/viewtopic.php?id=134012&p=5
In short, do this:
Noting this from your post:
seq 1271 '/devices/pci0000:00/0000:00:1c.0/0000:02:00.0' killed
^^^^^^^^
do:
lspci -s 0000:02:00.0
You will get something like this:
lspci -vin -s 0000:00:1f.5
00:1f.5 Class 0401: Device 8086:24c5 (rev 01)
Subsystem: Device 1028:011d
Flags: bus master, medium devsel, latency 0, IRQ 5
I/O ports at b800 [size=256]
I/O ports at bc40 [size=64]
Memory at f4fff800 (32-bit, non-prefetchable) [size=512]
Memory at f4fff400 (32-bit, non-prefetchable) [size=256]
Capabilities: [50] Power Management version 2
Kernel driver in use: snd_intel8x0Note the Kernel driver.
In this case, (your driver will be different), blacklist it in /etc/modprobe.d/modprobe.conf with:
blacklist snd_intel8x0
Then load it in /etc/rc.local with:
modprobe snd_intel8x0
This routine fixed my problem.
Others note that just adding the kernel driver to the modules line in /etc/rc.conf fixed their problem. But that didn't work for me nor many others. So you might try both.
Good luck.
Offline
Thank you!!!
I fixed it by adding the kernel driver in /etc/rc.conf
in my case was the Broadcom wireless!!
Thanks!
Offline