From 1c4affd2f70d8e3fb5b148b74bb4b6286c03e2fe Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Sat, 16 Nov 2019 08:42:46 +0100 Subject: [PATCH] bootloader: Use the same maximum size for both bootloaders. This sets the maximum size of the intermediate bootloader to the one that we (have to) use for the final bootloader, too. I don't see the point in allowing more code in the intermediate bootloader anymore. --- src/bootloader/bootloader-intermediate.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootloader/bootloader-intermediate.ld b/src/bootloader/bootloader-intermediate.ld index 55b6057..efe3810 100644 --- a/src/bootloader/bootloader-intermediate.ld +++ b/src/bootloader/bootloader-intermediate.ld @@ -8,7 +8,7 @@ MEMORY { FLASH (rx) - : ORIGIN = 0x00008000, LENGTH = 0x38000 + : ORIGIN = 0x00008000, LENGTH = 0x08000 RAM (rwx) : ORIGIN = 0x1fffe000, LENGTH = 0x08000 -- 2.30.2