Skip to content

Commit

Permalink
Fix make-iso script to use correct paths, add serial as second option…
Browse files Browse the repository at this point in the history
… in isolinux
  • Loading branch information
snacsnoc committed Jun 8, 2024
1 parent 231b31b commit 39aa10d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions configs/isolinux/isolinux.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
default 1
label 1
kernel boot/bzImage
initrd boot/rootfs.cpio
kernel /boot/bzImage
initrd /boot/rootfs.cpio
append init=/init rdinit=/init console=tty0

label 2
kernel /boot/bzImage
initrd /boot/rootfs.cpio
append init=/init rdinit=/init console=ttyS0,115200n8

2 changes: 1 addition & 1 deletion scripts/make-iso.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
genisoimage -l -J -R -input-charset utf-8 -b bootable_image/isolinux/isolinux.bin -c bootable_image/isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o out.iso .
genisoimage -l -J -R -input-charset utf-8 -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o out.iso bootable_image

0 comments on commit 39aa10d

Please sign in to comment.