-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix make-iso script to use correct paths, add serial as second option…
… in isolinux
- Loading branch information
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |