save a few seconds by seeking instead of copying zeros
This commit is contained in:
parent
46ad2de5d9
commit
236943fe54
@ -89,8 +89,8 @@ BASE=build.$$
|
|||||||
IMG=$BASE.img
|
IMG=$BASE.img
|
||||||
MNT=$BASE/
|
MNT=$BASE/
|
||||||
|
|
||||||
# create a 2GB blank filesystem
|
# (quickly) create a 2GB blank filesystem
|
||||||
dd if=/dev/zero of=$IMG bs=1024k count=2048
|
dd bs=1 count=1 seek=$((2*1024*1024*1024)) if=/dev/zero of=$IMG
|
||||||
# force it to be initialized as ext2
|
# force it to be initialized as ext2
|
||||||
mkfs.ext2 -F $IMG
|
mkfs.ext2 -F $IMG
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user