Revision d5f60dba
Added by Scott Ullrich over 18 years ago
etc/rc | ||
---|---|---|
38 | 38 |
/etc/rc.embedded |
39 | 39 |
fi |
40 | 40 |
|
41 |
# Enable console output if its muted. |
|
42 |
/sbin/conscontrol mute off >/dev/null |
|
43 |
|
|
44 | 41 |
# Enable Softupdates if enablesoftupdates is found in config.xml |
45 | 42 |
SOFTUPDATES=`/usr/bin/grep "enablesoftupdates" /cf/conf/config.xml | wc -l` |
46 | 43 |
if [ $SOFTUPDATES -gt 0 ]; then |
47 | 44 |
/sbin/tunefs -n enable / 2>/dev/null |
48 | 45 |
fi |
49 | 46 |
|
47 |
# Enable console output if its muted. |
|
48 |
/sbin/conscontrol mute off >/dev/null |
|
49 |
|
|
50 | 50 |
# Mount memory file system if it exists |
51 | 51 |
echo -n "Mounting filesystems..." |
52 | 52 |
/sbin/mount -a |
Also available in: Unified diff
Twiddle softupdates bits during console muting.