Created
April 10, 2015 17:12
-
-
Save cbrune/7efd35a5ef0c4e001401 to your computer and use it in GitHub Desktop.
xorriso options file
This file contains hidden or 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
#------------------------------------------------------------------------------- | |
# | |
# Copyright (C) 2015 Curt Brune <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-2.0 | |
# | |
#------------------------------------------------------------------------------- | |
# Configuration options for xorriso(1) | |
# | |
# These options will create an .ISO image that can be booted as a BIOS | |
# CD-ROM (no emulation) and a UEFI CD-ROM (no emulation). | |
volid "RECOVERY" | |
# report_about HINT | |
report_about SORRY | |
find / -exec sort_weight 0 | |
find /boot -exec sort_weight 1 | |
# BIOS CD-ROM boot image | |
boot_image any bin_path=/boot/eltorito.img | |
boot-image any load_size=2048 | |
boot_image any platform_id=0x00 | |
boot_image any emul_type=no_emulation | |
boot_image any boot_info_table=on | |
boot_image any next | |
# BIOS GRUB hard disk image | |
boot_image any system_area=embedded.img | |
boot_image any next | |
# UEFI CD-ROM boot image | |
boot_image any efi_path=/boot/efi.img | |
boot_image any next | |
# Boot catalog file | |
boot_image any cat_path=/boot/boot.cat | |
commit | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment