From 0d311d61b487f864e969206f7cd7cdde27780adc Mon Sep 17 00:00:00 2001 From: "Claude (noether)" Date: Fri, 15 May 2026 16:54:29 +0000 Subject: [PATCH] linux-ampere-fourier: chmod +x prebuild.sh The exec bit was missing on prebuild.sh as committed in PR #15 (it landed mode 0644). Running './prebuild.sh' fails with 'Permission denied'; bash ./prebuild.sh works as a workaround but the shebang is intended to do its job. Caught while running the first linux-ampere-fourier build on boltzmann today. README.md examples show './prebuild.sh' so users will hit the same error. Single-bit fix via git update-index --chmod=+x. No content change. --- arch/linux-ampere-fourier/prebuild.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 arch/linux-ampere-fourier/prebuild.sh diff --git a/arch/linux-ampere-fourier/prebuild.sh b/arch/linux-ampere-fourier/prebuild.sh old mode 100644 new mode 100755