diff options
author | Thomas Bächler <thomas@archlinux.org> | 2007-02-10 09:14:34 +0000 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2007-02-10 09:14:34 +0000 |
commit | b04f18c15cef8f6d48aa0aa63fa8104b551fe1db (patch) | |
tree | cf0917b3cc702e7b043e589b3ecaf099095685ae | |
parent | fff26e7f1fecaec1bf4c07cc07d1a426b160168b (diff) |
fixed typo, fixed verbose booting0.8
-rwxr-xr-x | rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ mount -n -t proc none /proc # anything more serious than KERN_WARNING goes to the console # 'verbose' cmdline parameter enables more messages -if grep -qw " verbose" /proc/cmdline; then +if grep -q " verbose" /proc/cmdline; then /bin/dmesg -n 8 else /bin/dmesg -n 3 @@ -186,7 +186,7 @@ if [ -x /sbin/fsck ]; then echo echo "********************** REBOOT REQUIRED *********************" echo "* *" - echo "* The sytem will be rebooted automatically in 15 seconds. *" + echo "* The system will be rebooted automatically in 15 seconds. *" echo "* *" echo "************************************************************" echo |