From 9b576bf976c981c707894958271558e31ddd1bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Fri, 20 Jul 2018 10:17:38 +0200 Subject: [PATCH] pungi-legacy: Add --joliet-long option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using `-J` each path component can only be 64 characters long. This is not sufficient for some packages. Adding `--joliet-long` increases the limit to 103. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1605103 Signed-off-by: Lubomír Sedlář --- pungi/gather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/gather.py b/pungi/gather.py index 392407b3..e68be013 100644 --- a/pungi/gather.py +++ b/pungi/gather.py @@ -1741,7 +1741,7 @@ class Pungi(PungiBase): # setup the base command mkisofs = ['/usr/bin/mkisofs'] - mkisofs.extend(['-v', '-U', '-J', '-R', '-T', '-m', 'repoview', '-m', 'boot.iso']) # common mkisofs flags + mkisofs.extend(['-v', '-U', '-J', '--joliet-long', '-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']