iglunix/createimg.sh

35 lines
620 B
Bash
Raw Normal View History

2021-01-31 13:41:39 +00:00
#!/bin/sh
rm iglunix.img
2021-02-04 12:02:44 +00:00
dd if=../tiny-linux-bootloader/disk of=iglunix.img
2021-02-04 12:02:44 +00:00
FILE_SIZE=$(stat -c %s iglunix.img)
echo "FILE_SIZE=${FILE_SIZE}"
PARTITION_START=$(($FILE_SIZE / 512))
PARTITION_START=$(($PARTITION_START + 1))
echo "PARTITION_START=${PARTITION_START}"
2021-02-04 12:02:44 +00:00
#create room for a partition
ls -al iglunix.img -h
dd if=/dev/zero bs=1 count=0 seek=1G of=iglunix.img
ls -al iglunix.img -h
2021-02-04 12:02:44 +00:00
echo "o
2021-01-30 07:29:13 +00:00
n
p
1
${PARTITION_START}
2021-01-30 07:29:13 +00:00
w
2021-02-10 19:00:20 +00:00
" | fdisk iglunix.img
2021-02-04 12:02:44 +00:00
exit
2021-02-10 19:00:20 +00:00
# losetup -o 32256 /dev/loop0 iglunix.img
2021-02-04 12:02:44 +00:00
# mkfs.vfat /dev/loop0
# mount /dev/loop0 ./isoroot
# #rm -r isoroot/*
# #cp -r isoout/* isoroot
# umount ./isoroot