Fix boot.iso showing up on DVD and potentially split media.

This commit is contained in:
Jesse Keating 2009-05-21 10:31:35 -07:00
parent a859efe4a9
commit 179d3cd678
2 changed files with 2 additions and 2 deletions

View File

@ -1041,7 +1041,7 @@ cost=500
# setup the base command
mkisofs = ['/usr/bin/mkisofs']
mkisofs.extend(['-v', '-U', '-J', '-R', '-T', '-m', 'repoview', '-m', 'images/boot.iso']) # common mkisofs flags
mkisofs.extend(['-v', '-U', '-J', '-R', '-T', '-m', 'repoview', '-m', 'boot.iso']) # common mkisofs flags
x86bootargs = ['-b', 'isolinux/isolinux.bin', '-c', 'isolinux/boot.cat',
'-no-emul-boot', '-boot-load-size', '4', '-boot-info-table']

View File

@ -249,7 +249,7 @@ self.reserve_size : Additional size needed to be reserved on the first disc.
# Set the bin_list to 1 to start with. We'll add more as needed.
self.bin_list = [1]
p = os.popen('find %s/ -type f -not -name .discinfo -not -name "*\.rpm" -not -name "boot.iso"' % self.dist_dir, 'r')
p = os.popen('find %s/ -type f -not -name .discinfo -not -name "*\.rpm" -not -name "*boot.iso"' % self.dist_dir, 'r')
filelist = p.read()
p.close()
filelist = string.split(filelist)