From d469cbfef5bf86867ca0db5025f294c4f4b12a68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Thu, 4 Oct 2018 23:38:57 +0200 Subject: [PATCH] Use constant MBR ID for isohybrid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If not set explicitly, isohybrid choose it randomly, which harm reproducibility. Signed-off-by: Marek Marczykowski-Górecki --- pungi/gather.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pungi/gather.py b/pungi/gather.py index 439c2f33..86b22052 100644 --- a/pungi/gather.py +++ b/pungi/gather.py @@ -1762,6 +1762,7 @@ class Pungi(PungiBase): ppcbootargs.append('-hfs-bless') # must be last isohybrid = ['/usr/bin/isohybrid'] + isohybrid.extend(['--id', '42']) # Check the size of the tree # This size checking method may be bunk, accepting patches...