Module Name:    src
Committed By:   jmcneill
Date:           Sat Aug  1 10:05:51 UTC 2015

Modified Files:
        src/distrib/utils/embedded: mkimage

Log Message:
use a larger (64KB) block size, this helps SD card performance


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/distrib/utils/embedded/mkimage

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/utils/embedded/mkimage
diff -u src/distrib/utils/embedded/mkimage:1.60 src/distrib/utils/embedded/mkimage:1.61
--- src/distrib/utils/embedded/mkimage:1.60	Wed Jul 15 11:27:13 2015
+++ src/distrib/utils/embedded/mkimage	Sat Aug  1 10:05:51 2015
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $NetBSD: mkimage,v 1.60 2015/07/15 11:27:13 martin Exp $
+# $NetBSD: mkimage,v 1.61 2015/08/01 10:05:51 jmcneill Exp $
 #
 # Copyright (c) 2013, 2014 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -197,7 +197,7 @@ if [ -z "${bootonly}" ]; then
 	echo ${bar} Populating ffs filesystem ${bar}
 	${MAKEFS} -rx ${endian} -N ${release}/etc -t ffs \
 	    -O ${ffsoffset} \
-	    -o d=4096,f=2048,b=16384 -b $((${extra}))m \
+	    -o d=4096,f=8192,b=65536 -b $((${extra}))m \
 	    -F "$tmp/selected_sets" ${image} "${release}" "${mnt}"
 fi
 

Reply via email to