aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Gundersen <teg@jklm.no>2012-06-11 01:58:00 +0200
committerTom Gundersen <teg@jklm.no>2012-06-11 01:58:00 +0200
commitb4d7c53b80faa2943da48ba9baa3ecfc200965c8 (patch)
tree90c36f6e58c2c830013df443f0d2dcd154318363
parenta6c9a6926840a7e37fe00503305d9d47086963a7 (diff)
downloadinitscripts-b4d7c53b80faa2943da48ba9baa3ecfc200965c8.tar.xz
rc.sysinit: remove warnings
These were useful in a transition period, but no need to keep them around. If /usr is not mounted we probably won't even get this far. If devtmpfs is not supported the previous mount of /dev would have given an errormessage. This was prompted by a suggeston from Igor Podlesny to improve on the error handling, which made me realise we could drop it. Signed-off-by: Tom Gundersen <teg@jklm.no>
-rwxr-xr-xrc.sysinit8
1 files changed, 0 insertions, 8 deletions
diff --git a/rc.sysinit b/rc.sysinit
index 58f3216..906135c 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -38,14 +38,6 @@ run_hook sysinit_start
# log all console messages
bootlogd -p /run/bootlogd.pid
-if [[ ! -a /usr/lib ]] ; then
- printf "${C_FAIL}/usr is not mounted. This is not supported.${C_OTHER}\n"
-fi
-
-if ! grep -q devtmpfs /proc/filesystems; then
- printf "${C_FAIL}Your kernel does not have devtmpfs support. This is not supported.${C_OTHER}\n"
-fi
-
HWCLOCK_PARAMS="--systz"
case $HARDWARECLOCK in
"") ;;