Autogenerated boot iso for iscsi_ilo driver fails when Fedora based IPA ramdisk is used for deploy in UEFI boot mode. The keywords used (linux and initrd) in grub.cfg template are specific to Ubuntu only. They are not recognized by Fedora. Have changed it to keywords (linuxefi and initrdefi) which are recognized by both Ubuntu and Fedora deploy ramdisks. Also the menuentry name has been changed to 'boot_partition' in grub config file. This is done to make it consistent with pxe driver's elilo config file wherein menuentry name for the final boot of user image is 'boot_partition'. Closes-Bug: 1441691 Change-Id: Ia6fdbf4868e6606a18b33ce2b75f29f701a31b35
9 lines
158 B
Plaintext
9 lines
158 B
Plaintext
set default=0
|
|
set timeout=5
|
|
set hidden_timeout_quiet=false
|
|
|
|
menuentry "boot_partition" {
|
|
linuxefi {{ linux }} {{ kernel_params }} --
|
|
initrdefi {{ initrd }}
|
|
}
|