From 4da4eb706a790326bb758a4d082052a3efda466d Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Wed, 19 Aug 2026 22:18:48 +0200 Subject: [PATCH] Fix bug in bootrom.bin target --- recovery/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recovery/Makefile b/recovery/Makefile index 8e39ef6ab..22425bb1e 100644 --- a/recovery/Makefile +++ b/recovery/Makefile @@ -27,7 +27,7 @@ bootrom.bin: ../bootrom/obj/bootrom.elf ifeq ($(PLATFORM),PM5) $(info [=] GENA $@) $(Q)$(CROSS_OBJCOPY) --gap-fill=0xff --pad-to 0x08004000 -O binary $^ $@ -else: +else $(info [=] GENB $@) $(Q)$(CROSS_OBJCOPY) --gap-fill=0xff --pad-to 0x00104000 -O binary $^ $@ endif