diff options
| author | 2024-08-27 15:53:33 -0400 | |
|---|---|---|
| committer | 2024-08-27 15:53:33 -0400 | |
| commit | f9fbfc24e0bca31452f96e138fb163a623328c5d (patch) | |
| tree | b9d475be85134a73f6196db1e8b6fac175e79623 /grub-ppc.cfg.iso-template | |
| parent | 6c69287ea5178c79210613769b1b46f8429d9e1a (diff) | |
| download | kiwi-descriptions-f9fbfc24e0bca31452f96e138fb163a623328c5d.tar.gz kiwi-descriptions-f9fbfc24e0bca31452f96e138fb163a623328c5d.zip | |
components/liveinstall: Enable mediacheck for live ISOs
This brings us to full parity with official Fedora ISOs produced
by Lorax.
Diffstat (limited to 'grub-ppc.cfg.iso-template')
| -rw-r--r-- | grub-ppc.cfg.iso-template | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/grub-ppc.cfg.iso-template b/grub-ppc.cfg.iso-template index 3ed12bb..26cd610 100644 --- a/grub-ppc.cfg.iso-template +++ b/grub-ppc.cfg.iso-template @@ -1,6 +1,6 @@ # Inspired by the config used for lorax-built live media -set default=${default_boot} +set default="1" insmod gzio insmod part_gpt @@ -18,6 +18,10 @@ menuentry "Start ${title}" --class fedora --class gnu-linux --class gnu --class linux ($$root)${bootpath}/${kernel_file} ${boot_options} initrd ($$root)${bootpath}/${initrd_file} } +menuentry "Test this media & start ${title}" --class fedora --class gnu-linux --class gnu --class os { + linux ($$root)${bootpath}/${kernel_file} ${boot_options} rd.live.check + initrd ($$root)${bootpath}/${initrd_file} +} submenu "Troubleshooting -->" { menuentry "Start ${title} in basic graphics mode" --class fedora --class gnu-linux --class gnu --class os { linux ($$root)${bootpath}/${kernel_file} ${boot_options} $${basicgfx} |