aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib/functions/boot.sh
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2011-02-20 22:39:08 +0000
committerMichael Büsch <mb@bu3sch.de>2011-02-20 22:39:08 +0000
commit7897ae04f7a3aedc71994a1a8dd2f523a85ec5d1 (patch)
tree1b8f7ed2682eda8da27b5790c9e6fa2492dc386b /package/base-files/files/lib/functions/boot.sh
parent50725d938c7e406ac2d951e8258da62f8a2e1e75 (diff)
downloadmaster-187ad058-7897ae04f7a3aedc71994a1a8dd2f523a85ec5d1.tar.gz
master-187ad058-7897ae04f7a3aedc71994a1a8dd2f523a85ec5d1.tar.bz2
master-187ad058-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/lib/functions/boot.sh')
-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 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() {