diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-04-11 06:32:39 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-11 06:32:39 +0000 |
commit | 4cbd322d0f3861f9186f104d126844c5442f9a25 (patch) | |
tree | 3b537e6ded2db48e3703581d5f52124da355d357 /packages/nslu2-binary-only/unslung-rootfs/remount-noatime.patch | |
parent | 3b3f3f4da734d0f86331f1469c6c391dbda1368c (diff) |
unslung-kernel, unslung-image: Now that 6.8-beta is released, moved mainline to R63 and dropped R29 (people can get it from SVN if they want to build old versions)
Diffstat (limited to 'packages/nslu2-binary-only/unslung-rootfs/remount-noatime.patch')
-rw-r--r-- | packages/nslu2-binary-only/unslung-rootfs/remount-noatime.patch | 48 |
1 files changed, 34 insertions, 14 deletions
diff --git a/packages/nslu2-binary-only/unslung-rootfs/remount-noatime.patch b/packages/nslu2-binary-only/unslung-rootfs/remount-noatime.patch index e728657ffa..a39dc678b5 100644 --- a/packages/nslu2-binary-only/unslung-rootfs/remount-noatime.patch +++ b/packages/nslu2-binary-only/unslung-rootfs/remount-noatime.patch @@ -1,29 +1,49 @@ ---- 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 @@ +--- nslu2-linksys-ramdisk-2.3r63/etc/rc.d/rc.1.orig 2006-02-24 20:48:18.000000000 -0600 ++++ nslu2-linksys-ramdisk-2.3r63/etc/rc.d/rc.1 2006-02-24 21:13:01.000000000 -0600 +@@ -3,6 +3,24 @@ #/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 ++ dsk="nodisk" ++ /bin/grep -q "^/dev/sda1 / ext3" /proc/mounts ++ if ( [ $? -eq 0 ] ) ; then ++ dsk="sda" ++ else ++ /bin/grep -q "^/dev/sdb1 / ext3" /proc/mounts ++ if ( [ $? -eq 0 ] ) ; then ++ dsk="sdb" ++ fi ++ fi ++ /bin/echo "Remounting /dev/${dsk}1 as ext3flash:" ++ /bin/mount -o remount,rw,noatime /dev/${dsk}1 ++ /bin/echo "Remounting /dev/${dsk}2 as ext3flash:" ++ /bin/mount -o remount,rw,sync,noatime /dev/${dsk}2 + /bin/echo "Removing swap from ext3flash:" -+ /sbin/swapoff /dev/sda3 ++ /sbin/swapoff /dev/${dsk}3 +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 @@ +--- nslu2-linksys-ramdisk-2.3r63/etc/rc.d/rc.quota.orig 2006-02-24 20:48:31.000000000 -0600 ++++ nslu2-linksys-ramdisk-2.3r63/etc/rc.d/rc.quota 2006-02-24 21:12:46.000000000 -0600 +@@ -8,6 +8,21 @@ echo "Done." fi +if ( [ -f /.ext3flash ] ) ; then -+ /bin/echo "Remounting /dev/sda1 as ext3flash:" -+ /bin/mount -o remount,rw,noatime /dev/sda1 ++ dsk="nodisk" ++ /bin/grep -q "^/dev/sda1 / ext3" /proc/mounts ++ if ( [ $? -eq 0 ] ) ; then ++ dsk="sda" ++ else ++ /bin/grep -q "^/dev/sdb1 / ext3" /proc/mounts ++ if ( [ $? -eq 0 ] ) ; then ++ dsk="sdb" ++ fi ++ fi ++ /bin/echo "Remounting /dev/${dsk}1 as ext3flash:" ++ /bin/mount -o remount,rw,noatime /dev/${dsk}1 +fi + if [ -x "/usr/bin/quotaon" ] |