From 6c2bfb0dfdc1db35a43dcaa3ec5b804cea35d565 Mon Sep 17 00:00:00 2001 From: hackbard Date: Fri, 17 Jul 2015 18:06:08 +0200 Subject: [PATCH] stupid! if it does not exist, dd it! --- build.sh | 5 +++++ 1 file changed, 5 insertions(+) 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 \ -- 2.20.1