imgcreate/live.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ab84919a2f2c14e9354f217f1410ca841f54b6d9 Author: Warren Togami <[email protected]> Date: Thu Sep 10 14:55:02 2009 -0400 ppc live was trying to copy the wrong initrd filename diff --git a/imgcreate/live.py b/imgcreate/live.py index 478aab0..85de975 100644 --- a/imgcreate/live.py +++ b/imgcreate/live.py @@ -675,7 +675,7 @@ class ppcLiveImageCreator(LiveImageCreatorBase): destdir + "/vmlinuz") if os.path.exists(bootdir + "/initramfs-" + version + ".img"): - shutil.copyfile(bootdir + "/initrd-" + version + ".img", + shutil.copyfile(bootdir + "/initramfs-" + version + ".img", destdir + "/initrd.img") isDracut = True else: -- Fedora-livecd-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/fedora-livecd-list
