In guided install Non-UEFI installs need to use grub-install as its the only supported bootloader that doesn't require UEFI
This commit is contained in:
parent
39e354f395
commit
80a3ca3826
|
|
@ -314,7 +314,11 @@ def perform_installation(device, boot_partition, language, mirrors):
|
|||
if installation.minimal_installation():
|
||||
installation.set_mirrors(mirrors) # Set the mirrors in the installation medium
|
||||
installation.set_keyboard_language(language)
|
||||
installation.add_bootloader()
|
||||
if hasUEFI():
|
||||
installation.add_bootloader()
|
||||
else:
|
||||
installation.add_bootloader(bootloder='grub-install')
|
||||
|
||||
|
||||
# If user selected to copy the current ISO network configuration
|
||||
# Perform a copy of the config
|
||||
|
|
|
|||
Loading…
Reference in New Issue