From 732082144aee0d0ba9f2c805ac1c9ab5911fc395 Mon Sep 17 00:00:00 2001 From: nocode Date: Wed, 8 Jul 2026 02:38:30 +0200 Subject: [PATCH] chore(releng): add file permissions for fws-gameboot and fws-secureboot-setup scripts Add permission entries for three new executable scripts: - fws-gameboot - fws-gameboot-bootfix - fws-secureboot-setup All scripts are set with 0:0:755 permissions (owner:group:mode). --- configs/releng/profiledef.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/releng/profiledef.sh b/configs/releng/profiledef.sh index 823f5d5..2950ea4 100644 --- a/configs/releng/profiledef.sh +++ b/configs/releng/profiledef.sh @@ -36,5 +36,8 @@ file_permissions=( ["/usr/local/bin/fws-recovery-gui"]="0:0:755" ["/usr/local/bin/fws-powermenu"]="0:0:755" ["/usr/local/bin/fws-about"]="0:0:755" + ["/usr/local/bin/fws-gameboot"]="0:0:755" + ["/usr/local/bin/fws-gameboot-bootfix"]="0:0:755" + ["/usr/local/bin/fws-secureboot-setup"]="0:0:755" ["/etc/grub.d/42_fws-recovery"]="0:0:755" )