Pad the ppc bootable disks by 15 megs, lots of isofs overhead.

This commit is contained in:
Jesse Keating 2009-04-07 18:09:00 -07:00
parent 44c4028447
commit c484a26f44
1 changed files with 5 additions and 1 deletions

View File

@ -300,7 +300,11 @@ self.reserve_size : Additional size needed to be reserved on the first disc.
# compensate for the size of the comps package which has yet to be created
if disc == 1:
maxsize = self.target_size - self.comps_size - self.reserve_size
if self.arch == 'ppc' or self.arch == 'ppc64':
# ppc has about 15 megs of overhead in the isofs.
maxsize = self.target_size - self.comps_size - self.reserve_size - 15728640
else:
maxsize = self.target_size - self.comps_size - self.reserve_size
else:
maxsize = self.target_size