bc0235a07c
This brings us to full parity with official Fedora ISOs produced by Lorax.
31 lines
939 B
Plaintext
31 lines
939 B
Plaintext
# Inspired by the config used for lorax-built live media
|
|
|
|
set default="1"
|
|
|
|
insmod gzio
|
|
insmod part_gpt
|
|
insmod ext2
|
|
|
|
terminal_input console
|
|
terminal_output ${terminal_output}
|
|
|
|
set timeout=${boot_timeout}
|
|
set timeout_style=${boot_timeout_style}
|
|
|
|
search ${search_params}
|
|
|
|
menuentry "Start ${title}" --class fedora --class gnu-linux --class gnu --class os {
|
|
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}
|
|
initrd ($$root)${bootpath}/${initrd_file}
|
|
}
|
|
}
|