diff --git a/pmb/parse/bootimg.py b/pmb/parse/bootimg.py index ff9257e5..a713d47d 100644 --- a/pmb/parse/bootimg.py +++ b/pmb/parse/bootimg.py @@ -87,7 +87,9 @@ def bootimg(args, path): bootimg_path = f"{args.work}/chroot_native{temp_path}/boot.img" # Copy the boot.img into the chroot temporary folder + # and make it world readable pmb.helpers.run.root(args, ["cp", path, bootimg_path]) + pmb.helpers.run.root(args, ["chmod", "a+r", bootimg_path]) file_output = pmb.chroot.user(args, ["file", "-b", "boot.img"], working_dir=temp_path,