Fix boot.iso showing up on DVD and potentially split media.
This commit is contained in:
parent
a859efe4a9
commit
179d3cd678
@ -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']
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user