From: hackbard Date: Fri, 17 Jul 2015 16:06:08 +0000 (+0200) Subject: stupid! if it does not exist, dd it! X-Git-Url: https://hackdaworld.org/gitweb/?p=outofuni%2Fdib.git;a=commitdiff_plain;h=HEAD stupid! if it does not exist, dd it! --- diff --git a/build.sh b/build.sh index 48ea033..b04f89a 100755 --- a/build.sh +++ b/build.sh @@ -50,6 +50,10 @@ function build_all { dd if=/dev/zero of=./rootfs.img \ bs=1M count=$IMGSIZE fi + else + echo "creating rootfs.img" + dd if=/dev/zero of=./rootfs.img \ + bs=1M count=$IMGSIZE fi # make fs and mount umount_if_mounted rootfs.mnt @@ -58,6 +62,7 @@ function build_all { mkfs.${ROOTFS} $FORCEFS -L rootfs ./rootfs.img rm -rf rootfs.mnt mkdir rootfs.mnt + modprobe loop mount -o loop ./rootfs.img ./rootfs.mnt # debootstrap first part debootstrap --verbose --arch $ARCH --variant=minbase \