From 8f7f08cea9b209bd23d3cb59522ffeedb1d983d2 Mon Sep 17 00:00:00 2001 From: openoms <43343391+openoms@users.noreply.github.com> Date: Sat, 6 Apr 2024 09:51:44 +0200 Subject: [PATCH] check kernel8 image in /boot/firmware/ (#4528) --- build_sdcard.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_sdcard.sh b/build_sdcard.sh index 13ccda356..f8973a214 100644 --- a/build_sdcard.sh +++ b/build_sdcard.sh @@ -448,7 +448,7 @@ if [ "${baseimage}" = "raspios_arm64" ]; then echo "# Raspiblitz" | tee -a $configFile # ensure that kernel8.img is used to set PAGE_SIZE to 4K # https://github.com/raspiblitz/raspiblitz/issues/4346 - if [ -f /boot/kernel8.img ]; then + if [ -f /boot/firmware/kernel8.img ]; then echo 'kernel=kernel8.img' | tee -a $configFile fi echo "max_usb_current=1" | tee -a $configFile