Lines 37-42
Link Here
|
37 |
HOSTNAME=localhost |
37 |
HOSTNAME=localhost |
38 |
fi |
38 |
fi |
39 |
|
39 |
|
|
|
40 |
# Read in config data |
41 |
SourceIfNotEmpty /etc/sysconfig/rc.sysinit |
42 |
|
40 |
# Set system font |
43 |
# Set system font |
41 |
ExecIfExecutable /sbin/setsysfont >/dev/null 2>&1 && SETSYSFONT_DONE=1 || SETSYSFONT_DONE= |
44 |
ExecIfExecutable /sbin/setsysfont >/dev/null 2>&1 && SETSYSFONT_DONE=1 || SETSYSFONT_DONE= |
42 |
|
45 |
|
Lines 185-191
Link Here
|
185 |
|
188 |
|
186 |
# Remount the root filesystem read-write |
189 |
# Remount the root filesystem read-write |
187 |
splash_update remount 2 |
190 |
splash_update remount 2 |
188 |
action "Remounting root filesystem in read/write mode:" mount -n -o remount,rw / |
191 |
if [ -z ${REMOUNT_ROOT_RW} ]; then |
|
|
192 |
action "Remounting root filesystem in read/write mode:" mount -n -o remount,rw / |
193 |
else |
194 |
action "Remounting root filesystem in read/write mode:" $REMOUNT_ROOT_RW |
195 |
fi |
189 |
|
196 |
|
190 |
# The root filesystem is now read-write, so we can now log via syslog() directly |
197 |
# The root filesystem is now read-write, so we can now log via syslog() directly |
191 |
[ -z "$IN_INITLOG" ] || IN_INITLOG= |
198 |
[ -z "$IN_INITLOG" ] || IN_INITLOG= |