From fc2d1bca0000d614b57921b32cdbeecfc558e49c Mon Sep 17 00:00:00 2001 From: Steve McIntyre Date: Tue, 20 Jun 2017 14:43:29 +0100 Subject: [PATCH] Explicitly set the mode of the ISO root dir to 0755 Otherwise, we get the default 0700 that comes from mkstemp() --- lwr/xorriso.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lwr/xorriso.py b/lwr/xorriso.py index 5d87ae2..68a0e23 100644 --- a/lwr/xorriso.py +++ b/lwr/xorriso.py @@ -38,6 +38,7 @@ class Xorriso(object): self.args.extend(['-outdev', self.image_output]) self.args.extend(['-volid', self.volume_id]) self.args.extend(['-map', cdroot, '/']) + self.args.extend(['-chmod', '0755', '/', '--']) if self.isolinux: self.args.extend(['-boot_image', 'isolinux', 'dir=/isolinux',