use dostools instead of loopbacks to create efiboot
Some checks failed
Push ISO / build (push) Failing after 5m13s
Some checks failed
Push ISO / build (push) Failing after 5m13s
This commit is contained in:
parent
f7e2450cb9
commit
10bdd41a8e
2
.github/push-iso
vendored
2
.github/push-iso
vendored
@ -1 +1 @@
|
|||||||
24
|
25
|
||||||
|
21
build.sh
21
build.sh
@ -60,16 +60,17 @@ cp ./data/refind/refind_linux.conf \
|
|||||||
|
|
||||||
# Generate bootable EFI Image from refind
|
# Generate bootable EFI Image from refind
|
||||||
|
|
||||||
dd if=/dev/zero of=disk.img bs=1M count=20
|
dd if=/dev/zero of="$LIVE_BOOT_PATH/efiboot.img" bs=1M count=20
|
||||||
losetup --offset 1048576 --sizelimit 46934528 /dev/loop5 disk.img
|
mkfs.msdos -F 16 "$LIVE_BOOT_PATH/efiboot.img"
|
||||||
mkfs.vfat /dev/loop5
|
for directory in $(find ./data/refind/EFI/ -type d | cut -d'/' -f4-)
|
||||||
mkdir -p /mnt/efi-disk
|
do
|
||||||
mount /dev/loop5 /mnt/efi-disk
|
mmd -i "$LIVE_BOOT_PATH/efiboot.img" ::"$(echo $directory | tr '[:lower:]' '[:upper:]')"
|
||||||
mkdir -p /mnt/efi-disk/EFI
|
done
|
||||||
rsync -av ./data/refind/EFI/* /mnt/efi-disk/EFI/
|
|
||||||
mkisofs -o "$LIVE_BOOT_PATH/efiboot.img" /mnt/efi-disk/
|
for file in $(find ./data/refind/EFI/ -type f | cut -d'/' -f4-)
|
||||||
umount -l /mnt/efi-disk
|
do
|
||||||
rm -rfv disk.img
|
mcopy -i "$LIVE_BOOT_PATH/efiboot.img" $file ::"$(echo $file | tr '[:lower:]' '[:upper:]')"
|
||||||
|
done
|
||||||
|
|
||||||
# Create Bootable UEFI Full Image
|
# Create Bootable UEFI Full Image
|
||||||
mkdir -p ./output
|
mkdir -p ./output
|
||||||
|
Loading…
Reference in New Issue
Block a user