diff options
author | Thomas Bächler <thomas@archlinux.org> | 2006-12-16 22:03:29 +0000 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2006-12-16 22:03:29 +0000 |
commit | 9b58da29d7ce93bf3dc258a28d2fae00eb181f7e (patch) | |
tree | 6cdc8ad24e4146b32d31355a08ce6642337f9773 /rc.single | |
parent | 567edd5aa95d5728b50f9fff6d71c368a7f3966a (diff) |
rc.sysinit, rc.shutdown:
- Code cleanup
- Added "verbose" commandline option for debugging
- Fixed #5968
- Fixed #4648
Diffstat (limited to 'rc.single')
-rwxr-xr-x | rc.single | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,14 +36,14 @@ if [ "$PREVLEVEL" != "N" ]; then if [ -x /etc/start_udev -a -d /sys/block ]; then # We have a start_udev script and /sys appears to be mounted, use UDev - status "Starting UDev Daemon" /etc/start_udev + status "Starting UDev Daemon" /etc/start_udev if [ "`pidof -o %PPID /sbin/udevd`" ]; then # If an old udevd is kicking around, we'll have to remount pts and shm umount /dev/shm /dev/pts >/dev/null 2>&1 mount /dev/pts mount /dev/shm fi - else + else # Static /dev, our last resort status "Using static /dev filesystem" /bin/true fi |