diff --git a/firstboot_kdump.py b/firstboot_kdump.py
index 59c6709..76bcd83 100755
--- a/firstboot_kdump.py
+++ b/firstboot_kdump.py
@@ -55,8 +55,10 @@ class moduleClass(Module):
 	reboot = False
 
 	# possible bootloaders we'll need to adjust
+	# todo: f18 grub2 for efi
 	#			 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]) }
 	bootloader = None