Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -8,7 +8,7 @@ SAM_BA_SITE = http://www.atmel.com/dyn/resources/prod_documents
SAM_BA_VERSION = 2.16
SAM_BA_SOURCE = sam-ba_$(SAM_BA_VERSION)_linux.zip
SAM_BA_LICENSE = SAM-BA license (sam-ba executable), \
BSD-2c like, BSD-4c (TCL and applets code)
BSD-2-Clause like, BSD-4-Clause (TCL and applets code)
SAM_BA_LICENSE_FILES = doc/license.txt tcl_lib/boards.tcl \
applets/sam4c/libraries/libchip_sam4c/include/sam4c/sam4c32e-1.h
@@ -20,13 +20,19 @@ endef
# Since it's a prebuilt application and it does not conform to the
# usual Unix hierarchy, we install it in $(HOST_DIR)/opt/sam-ba and
# then create a symbolic link from $(HOST_DIR)/usr/bin to the
# then create a symbolic link from $(HOST_DIR)/bin to the
# application binary, for easier usage.
ifeq ($(HOSTARCH),x86_64)
SAM_BA_BIN_NAME = sam-ba_64
else
SAM_BA_BIN_NAME = sam-ba
endif
define HOST_SAM_BA_INSTALL_CMDS
mkdir -p $(HOST_DIR)/opt/sam-ba/
cp -a $(@D)/* $(HOST_DIR)/opt/sam-ba/
ln -sf ../../opt/sam-ba/sam-ba $(HOST_DIR)/usr/bin/sam-ba
ln -sf ../opt/sam-ba/$(SAM_BA_BIN_NAME) $(HOST_DIR)/bin/sam-ba
endef
$(eval $(host-generic-package))