# HG changeset patch # User Rob Landley # Date 1265439669 21600 # Node ID 55cf620008b481e26c3361ac548642335eafb030 # Parent 51a8a0076c9d442d508fb897c5e0729eebf47497 Cosmetic: make mke2fs much less verbose. diff -r 51a8a0076c9d -r 55cf620008b4 sources/toys/run-emulator.sh --- a/sources/toys/run-emulator.sh Sat Feb 06 01:00:46 2010 -0600 +++ b/sources/toys/run-emulator.sh Sat Feb 06 01:01:09 2010 -0600 @@ -30,7 +30,7 @@ [ -z "$(which mke2fs)" ] && export PATH=/sbin:/usr/bin:$PATH dd if=/dev/zero of="$HDB" bs=1024 seek=$[$HDBMEGS*1024-1] count=1 && - mke2fs -b 1024 -F "$HDB" -i 4096 && + mke2fs -q -b 1024 -F "$HDB" -i 4096 && tune2fs -j -c 0 -i 0 "$HDB" [ $? -ne 0 ] && exit 1