diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-12-14 18:44:07 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-12-14 18:44:07 -0500 |
commit | 9b342c65c8a038ff980645452ab84556376bedc7 (patch) | |
tree | 59b235f448ef979cfa650c4999ee57f970f00274 /src/rp2040 | |
parent | dc94a357528013ae182e413c3d7ec6145450a075 (diff) | |
download | kutter-9b342c65c8a038ff980645452ab84556376bedc7.tar.gz kutter-9b342c65c8a038ff980645452ab84556376bedc7.tar.xz kutter-9b342c65c8a038ff980645452ab84556376bedc7.zip |
armcm_link: Rename CONFIG_FLASH_START to CONFIG_FLASH_APPLICATION_ADDRESS
Rename the build symbol name for better clarity on what it represents.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/rp2040')
-rw-r--r-- | src/rp2040/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rp2040/Kconfig b/src/rp2040/Kconfig index b42e6b21..904699f8 100644 --- a/src/rp2040/Kconfig +++ b/src/rp2040/Kconfig @@ -66,7 +66,7 @@ choice config RP2040_FLASH_START_4000 bool "16KiB bootloader" endchoice -config FLASH_START +config FLASH_APPLICATION_ADDRESS hex default 0x10004000 if RP2040_FLASH_START_4000 default 0x10000100 |