diff options
author | Michael Büsch <mb@bu3sch.de> | 2011-02-20 22:39:08 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2011-02-20 22:39:08 +0000 |
commit | 7897ae04f7a3aedc71994a1a8dd2f523a85ec5d1 (patch) | |
tree | 1b8f7ed2682eda8da27b5790c9e6fa2492dc386b /package/base-files/files | |
parent | 50725d938c7e406ac2d951e8258da62f8a2e1e75 (diff) | |
download | upstream-7897ae04f7a3aedc71994a1a8dd2f523a85ec5d1.tar.gz upstream-7897ae04f7a3aedc71994a1a8dd2f523a85ec5d1.tar.bz2 upstream-7897ae04f7a3aedc71994a1a8dd2f523a85ec5d1.zip |
base-files: Add "-o noatime" to mount wrapper
noatime is cheaper than default relatime.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25634 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files')
-rw-r--r-- | package/base-files/files/lib/functions/boot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/functions/boot.sh b/package/base-files/files/lib/functions/boot.sh index 66423d9aad..a883241350 100644 --- a/package/base-files/files/lib/functions/boot.sh +++ b/package/base-files/files/lib/functions/boot.sh @@ -3,7 +3,7 @@ # Copyright (C) 2010 Vertical Communications mount() { - /bin/busybox mount "$@" + /bin/busybox mount -o noatime "$@" } boot_hook_splice_start() { |