summaryrefslogtreecommitdiffstats
path: root/booty
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2009-09-09 21:23:37 +0200
committerHans de Goede <hdegoede@redhat.com>2009-09-09 21:34:02 +0200
commit3805eef736c040ce40cf09dda7fcf593eeec0993 (patch)
tree933f085df28c17a0ff56f6e353e63e436cad770a /booty
parentdcc8c573da06cb7b1606c0a7c14996138344b18b (diff)
downloadanaconda-3805eef736c040ce40cf09dda7fcf593eeec0993.tar.gz
anaconda-3805eef736c040ce40cf09dda7fcf593eeec0993.tar.xz
anaconda-3805eef736c040ce40cf09dda7fcf593eeec0993.zip
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.
Diffstat (limited to 'booty')
-rw-r--r--booty/bootloaderInfo.py2
1 files changed, 1 insertions, 1 deletions
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