From 488a3479cf1dcb5848051769bc0e8abfc83c18a8 Mon Sep 17 00:00:00 2001 From: Nasir Hossain Date: Sat, 17 Feb 2024 05:47:07 +0600 Subject: [PATCH] fix: make the init script executable --- build.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/build.bash b/build.bash index d019b39..57f1e9b 100755 --- a/build.bash +++ b/build.bash @@ -54,6 +54,7 @@ cd .. cd initramfs rm linuxrc # We'll be using a init sciprt instead cp ../scripts/init.sh init + sudo chmod 755 init find . | cpio -H newc -o > ../iso/boot/initramfs.cpio cd ..