aboutsummaryrefslogtreecommitdiffstats
path: root/support/make
diff options
context:
space:
mode:
authorGregwar <g.passault@gmail.com>2014-04-23 16:45:23 +0200
committerGregwar <g.passault@gmail.com>2014-04-23 22:22:41 +0200
commit3c8ded4743c09a7b0c7737392d4e4c15e6959852 (patch)
treead50fd91846490111cff6c04a6753d1bf0036213 /support/make
parent139e4b1a1ae547540d32aa66d47c4e69b1b57bbf (diff)
downloadlibrambutan-3c8ded4743c09a7b0c7737392d4e4c15e6959852.tar.gz
librambutan-3c8ded4743c09a7b0c7737392d4e4c15e6959852.zip
Adding BOOTLOADER option to support Robotis bootloader different ROM
Signed-off-by: Grégoire Passault <g.passault@gmail.com>
Diffstat (limited to 'support/make')
-rw-r--r--support/make/board-includes/cm900.mk5
-rw-r--r--support/make/board-includes/opencm904.mk5
2 files changed, 10 insertions, 0 deletions
diff --git a/support/make/board-includes/cm900.mk b/support/make/board-includes/cm900.mk
index f9a09ac..9f70a1b 100644
--- a/support/make/board-includes/cm900.mk
+++ b/support/make/board-includes/cm900.mk
@@ -7,4 +7,9 @@ MCU_F1_LINE := performance
# This crap is due to ld-script limitations. If you know of a better
# way to go about this (like some magic ld switches to specify MEMORY
# at the command line), please tell us!
+ifeq ($(BOOTLOADER),maple)
LD_MEM_DIR := sram_20k_flash_128k
+endif
+ifeq ($(BOOTLOADER),robotis)
+LD_MEM_DIR := sram_20k_flash_128k_robotis
+endif
diff --git a/support/make/board-includes/opencm904.mk b/support/make/board-includes/opencm904.mk
index f3a4aa7..64d3351 100644
--- a/support/make/board-includes/opencm904.mk
+++ b/support/make/board-includes/opencm904.mk
@@ -7,4 +7,9 @@ MCU_F1_LINE := performance
# This crap is due to ld-script limitations. If you know of a better
# way to go about this (like some magic ld switches to specify MEMORY
# at the command line), please tell us!
+ifeq ($(BOOTLOADER),maple)
LD_MEM_DIR := sram_20k_flash_128k
+endif
+ifeq ($(BOOTLOADER),robotis)
+LD_MEM_DIR := sram_20k_flash_128k_robotis
+endif