fix mountproc check for /sys and remove 2.4 kernel check code
This commit is contained in:
parent
bf8757b8e2
commit
24c9810503
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
# mountproc - mount /proc and /sysfs (kernel 2.6.x only)
|
||||
# Copyright (C) 2004-2010 Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
# Copyright (C) 2004-2011 Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
# Copyright (C) 2004-2009 Davide Madrisan <davide.madrisan@gmail.com>
|
||||
|
||||
. /etc/sysconfig/rc
|
||||
@ -11,8 +11,6 @@ LC_ALL=$LANG
|
||||
TEXTDOMAIN=initscripts
|
||||
TEXTDOMAINDIR=/usr/share/locale/
|
||||
|
||||
KERNELMIN=`uname -r | sed -e 's,[^\.]*\.,,' -e 's,\..*,,'`
|
||||
|
||||
if [ ! -e /proc/version ]; then
|
||||
echo -n "Mounting proc file system: "
|
||||
mount -n -t proc proc /proc
|
||||
@ -25,7 +23,7 @@ progress=5
|
||||
$PLYMOUTH message --text=$"System booting, please wait..."
|
||||
$PLYMOUTH update --status="$progress"
|
||||
|
||||
if [ "$KERNELMIN" -ge 6 -a -z "`mount | grep "^sysfs "`" ]; then
|
||||
if [ ! -e /sys/kernel ]; then
|
||||
echo -n "Mounting sys file system: "
|
||||
mount -n -t sysfs sysfs /sys
|
||||
evaluate_retval
|
||||
|
Loading…
Reference in New Issue
Block a user