From 6ffe1d91e80a4221e801c761e7a6707deec33394 Mon Sep 17 00:00:00 2001 From: Marco Felsch Date: Tue, 27 Feb 2024 19:31:45 +0100 Subject: [PATCH] classes: genimage: fix install file permissions If not specified "install" installs the files with rwxr-xr-x permissions. Set the mode explicit to fix this. Signed-off-by: Marco Felsch --- classes-recipe/genimage.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes-recipe/genimage.bbclass b/classes-recipe/genimage.bbclass index 98e02ef..ed423d2 100644 --- a/classes-recipe/genimage.bbclass +++ b/classes-recipe/genimage.bbclass @@ -164,7 +164,7 @@ do_genimage[prefuncs] += "do_genimage_preprocess" addtask genimage after do_configure before do_build do_deploy () { - install ${B}/* ${DEPLOYDIR}/ + install -m 0644 ${B}/* ${DEPLOYDIR}/ for img in ${B}/*; do img=$(basename "${img}")