From dee9472d0ccd9ea6721fde62c2cfca7ca4c42b34 Mon Sep 17 00:00:00 2001 From: "Jeroen van Meeuwen (Fedora Unity)" Date: Fri, 30 Jan 2009 02:32:35 +0100 Subject: [PATCH] Do not include boot.iso on any disc --- src/pypungi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 67b03419..8d8c07d7 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -955,7 +955,7 @@ cost=500 # setup the base command mkisofs = ['/usr/bin/mkisofs'] - mkisofs.extend(['-v', '-U', '-J', '-R', '-T', '-m', 'repoview']) # common mkisofs flags + mkisofs.extend(['-v', '-U', '-J', '-R', '-T', '-m', 'repoview', '-m', 'images/boot.iso']) # common mkisofs flags x86bootargs = ['-b', 'isolinux/isolinux.bin', '-c', 'isolinux/boot.cat', '-no-emul-boot', '-boot-load-size', '4', '-boot-info-table']