From ea29dbf6679e2a3b47040efb2aed675d0523abdf Mon Sep 17 00:00:00 2001 From: Dave Young Date: Thu, 9 Aug 2012 10:22:50 +0800 Subject: [PATCH] remove elilo support Resolves: bz805782 elilo is deprecated in fedora, so remove the elilo support in firstboot module. Signed-off-by: Dave Young Acked-by: Vivek Goyal --- firstboot_kdump.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/firstboot_kdump.py b/firstboot_kdump.py index 76bcd83..83418db 100755 --- a/firstboot_kdump.py +++ b/firstboot_kdump.py @@ -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