Makefile | 2 +- config/livecd-fedora-minimal.ks | 1 + imgcreate/live.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-)
New commits: commit 8ddeb5380c41e9a65218bbd4e92cec8210255acf Author: Jeremy Katz <[email protected]> Date: Wed May 6 14:02:46 2009 -0400 Bump version diff --git a/Makefile b/Makefile index c597ffc..a3b2aa9 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -VERSION = 023 +VERSION = 024 INSTALL = /usr/bin/install -c INSTALL_PROGRAM = ${INSTALL} commit e0328e752e0fc5f53e8643bf02fe1aba23543ace Author: Josh Boyer <[email protected]> Date: Tue Apr 28 21:10:35 2009 -0400 Fix ppc creation The updated patch below fixes iso creation for ppc. With this I can now build an iso to completion. diff --git a/config/livecd-fedora-minimal.ks b/config/livecd-fedora-minimal.ks index 59fced6..147f4ea 100644 --- a/config/livecd-fedora-minimal.ks +++ b/config/livecd-fedora-minimal.ks @@ -11,6 +11,7 @@ repo --name=development --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist %packages @core +anaconda-runtime bash kernel passwd diff --git a/imgcreate/live.py b/imgcreate/live.py index f91a5d2..a4914e0 100644 --- a/imgcreate/live.py +++ b/imgcreate/live.py @@ -606,7 +606,7 @@ hiddenmenu class ppcLiveImageCreator(LiveImageCreatorBase): def _get_mkisofs_options(self, isodir): - return [ "-hfs", "-nodesktop", "-part" + return [ "-hfs", "-no-desktop", "-part", "-map", isodir + "/ppc/mapping", "-hfs-bless", isodir + "/ppc/mac", "-hfs-volid", self.fslabel ] @@ -697,7 +697,7 @@ image=/ppc/ppc%(bit)s/vmlinuz f.write(cfg) f.close() - def __write_not_supported(isodir, bit): + def __write_not_supported(self, isodir, bit): makedirs(isodir + "/ppc/ppc" + bit) message = "Sorry, this LiveCD does not support your hardware" -- Fedora-livecd-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/fedora-livecd-list
