remove elilo support

Resolves: bz805782

elilo is deprecated in fedora, so remove the elilo support in firstboot module.

Signed-off-by: Dave Young <dyoung@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
This commit is contained in:
Dave Young 2012-08-09 10:22:50 +08:00
parent 36ece6081d
commit ea29dbf667
1 changed files with 1 additions and 2 deletions

View File

@ -59,8 +59,7 @@ class moduleClass(Module):
# bootloader : (config file, kdump offset)
bootloaders = { "grub" : (["/boot/grub/grub.conf", "/boot/efi/EFI/redhat/grub.conf"], [16, 256]),
"grub2" : (["/boot/grub2/grub.cfg"], [16, 256]),
"yaboot" : (["/boot/etc/yaboot.conf"], [32]),
"elilo" : (["/boot/efi/EFI/redhat/elilo.conf"], [256]) }
"yaboot" : (["/boot/etc/yaboot.conf"], [32]) }
bootloader = None
offset = 0