From a08871a741395644eefe4c2416158f12a8159710 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 5 Mar 2008 22:26:43 -0500 Subject: [PATCH] Exclude repoview from isos. --- Changelog | 1 + src/pypungi/pungi.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 61bfbbae..c8826df0 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ * Wed Mar 05 2008 Jesse Keating - Fix ppc split iso generation +- Exclude repoview from isos * Mon Mar 03 2008 Jesse Keating - Copy the netinst iso over to the isos/ directory diff --git a/src/pypungi/pungi.py b/src/pypungi/pungi.py index b825e262..139288ca 100755 --- a/src/pypungi/pungi.py +++ b/src/pypungi/pungi.py @@ -365,7 +365,7 @@ cost=500 # setup the base command mkisofs = ['/usr/bin/mkisofs'] - mkisofs.extend(['-v', '-U', '-J', '-R', '-T']) # common mkisofs flags + mkisofs.extend(['-v', '-U', '-J', '-R', '-T', '-m', 'repoview']) # common mkisofs flags x86bootargs = ['-b', 'isolinux/isolinux.bin', '-c', 'isolinux/boot.cat', '-no-emul-boot', '-boot-load-size', '4', '-boot-info-table']