summaryrefslogtreecommitdiffstats
path: root/package
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
commit16a300ea6623b0d54551585cd65675c265bcf299 (patch)
tree1c1433ebbdc1ea6db9c99b9bb3d82fb9f33a3a99 /package
parentad6c7066a6a7d64b4adf2c8d7c80faaf23e1074b (diff)
downloadmaster-31e0f0ae-16a300ea6623b0d54551585cd65675c265bcf299.tar.gz
master-31e0f0ae-16a300ea6623b0d54551585cd65675c265bcf299.tar.bz2
master-31e0f0ae-16a300ea6623b0d54551585cd65675c265bcf299.zip
base-files: Add "-o noatime" to mount wrapper
noatime is cheaper than default relatime. SVN-Revision: 25634
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 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() {