From 819a110096caba3d31533649fc9e007bd93af302 Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Mon, 8 Jul 2019 19:22:13 +0200 Subject: [PATCH 1/1] bootloader: Rename bootloader.ld to bootloader-intermediate.ld. We will need two bootloader binaries eventually: an intermediate one that we can install to 0x8000 using the vendor bootloader, and a final one that is installed to 0x0 and will thus replace the vendor bootloader. --- SConscript.target | 2 +- src/bootloader/{bootloader.ld => bootloader-intermediate.ld} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/bootloader/{bootloader.ld => bootloader-intermediate.ld} (100%) diff --git a/SConscript.target b/SConscript.target index dc60c2e..8ee82a3 100644 --- a/SConscript.target +++ b/SConscript.target @@ -62,7 +62,7 @@ Depends(libbootloader, 'libcommon.a') bootloader_env = env.Clone() bootloader_env.Append(LINKFLAGS = [ - '-Tsrc/bootloader/bootloader.ld', + '-Tsrc/bootloader/bootloader-intermediate.ld', ]) bootloader_elf = bootloader_env.Program('gps-watch-bootloader.elf', 'src/bootloader/start.c', LIBS = ['bootloader', 'common']) diff --git a/src/bootloader/bootloader.ld b/src/bootloader/bootloader-intermediate.ld similarity index 100% rename from src/bootloader/bootloader.ld rename to src/bootloader/bootloader-intermediate.ld -- 2.30.2