base-files: Add "-o noatime" to mount wrapper
authorMichael Büsch <mb@bu3sch.de>
Sun, 20 Feb 2011 22:39:08 +0000 (22:39 +0000)
committerMichael Büsch <mb@bu3sch.de>
Sun, 20 Feb 2011 22:39:08 +0000 (22:39 +0000)
noatime is cheaper than default relatime.

SVN-Revision: 25634

package/base-files/files/lib/functions/boot.sh

index 66423d9aadce8b57a3c4f290531e77c2d346d710..a8832413501bfc949fc30888312c30b7558fe978 100644 (file)
@@ -3,7 +3,7 @@
 # Copyright (C) 2010 Vertical Communications
 
 mount() {
-       /bin/busybox mount "$@"
+       /bin/busybox mount -o noatime "$@"
 }
 
 boot_hook_splice_start() {