blob: e728657ffa88346b33dc39a32766695811ec0f86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- nslu2-linksys-ramdisk-2.3r25/etc/rc.d/rc.1~ 2004-11-09 21:45:52.000000000 +1030
+++ nslu2-linksys-ramdisk-2.3r25/etc/rc.d/rc.1 2004-11-09 21:44:27.000000000 +1030
@@ -27,6 +27,14 @@
#/sbin/ifconfig ixp0 hw ether 00:C0:02:01:01:04
/bin/echo "Starting Set CGI_ds.conf:"; /etc/rc.d/rc.bootbin; check_status
+if ( [ -f /.ext3flash ] ) ; then
+ /bin/echo "Remounting /dev/sda1 as ext3flash:"
+ /bin/mount -o remount,rw,noatime /dev/sda1
+ /bin/echo "Remounting /dev/sda2 as ext3flash:"
+ /bin/mount -o remount,rw,noatime /dev/sda2
+ /bin/echo "Removing swap from ext3flash:"
+ /sbin/swapoff /dev/sda3
+fi
/bin/echo "Restore time and timezone:"; /etc/rc.d/rc.rstimezone; check_status
/bin/echo "Restore usrgrpshares:"; /etc/rc.d/rc.reset_usrgrpshare; check_status
--- nslu2-linksys-ramdisk-2.3r25/etc/rc.d/rc.quota~ 2004-11-11 00:05:21.000000000 +1030
+++ nslu2-linksys-ramdisk-2.3r25/etc/rc.d/rc.quota 2004-11-11 00:04:52.000000000 +1030
@@ -14,6 +14,11 @@
echo "Done."
fi
+if ( [ -f /.ext3flash ] ) ; then
+ /bin/echo "Remounting /dev/sda1 as ext3flash:"
+ /bin/mount -o remount,rw,noatime /dev/sda1
+fi
+
if [ -x "/usr/bin/quotaon" ]
then
echo "Turning on quota."
|