On Sunday 26 November 2006 2:53 pm, Alessandro Zummo wrote: > On Sun, 26 Nov 2006 22:37:10 +0100 > "Joakim Tjernlund" <[EMAIL PROTECTED]> wrote: > > > > the concept of static numbers is quite old... > > > > Yes it is old, but is the old way unsupported now? I have an embedded target > > which is using the old static /dev directory, do I need to make > > it udev aware to use newer features like the rtc subsystem? > > That can be a good option.
And it's simple enough. You might not even need to run "udevd" if you don't have hotpluggable devices ... just the startup stuff, which you might not need after the first boot. (Since the set of devices will be stable, /dev/* won't change, and you can speed up system boot by that small delta.) I certainly run udev on some small systems, with /sbin/hotplug as appended. Getting udev set up, and handling coldplug, is left as an exercise for the reader. :) - Dave #!/bin/ash # # "hotplug" initializes devices ... hardware drivers get modprobed and # create class devices. then later udev handles /dev node creation and # invokes programs that make userspace aware of the new device node. # # install as /sbin/hotplug if [ ! -d /sys ] then exit 1 fi cd /sys if [ "$ACTION" = "add" -a "$SUBSYSTEM" = "mmc" ] then # MMC doesn't support modalias yet, but this is # the only choice until we have SDIO support. MODALIAS=mmc_block fi if [ "$ACTION" = "add" -a -n "$MODALIAS" -a ! -L $DEVPATH/driver ] then # most important subsystems now have $MODALIAS support: modprobe -q $MODALIAS fi if [ -n "$DEVPATH" ] then /sbin/udevsend $1 fi - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/