summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Kowal <[email protected]>2024-07-10 15:52:43 -0400
committerBrent Kowal <[email protected]>2024-07-10 15:52:43 -0400
commit494533f9d7b7961dd9a3acf7c2e9070f8ba172b5 (patch)
tree4fa24d1e3685a04dc0ce92fc00e44a80658b0e03
parentf49725d2c958dd1368b5ca191a00be72543c0752 (diff)
Minor build system fix
Correct a case-sensitive file extension issue in the MAX32690 build scripts. Did not present itself as an issue under MinGW or MSYS, just Linux.
-rw-r--r--hw/bsp/max32690/family.cmake2
-rw-r--r--hw/bsp/max32690/family.mk2
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/bsp/max32690/family.cmake b/hw/bsp/max32690/family.cmake
index 5c470f86b..d7a562956 100644
--- a/hw/bsp/max32690/family.cmake
+++ b/hw/bsp/max32690/family.cmake
@@ -44,7 +44,7 @@ function(add_board_target BOARD_TARGET)
endif ()
# Startup & Linker script
- set(STARTUP_FILE_GNU ${MAX32_CMSIS}/Device/Maxim/MAX32690/Source/GCC/startup_max32690.s)
+ set(STARTUP_FILE_GNU ${MAX32_CMSIS}/Device/Maxim/MAX32690/Source/GCC/startup_max32690.S)
set(STARTUP_FILE_Clang ${STARTUP_FILE_GNU})
set(PERIPH_SRC ${MAX32_PERIPH}/Source)
diff --git a/hw/bsp/max32690/family.mk b/hw/bsp/max32690/family.mk
index 8b9fbc175..9360a07c6 100644
--- a/hw/bsp/max32690/family.mk
+++ b/hw/bsp/max32690/family.mk
@@ -11,7 +11,7 @@ CPU_CORE ?= cortex-m4
PORT ?= 0
# GCC
-SRC_S_GCC += $(MAX32_CMSIS)/Device/Maxim/MAX32690/Source/GCC/startup_max32690.s
+SRC_S_GCC += $(MAX32_CMSIS)/Device/Maxim/MAX32690/Source/GCC/startup_max32690.S
LD_FILE = $(FAMILY_PATH)/max32690.ld
# --------------