1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-24 12:48:34 +00:00
morpheus/create-bootable

31 lines
491 B
Plaintext
Raw Normal View History

2013-09-16 11:23:55 +00:00
#!/bin/sh
#
# Ensure you've loaded the loop module with max_part=15
2013-09-16 14:23:19 +00:00
dd if=/dev/zero of=morpheus-boot.img bs=16M count=1
2013-09-16 11:23:55 +00:00
fdisk morpheus-boot.img <<< '
o
n
p
1
a
1
2013-09-16 11:23:55 +00:00
w'
lodev=$(losetup -f --show morpheus-boot.img) || exit 1
partition="$lodev"p1
mkfs.ext2 -L MORPHEUS $partition || exit 1
2013-09-16 11:23:55 +00:00
mount $partition /mnt || exit 1
fakeroot cp -dar root/* /mnt
extlinux --install /mnt/boot || exit 1
2013-09-16 11:23:55 +00:00
dd if=data/mbr.bin of=$lodev conv=notrunc bs=440 count=1
2013-09-16 12:58:37 +00:00
sync
2013-09-16 11:23:55 +00:00
umount /mnt
sleep 3
losetup -d $lodev