diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2009-01-11 21:44:14 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2009-01-11 21:44:14 +0000 |
commit | e897b420fb5bd4bd80e7ea5f6cb04ceff2de772c (patch) | |
tree | 3b1116122f9c5fefe40fd71d6644bb86013a28c0 /target | |
parent | f4431ebb081b656b12485c4a4ce5f7be3b813f66 (diff) | |
download | buildroot-novena-e897b420fb5bd4bd80e7ea5f6cb04ceff2de772c.tar.gz buildroot-novena-e897b420fb5bd4bd80e7ea5f6cb04ceff2de772c.zip |
Update at91bootstrap to 2.10
Diffstat (limited to 'target')
-rw-r--r-- | target/device/Atmel/at91bootstrap/at91bootstrap.mk | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/target/device/Atmel/at91bootstrap/at91bootstrap.mk b/target/device/Atmel/at91bootstrap/at91bootstrap.mk index babdc7df6..cfe0a1fbc 100644 --- a/target/device/Atmel/at91bootstrap/at91bootstrap.mk +++ b/target/device/Atmel/at91bootstrap/at91bootstrap.mk @@ -3,9 +3,10 @@ # at91bootstrap # ############################################################# -AT91BOOTSTRAP_VERSION:=2.9 +#AT91BOOTSTRAP_VERSION:=2.3 +#AT91BOOTSTRAP_PATCH_LEVEL:=.4 +AT91BOOTSTRAP_VERSION:=2.10 AT91BOOTSTRAP_PATCH_LEVEL:= - AT91BOOTSTRAP_PATCHED_VERSION:=$(AT91BOOTSTRAP_VERSION)$(AT91BOOTSTRAP_PATCH_LEVEL) AT91BOOTSTRAP_NAME:=at91bootstrap-$(AT91BOOTSTRAP_VERSION) ATMEL_MIRROR:=$(strip $(subst ",, $(BR2_ATMEL_MIRROR))) @@ -57,6 +58,8 @@ $(AT91BOOTSTRAP_DIR)/.configured: $(AT91BOOTSTRAP_DIR)/.unpacked .config $(AT91BOOTSTRAP_BOARD)_defconfig touch $(AT91BOOTSTRAP_DIR)/.configured +# $(BOARD_NAME)_defconfig + $(AT91BOOTSTRAP_TARGET): $(AT91BOOTSTRAP_DIR)/.configured $(MAKE) \ MEMORY=$(AT91BOOTSTRAP_MEMORY) \ @@ -64,13 +67,18 @@ $(AT91BOOTSTRAP_TARGET): $(AT91BOOTSTRAP_DIR)/.configured AT91_CUSTOM_FLAGS="$(AT91_CUSTOM_FLAGS)" \ -C $(AT91BOOTSTRAP_DIR) -$(AT91BOOTSTRAP_DIR)/.installed: $(AT91BOOTSTRAP_TARGET) +$(AT91BOOTSTRAP_DIR)/.installed:: $(AT91BOOTSTRAP_TARGET) mkdir -p $(BINARIES_DIR) +ifeq ($(AT91BOOTSTRAP_VERSION),2.3) + cp $(AT91BOOTSTRAP_TARGET) $(BINARIES_DIR)/$(AT91BOOTSTRAP_BINARY) + cp $(AT91BOOTSTRAP_TARGET) $(BR2_TARGET_ATMEL_COPYTO)/$(AT91BOOTSTRAP_BINARY) +else make MEMORY=$(AT91BOOTSTRAP_MEMORY) \ - CROSS_COMPILE=$(TARGET_CROSS) \ - -C $(AT91BOOTSTRAP_DIR) boot + CROSS_COMPILE=$(TARGET_CROSS) \ + -C $(AT91BOOTSTRAP_DIR) boot make DESTDIR=$(BINARIES_DIR) -C $(AT91BOOTSTRAP_DIR) install make DESTDIR=$(BR2_TARGET_ATMEL_COPYTO) -C $(AT91BOOTSTRAP_DIR) install +endif touch $@ # cp $(AT91BOOTSTRAP_TARGET) $(BINARIES_DIR)/$(AT91BOOTSTRAP_BINARY) @@ -100,3 +108,7 @@ at91bootstrap-dirclean: ifeq ($(BR2_TARGET_AT91BOOTSTRAP),y) TARGETS+=at91bootstrap endif + +at91bootstrap-status: + @echo AT91BOOTSTRAP_BOARD=$(AT91BOOTSTRAP_BOARD) + |