From: Michael Büsch Date: Sun, 20 Feb 2011 22:39:08 +0000 (+0000) Subject: base-files: Add "-o noatime" to mount wrapper X-Git-Tag: reboot~17497 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=16a300ea6623b0d54551585cd65675c265bcf299 base-files: Add "-o noatime" to mount wrapper noatime is cheaper than default relatime. SVN-Revision: 25634 --- 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() {