Module Name: src
Committed By: jmcneill
Date: Mon Apr 6 17:59:36 UTC 2015
Modified Files:
src/distrib/utils/embedded: mkimage
Log Message:
resizing of ffsv2 still doesn't work well, so revert previous, and instead
explicitly set fsize=2048/bsize=16384, which gives a pretty decent boost
to resize_ffs performance on its own
To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 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.53 src/distrib/utils/embedded/mkimage:1.54
--- src/distrib/utils/embedded/mkimage:1.53 Sun Apr 5 17:05:45 2015
+++ src/distrib/utils/embedded/mkimage Mon Apr 6 17:59:36 2015
@@ -1,5 +1,5 @@
#!/bin/sh
-# $NetBSD: mkimage,v 1.53 2015/04/05 17:05:45 jmcneill Exp $
+# $NetBSD: mkimage,v 1.54 2015/04/06 17:59:36 jmcneill Exp $
#
# Copyright (c) 2013, 2014 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -178,7 +178,7 @@ if [ -z "${bootonly}" ]; then
echo ${bar} Populating ffs filesystem ${bar}
${MAKEFS} -r -N ${release}/etc -t ffs -rx \
-O ${ffsoffset} \
- -o v=2,d=4096 -b $((${extra}))m \
+ -o d=4096,f=2048,b=16384 -b $((${extra}))m \
-F "$tmp/selected_sets" ${image} "${release}" "${mnt}"
fi