summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/rules
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2017-06-16 08:57:23 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2017-06-30 21:50:36 +0200
commitcb608a9d8c1b96eed87d8f52a459773cb8405525 (patch)
treeae8d3c72ea6dbf596072231a7464377eec380869 /configs/platform-v7a/rules
parent38b7d0dbb9d1902be4e27d0fadc1b829afdd5c33 (diff)
downloadDistroKit-cb608a9d8c1b96eed87d8f52a459773cb8405525.tar.gz
DistroKit-cb608a9d8c1b96eed87d8f52a459773cb8405525.tar.xz
platform-v7a: Gute Fee: add board support
Re-add support for Gute Fee, with the configs+rules for image creation and bootspec entries. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> [improve commit description] Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'configs/platform-v7a/rules')
-rw-r--r--configs/platform-v7a/rules/image-gf.make33
1 files changed, 33 insertions, 0 deletions
diff --git a/configs/platform-v7a/rules/image-gf.make b/configs/platform-v7a/rules/image-gf.make
new file mode 100644
index 0000000..d918ae7
--- /dev/null
+++ b/configs/platform-v7a/rules/image-gf.make
@@ -0,0 +1,33 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Sascha Hauer <s.hauer@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
+#
+IMAGE_PACKAGES-$(PTXCONF_IMAGE_GF) += image-gf
+
+#
+# Paths and names
+#
+IMAGE_GF := image-gf
+IMAGE_GF_DIR := $(BUILDDIR)/$(IMAGE_GF)
+IMAGE_GF_IMAGE := $(IMAGEDIR)/gf.hdimg
+IMAGE_GF_CONFIG := gf.config
+
+# ----------------------------------------------------------------------------
+# Image
+# ----------------------------------------------------------------------------
+
+$(IMAGE_GF_IMAGE):
+ @$(call targetinfo)
+ @$(call image/genimage, IMAGE_GF)
+ @$(call finish)
+
+# vim: syntax=make