public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.6.12 udev hangs at boot
@ 2005-06-18 12:32 Nick Warne
  2005-06-18 13:03 ` Alistair John Strachan
  2005-06-18 16:53 ` Jeff Garzik
  0 siblings, 2 replies; 36+ messages in thread
From: Nick Warne @ 2005-06-18 12:32 UTC (permalink / raw)
  To: linux-kernel

Hi All,

2.6.12, GCC 3.4.4 on Slackware 10 base

New 2.6.12 build hangs at initialising udev dynamic device directory on boot.  
I used make oldconfig from 2.6.11.12, and all the new changes I selected N, 
all bar nvidia FB support (I built several times, as I have a GeForce4 card, 
so suspected the nvidia FB support at first and turned off).

2.6.11.12 works perfect.

I have just spent an hour or so investigating, but I am none the wiser.

Ideas what could be causing this?

Nick
-- 
"When you're chewing on life's gristle,
Don't grumble, Give a whistle..."

^ permalink raw reply	[flat|nested] 36+ messages in thread
* Re: 2.6.12 udev hangs at boot
@ 2005-06-18 15:32 Nick Warne
  2005-06-21  6:40 ` Greg KH
  0 siblings, 1 reply; 36+ messages in thread
From: Nick Warne @ 2005-06-18 15:32 UTC (permalink / raw)
  To: linux-kernel

Andrew Walrond wrote:

> On Saturday 18 June 2005 14:44, Nick Warne wrote:
>> >
>> > I had this problem because I was running an ancient version of udev
>> > (0.34, versus 0.58, at the time..). Try upgrading udev if it's out of
>> > date.
>>
>> Thanks, that worked :-)
>>
> 
> FWIW In the udev 058 announcement, Greg said:
> 
> "Note, if you are running a kernel newer than 2.6.12-rc4 (including the
> -mm releases) and you have any custom udev rules, you MUST upgrade to
> the latest version to allow udev to work properly.  This change happened
> because of a previously-unrealized reliance in libsysfs on the presence
> of a useless sysfs file that has recently been removed.  Hopefully the
> libsysfs people will be releasing a new version shortly with this change
> in it for those packages who rely on it."
> 
> Just a reminder because I bet many people will get caught out by this!

Yes - and also the download link on the main udev page is broke :-/

Here is where to get the latest udev build:

http://www.kernel.org/pub/linux/utils/kernel/hotplug/

Nick
-- 
"When you're chewing on life's gristle,
Don't grumble, Give a whistle..."

^ permalink raw reply	[flat|nested] 36+ messages in thread
* Re: 2.6.12 udev hangs at boot
@ 2005-06-19 15:39 Nick Warne
  2005-06-19 21:23 ` Andrew Haninger
  2005-06-21  6:45 ` Greg KH
  0 siblings, 2 replies; 36+ messages in thread
From: Nick Warne @ 2005-06-19 15:39 UTC (permalink / raw)
  To: linux-kernel

Andrew Haninger wrote:

> Anyway, just a heads-up to anyone else experiencing a breaking of
> 'less' and missing /dev files.

Yep... I had 'less' break too (you will find 'man' is broke also, rolling on 
from that).

It turns out to be a problem (typo?) in  /etc/udev/rules.d/udev.rules

Try changing:

# pty devices
KERNEL="pty[p-za-e][0-9a-f]*", NAME="pty/m%n", SYMLINK="%k"
KERNEL="tty[p-za-e][0-9a-f]*", NAME="tty/s%n", SYMLINK="%k"

to:

# pty devices
KERNEL="pty[p-za-e][0-9a-f]*", NAME="pty/m%n", SYMLINK="%k"
KERNEL="tty[p-za-e][0-9a-f]*", NAME="pty/s%n", SYMLINK="%k"

(change is in second line tty -> pty)

As to the missing /dev/ entries - remember you are using udev now - they 
appear 'on the fly' as and when you plug something in - ensure you have set 
'hotplug' to start.

Nick
-- 
"When you're chewing on life's gristle,
Don't grumble, Give a whistle..."

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2005-06-21 17:14 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-18 12:32 2.6.12 udev hangs at boot Nick Warne
2005-06-18 13:03 ` Alistair John Strachan
2005-06-18 13:44   ` Nick Warne
2005-06-18 14:58     ` Andrew Walrond
2005-06-18 16:53 ` Jeff Garzik
2005-06-18 17:06   ` Nick Warne
2005-06-19 15:04     ` Andrew Haninger
2005-06-20 10:04     ` Denis Vlasenko
2005-06-20 10:17       ` Stefan Smietanowski
2005-06-20 11:13         ` Denis Vlasenko
2005-06-20 16:25           ` Stefan Smietanowski
2005-06-20 16:39           ` Bill Davidsen
2005-06-20 16:48       ` Greg KH
2005-06-20 17:24         ` Jeff Garzik
2005-06-20 17:34           ` Greg KH
2005-06-20 19:00             ` Nick Warne
2005-06-20 19:21               ` Greg KH
2005-06-20 19:32                 ` Nick Warne
2005-06-20 19:42                   ` David Lang
2005-06-21  6:28                     ` Greg KH
2005-06-21  6:31                       ` David Lang
2005-06-21  6:47                         ` Greg KH
2005-06-20 19:46                 ` Jesper Juhl
2005-06-20 19:34               ` Andrew Haninger
2005-06-20 19:49             ` Josh Boyer
2005-06-21  6:42               ` Greg KH
2005-06-20 19:24           ` Olaf Hering
2005-06-20 21:26         ` Daniel Barkalow
2005-06-20 22:14           ` Jesper Juhl
2005-06-20 22:26           ` Tomasz Torcz
  -- strict thread matches above, loose matches on Subject: below --
2005-06-18 15:32 Nick Warne
2005-06-21  6:40 ` Greg KH
2005-06-19 15:39 Nick Warne
2005-06-19 21:23 ` Andrew Haninger
2005-06-21  6:45 ` Greg KH
2005-06-21 17:06   ` Nick Warne

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox