diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-05 20:10:27 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-11-05 20:10:27 -0800 |
commit | c3075bb2c67e4fa0e6a0a077e9656a2f5901858f (patch) | |
tree | 8e87ae67f2e543c7ba072be35f77adca81230968 /scripts | |
parent | ec12deca1c129b1a3d62071d27d1fb5ce38df79b (diff) | |
download | vyatta-cfg-system-c3075bb2c67e4fa0e6a0a077e9656a2f5901858f.tar.gz vyatta-cfg-system-c3075bb2c67e4fa0e6a0a077e9656a2f5901858f.zip |
Mount root filesystem with noatime
Don't need to update filesystem on each file access.
This improves boot time and reduces wear on CF disks
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-system | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-system b/scripts/install-system index 6b5519a5..8ef02cc9 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -749,7 +749,7 @@ install_root_filesystem () { echo "Unable to read filesystem UUID. Exiting." exit 1 else - echo -e "UUID=$uuid\t/\text3\tdefaults\t0 1" >> $rootfsdir/etc/fstab + echo -e "UUID=$uuid\t/\text3\tnoatime\t0 1" >> $rootfsdir/etc/fstab fi #setup the hostname file |