From 94a757bff963e2aaebd571491513393b42d95047 Mon Sep 17 00:00:00 2001 From: Dom Cobley Date: Fri, 20 Jan 2023 19:36:01 +0000 Subject: [PATCH] rpi-update: Also consider BOOT_PATH for start4.elf You only actually need start.elf files in BOOT_PATH, not necessarily in FW_PATH --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index 1d8723b..a70cec1 100755 --- a/rpi-update +++ b/rpi-update @@ -436,7 +436,7 @@ function do_update { if [ -f ${FW_PATH}/kernel8.img ]; then WANT_64BIT=${WANT_64BIT:-1} fi - if [ -f ${FW_PATH}/start4.elf ]; then + if [ -f ${FW_PATH}/start4.elf ] || [ -f ${BOOT_PATH}/start4.elf ]; then WANT_PI4=${WANT_PI4:-1} fi WANT_32BIT=${WANT_32BIT:-0}