This commit is contained in:
j3d1 2020-01-29 13:37:36 +01:00
parent cc3834f211
commit e95c2f2a69

View file

@ -4,6 +4,9 @@ source $(dirname $0)/utils.sh
function first_stage(){
echo foo first_stage
if [[ ! -e /root/disk.img ]]; then
echo creating image file
dd if=/dev/zero of=/root/disk.img bs=1M count=512
LODEV=$(losetup --show -f /root/disk.img)
@ -17,11 +20,17 @@ function first_stage(){
echo w # Write changes
) | fdisk ${LODEV}
losetup -d ${LODEV}
fi
LODEV=$(losetup --show -fP /root/disk.img)
echo using device $LODEV
echo mount divice to $TARGET
mount $LODEVp1 $TARGET
echo mkfs.ext4 ${LODEV}p1
mkfs.ext4 ${LODEV}p1
mount ${LODEV}p1 $TARGET
echo mount ${LODEV}p1 $TARGET
echo debootstrap sid $TARGET
}