Fix ppc split iso generation

This commit is contained in:
Jesse Keating 2008-03-05 13:45:17 -05:00 committed by Jesse Keating
parent e2f79e49f6
commit 7405122981
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,6 @@
* Wed Mar 05 2008 Jesse Keating <jkeating@redhat.com>
- Fix ppc split iso generation
* Mon Mar 03 2008 Jesse Keating <jkeating@redhat.com>
- Copy the netinst iso over to the isos/ directory
- Require a new enough anaconda for this

View File

@ -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)