summaryrefslogtreecommitdiffstats
path: root/rules/at91bootstrap2.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-10-04 12:59:47 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-10-04 13:00:59 +0200
commita913b284c6ce4eb71a4402039dc317079f60fb99 (patch)
treee60c26457c9a9599510d5319ed37cd0705f119ff /rules/at91bootstrap2.make
parent95ad6607ffbb3a6b4a49b7bc354ed7854b229bc2 (diff)
downloadptxdist-a913b284c6ce4eb71a4402039dc317079f60fb99.tar.gz
ptxdist-a913b284c6ce4eb71a4402039dc317079f60fb99.tar.xz
at91bootstrap2: new packageptxdist-2011.10.0
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/at91bootstrap2.make')
-rw-r--r--rules/at91bootstrap2.make102
1 files changed, 102 insertions, 0 deletions
diff --git a/rules/at91bootstrap2.make b/rules/at91bootstrap2.make
new file mode 100644
index 000000000..4f1aef36e
--- /dev/null
+++ b/rules/at91bootstrap2.make
@@ -0,0 +1,102 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2011 by Michael Olbrich <m.olbrich@pengutronix.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_AT91BOOTSTRAP2) += at91bootstrap2
+
+#
+# Paths and names
+#
+AT91BOOTSTRAP2_VERSION := $(call remove_quotes, $(PTXCONF_AT91BOOTSTRAP2_VERSION))
+AT91BOOTSTRAP2_MD5 := $(call remove_quotes, $(PTXCONF_AT91BOOTSTRAP2_MD5))
+AT91BOOTSTRAP2 := at91bootstrap-$(AT91BOOTSTRAP2_VERSION)
+AT91BOOTSTRAP2_SUFFIX := tar.bz2
+AT91BOOTSTRAP2_URL := ftp://www.at91.com/pub/buildroot/$(AT91BOOTSTRAP2).$(AT91BOOTSTRAP2_SUFFIX)
+AT91BOOTSTRAP2_SOURCE := $(SRCDIR)/$(AT91BOOTSTRAP2).$(AT91BOOTSTRAP2_SUFFIX)
+AT91BOOTSTRAP2_DIR := $(BUILDDIR)/$(AT91BOOTSTRAP2)
+AT91BOOTSTRAP2_CONFIG := $(call remove_quotes, $(PTXDIST_PLATFORMCONFIGDIR)/$(PTXCONF_AT91BOOTSTRAP2_CONFIG))
+AT91BOOTSTRAP2_LICENSE := unknown
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+AT91BOOTSTRAP2_PATH := PATH=$(CROSS_PATH)
+AT91BOOTSTRAP2_MAKEVARS := \
+ HOSTCC=$(HOSTCC) \
+ ARCH=$(PTXCONF_BAREBOX_ARCH_STRING) \
+ CROSS_COMPILE=$(COMPILER_PREFIX)
+
+ifdef PTXCONF_AT91BOOTSTRAP2
+$(AT91BOOTSTRAP2_CONFIG):
+ @echo
+ @echo "************************************************************************************"
+ @echo "* Please generate a at91bootstrap config with 'ptxdist menuconfig 'at91bootstrap2' *"
+ @echo "************************************************************************************"
+ @echo
+ @echo
+ @exit 1
+endif
+
+$(STATEDIR)/at91bootstrap2.prepare: $(AT91BOOTSTRAP2_CONFIG)
+ @$(call targetinfo)
+
+ @echo "Using at91bootstrap config file: $(AT91BOOTSTRAP2_CONFIG)"
+ @install -m 644 $(AT91BOOTSTRAP2_CONFIG) $(AT91BOOTSTRAP2_DIR)/.config
+ @$(call ptx/oldconfig, AT91BOOTSTRAP2)
+
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/at91bootstrap2.install:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/at91bootstrap2.targetinstall:
+ @$(call targetinfo)
+ install -m644 $(AT91BOOTSTRAP2_DIR)/binaries/*boot-$(AT91BOOTSTRAP2_VERSION).bin \
+ $(IMAGEDIR)/at91bootstrap.bin
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/at91bootstrap2.clean:
+ @$(call targetinfo)
+ @$(call clean_pkg, AT91BOOTSTRAP2)
+ @rm -rf $(IMAGEDIR)/at91bootstrap.bin
+
+# ----------------------------------------------------------------------------
+# oldconfig / menuconfig
+# ----------------------------------------------------------------------------
+
+at91bootstrap2_oldconfig at91bootstrap2_menuconfig: $(STATEDIR)/at91bootstrap2.extract
+ @if test -e $(AT91BOOTSTRAP2_CONFIG); then \
+ cp $(AT91BOOTSTRAP2_CONFIG) $(AT91BOOTSTRAP2_DIR)/.config; \
+ fi
+ cd $(AT91BOOTSTRAP2_DIR) && \
+ $(AT91BOOTSTRAP2_PATH) $(AT91BOOTSTRAP2_ENV) $(MAKE) $(AT91BOOTSTRAP2_MAKEVARS) $(subst at91bootstrap2_,,$@)
+ @if cmp -s $(AT91BOOTSTRAP2_DIR)/.config $(AT91BOOTSTRAP2_CONFIG); then \
+ echo "at91bootstrap configuration unchanged"; \
+ else \
+ cp $(AT91BOOTSTRAP2_DIR)/.config $(AT91BOOTSTRAP2_CONFIG); \
+ fi
+
+# vim: syntax=make