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 | 16a300ea6623b0d54551585cd65675c265bcf299 (patch) | |
tree | 1c1433ebbdc1ea6db9c99b9bb3d82fb9f33a3a99 /package | |
parent | ad6c7066a6a7d64b4adf2c8d7c80faaf23e1074b (diff) | |
download | upstream-16a300ea6623b0d54551585cd65675c265bcf299.tar.gz upstream-16a300ea6623b0d54551585cd65675c265bcf299.tar.bz2 upstream-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.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() { |