aboutsummaryrefslogtreecommitdiff
path: root/rc.sysinit
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2008-09-14 19:41:14 +0200
committerThomas Bächler <thomas@archlinux.org>2008-09-14 19:41:14 +0200
commitd399979d08be1ae2cc8e4ab60a68c57b120d08a0 (patch)
tree342c3ab2b3c3de493348093d77cc7e21e4f6b010 /rc.sysinit
parent119b8df1fb1258231750309f01e747e72f382493 (diff)
downloadinitscripts-d399979d08be1ae2cc8e4ab60a68c57b120d08a0.tar.xz
Revert "Create udev required device nodes if missing"
This reverts commit 119b8df1fb1258231750309f01e747e72f382493. These nodes are created like 10 lines above, the [ -f ... ] check would always return false anyway (-f == regular file)
Diffstat (limited to 'rc.sysinit')
-rwxr-xr-xrc.sysinit5
1 files changed, 0 insertions, 5 deletions
diff --git a/rc.sysinit b/rc.sysinit
index dc88be7..6ac22c4 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -75,11 +75,6 @@ if [ -x /sbin/udevadm -a -d /sys/block ]; then
# We have udev and /sys appears to be mounted, use UDev
#status "Starting UDev Daemon" /etc/start_udev init
- #Create these required device nodes if they're missing
- [ -f /dev/console ] || /bin/mknod /dev/console c 5 1
- [ -f /dev/null ] || /bin/mknod -m 666 /dev/null c 1 3
- [ -f /dev/zero ] || /bin/mknod -m 666 /dev/zero c 1 5
-
stat_busy "Starting UDev Daemon"
/sbin/udevd --daemon
stat_done