From a23c0e59684628f69615e25ad1b9dbca972a3815 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 28 Jan 2012 18:42:55 +0100 Subject: sam-ba: new package with host variant only sam-ba is a tool needed to reprogram AT91-based systems using an USB connection or a serial port connection. [Peter: Add upstream URL] Signed-off-by: Thomas Petazzoni Acked-by: Luca Ceresoli Acked-by: Thomas De Schampheleire Signed-off-by: Peter Korsgaard --- package/sam-ba/Config.in.host | 8 ++++++++ package/sam-ba/sam-ba.mk | 22 ++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 package/sam-ba/Config.in.host create mode 100644 package/sam-ba/sam-ba.mk (limited to 'package/sam-ba') diff --git a/package/sam-ba/Config.in.host b/package/sam-ba/Config.in.host new file mode 100644 index 000000000..f2ea01f2f --- /dev/null +++ b/package/sam-ba/Config.in.host @@ -0,0 +1,8 @@ +config BR2_PACKAGE_HOST_SAM_BA + bool "host sam-ba" + help + Atmel SAM-BA software provides an open set of tools for + programming the Atmel SAM3, SAM7 and SAM9 ARM-based + microcontrollers. + + http://www.at91.com/linux4sam/bin/view/Linux4SAM/SoftwareTools diff --git a/package/sam-ba/sam-ba.mk b/package/sam-ba/sam-ba.mk new file mode 100644 index 000000000..d00575cf5 --- /dev/null +++ b/package/sam-ba/sam-ba.mk @@ -0,0 +1,22 @@ +SAM_BA_SITE = http://www.atmel.com/dyn/resources/prod_documents/ +SAM_BA_VERSION = 2.10 +SAM_BA_SOURCE = sam-ba_$(SAM_BA_VERSION).zip + +define HOST_SAM_BA_EXTRACT_CMDS + unzip -d $(BUILD_DIR) $(DL_DIR)/$(SAM_BA_SOURCE) + mv $(BUILD_DIR)/sam-ba_cdc_linux/* $(@D) + rmdir $(BUILD_DIR)/sam-ba_cdc_linux/ +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 +# application binary, for easier usage. + +define HOST_SAM_BA_INSTALL_CMDS + mkdir -p $(HOST_DIR)/opt/sam-ba/ + cp -a $(@D)/* $(HOST_DIR)/opt/sam-ba/ + ln -s ../../opt/sam-ba/sam-ba $(HOST_DIR)/usr/bin/sam-ba +endef + +$(eval $(call GENTARGETS,host)) -- cgit v1.2.3