summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authormb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-02-20 22:39:08 +0000
committermb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-02-20 22:39:08 +0000
commitec5075b896db066cf03f4ea4fd321602c761fe97 (patch)
tree1b8f7ed2682eda8da27b5790c9e6fa2492dc386b /package
parentd16223ed9e5b0373ee24792e0d7f58073117f69f (diff)
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')
-rw-r--r--package/base-files/files/lib/functions/boot.sh2
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 66423d9aa..a88324135 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() {