From 9426d1379f74a44d5e4b83806ee1230b40c5fdd5 Mon Sep 17 00:00:00 2001 From: pQu4k3r Date: Sun, 6 Sep 2026 20:44:17 +0000 Subject: [PATCH] Fix error 126: make install scripts executable installer.sh and the CONTROL/{preinst,postinst,prerm,postrm} opkg maintainer scripts were committed with mode 100644 (non-executable). Anyone cloning or downloading the repo and running ./installer.sh directly hit exit code 126 (permission denied). Set the executable bit on all five scripts. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01UPpumFb2PP21ATpDwJBYBB --- CONTROL/postinst | 0 CONTROL/postrm | 0 CONTROL/preinst | 0 CONTROL/prerm | 0 installer.sh | 0 5 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 CONTROL/postinst mode change 100644 => 100755 CONTROL/postrm mode change 100644 => 100755 CONTROL/preinst mode change 100644 => 100755 CONTROL/prerm mode change 100644 => 100755 installer.sh diff --git a/CONTROL/postinst b/CONTROL/postinst old mode 100644 new mode 100755 diff --git a/CONTROL/postrm b/CONTROL/postrm old mode 100644 new mode 100755 diff --git a/CONTROL/preinst b/CONTROL/preinst old mode 100644 new mode 100755 diff --git a/CONTROL/prerm b/CONTROL/prerm old mode 100644 new mode 100755 diff --git a/installer.sh b/installer.sh old mode 100644 new mode 100755