2021-05-19 17:12:56 -04:00
|
|
|
#!/bin/sh
|
|
|
|
ln -s $1/images/pxeboot/vmlinuz $2/boot/kernel && \
|
|
|
|
ln -s $1/images/pxeboot/initrd.img $2/boot/initramfs/distribution && \
|
2021-05-20 17:33:22 -04:00
|
|
|
ln -s $1/images/ignition.img $2/boot/initramfs/ignition.img && \
|
2021-05-19 17:12:56 -04:00
|
|
|
mkdir -p $2/boot/efi/boot/ && \
|
2021-05-21 11:11:01 -04:00
|
|
|
ln -s $1/images/pxeboot/rootfs.img $2/ && \
|
2021-11-29 16:03:06 -05:00
|
|
|
(mcopy -i $1/images/efiboot.img ::efi/redhat/grubx64.efi $2/boot/efi/boot/ || \
|
|
|
|
mcopy -i $1/images/efiboot.img ::efi/boot/grubx64.efi $2/boot/efi/boot/) && \
|
|
|
|
mcopy -i $1/images/efiboot.img ::efi/boot/bootx64.efi $2/boot/efi/boot/
|