From 3805eef736c040ce40cf09dda7fcf593eeec0993 Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Wed, 9 Sep 2009 21:23:37 +0200 Subject: initrd-generic.img -> initramfs.img We're moving back to %post generation of dracut initrd's due to GPL concerns about shipping pre build initrd's. This means the initrd will no longer be truely generic. To reflect this and make clear it is not an mkinitrd initrd, the name was changed to initramfs.img. --- booty/bootloaderInfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'booty') diff --git a/booty/bootloaderInfo.py b/booty/bootloaderInfo.py index b2725ab31..d41f6a540 100644 --- a/booty/bootloaderInfo.py +++ b/booty/bootloaderInfo.py @@ -308,7 +308,7 @@ class bootloaderInfo: if os.access(instRoot + "/boot/" + initrd, os.R_OK): return initrd - initrd = "initrd-generic%s.img" % kernelTag + initrd = "initramfs%s.img" % kernelTag if os.access(instRoot + "/boot/" + initrd, os.R_OK): return initrd -- cgit