diff --git a/Changelog b/Changelog index 6c8ea9de..61bfbbae 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Wed Mar 05 2008 Jesse Keating +- Fix ppc split iso generation + * Mon Mar 03 2008 Jesse Keating - Copy the netinst iso over to the isos/ directory - Require a new enough anaconda for this diff --git a/src/pypungi/pungi.py b/src/pypungi/pungi.py index bd2c4c25..b825e262 100755 --- a/src/pypungi/pungi.py +++ b/src/pypungi/pungi.py @@ -436,10 +436,7 @@ cost=500 extraargs.extend(ia64bootargs) elif self.config.get('default', 'arch') == 'ppc': extraargs.extend(ppcbootargs) - if self.config.getint('default', 'discs') == 1: - extraargs.append(os.path.join(self.topdir, "ppc/mac")) # this may work for both cases.. test - else: - extraargs.append(os.path.join('%s-disc%s' % (self.topdir, disc), "ppc/mac")) + extraargs.append(os.path.join(self.topdir, "ppc/mac")) elif self.config.get('default', 'arch') == 'sparc': extraargs.extend(sparcbootargs)