Add sed command to use genisoimage

This change fixes a bug by adding a sed command to force the arch/x86/boot/Makefile to use genisoimage instead of mkisofs.
This commit is contained in:
cspenceiv 2015-04-08 15:05:13 -05:00
parent 77de2be60e
commit 4afc25d0cf

View File

@ -5,6 +5,9 @@ rm -f minimal_linux_live.iso
cd work/kernel
cd $(ls -d *)
# Edit Makefile to look for genisoimage instead of mkisofs
sed -i 's/mkisofs/genisoimage/g' arch/x86/boot/Makefile
make isoimage FDINITRD=../../rootfs.cpio.gz
cp arch/x86/boot/image.iso ../../../minimal_linux_live.iso