Imported Debian patch 2.3.1-83
[debian/makedev] / debian / init.d
index c3f1dec0222de46c921584540b70c0bb9a8b4fc9..d1d01cf0f6750e8542a40e3c1ce69967eb81f409 100644 (file)
@@ -1,5 +1,14 @@
 #! /bin/sh
 
+### BEGIN INIT INFO
+# Provides:            makedev
+# Required-Start:      $local_fs
+# Required-Stop:       $local_fs
+# Default-Start:       2 3 4 5
+# Default-Stop:                0 1 6
+# Short-Description:   Creates device files in /dev
+### END INIT INFO
+
 N=/etc/init.d/makedev
 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
 
@@ -10,13 +19,13 @@ case "$1" in
        test -L /dev/MAKEDEV || ln -fs /sbin/MAKEDEV /dev/MAKEDEV
 
        # create dvb-devices, if the dvb-directory allready exists, and 
-       # no devfs is used (this a workaround for the changed major-number
+       # no devfs or udev is in use (workaround for the changed major-number
        # of the dvb-devices, introduced in kernel 2.6.8, to be able to 
        # switch between kernels <= 2.6.7 and >= 2.6.8, without manual 
        # recreation of the devices (MAKEDEV dvb checks the kernel-version 
        # and uses the correct major-number))
        
-       if [ ! -e /dev/.devfsd ]; then
+       if [ ! -e /dev/.devfsd -a ! -e /dev/.udevdb -a ! -e /dev/.udev ]; then
                if [ -d /dev/dvb ]; then
                        cd /dev && ./MAKEDEV dvb
                fi