From ea02942eecbc6f09a43111de9e31689d68e49345 Mon Sep 17 00:00:00 2001 From: Silvano Seva Date: Mon, 10 Mar 2025 21:43:45 +0100 Subject: [PATCH] STM32F4: changed name of Module17 linker script to a more generic one The linker script for Module17 is nothing more than the generic linker script used to create binaries for the STM32F4xx MCUs. To reflect this, its name has been changed to one with a broader scope. --- meson.build | 2 +- .../STM32F4xx/{linker_script_Mod17.ld => stm32_1m+192k_rom.ld} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename platform/mcu/STM32F4xx/{linker_script_Mod17.ld => stm32_1m+192k_rom.ld} (100%) diff --git a/meson.build b/meson.build index 51b71a3d..d4411c62 100644 --- a/meson.build +++ b/meson.build @@ -630,7 +630,7 @@ mod17_opts = { 'dependencies' : [codec2_dep], 'c_args' : mod17_args, 'cpp_args' : mod17_args, - 'link_args' : ['-Wl,-T../platform/mcu/STM32F4xx/linker_script_Mod17.ld', + 'link_args' : ['-Wl,-T../platform/mcu/STM32F4xx/stm32_1m+192k_rom.ld', '-Wl,--print-memory-usage'], } diff --git a/platform/mcu/STM32F4xx/linker_script_Mod17.ld b/platform/mcu/STM32F4xx/stm32_1m+192k_rom.ld similarity index 100% rename from platform/mcu/STM32F4xx/linker_script_Mod17.ld rename to platform/mcu/STM32F4xx/stm32_1m+192k_rom.ld