summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/rules
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2017-01-06 19:14:45 +0100
committerRobert Schwebel <r.schwebel@pengutronix.de>2017-01-06 19:14:45 +0100
commit033ce60711e1011af5bce8dd3b0644e2d1e4d10f (patch)
treee726908214c767434c8fb7ab7ceef5257f73bcd4 /configs/platform-v7a/rules
parent7ae73e53fad51292ad214fc922961a7a84764fdd (diff)
downloadDistroKit-033ce60711e1011af5bce8dd3b0644e2d1e4d10f.tar.gz
DistroKit-033ce60711e1011af5bce8dd3b0644e2d1e4d10f.tar.xz
WIP: platform-v7a: add support for afi-gf
* not tested yet Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'configs/platform-v7a/rules')
-rw-r--r--configs/platform-v7a/rules/barebox-gf.make92
-rw-r--r--configs/platform-v7a/rules/post/genimage-fixup.make1
2 files changed, 93 insertions, 0 deletions
diff --git a/configs/platform-v7a/rules/barebox-gf.make b/configs/platform-v7a/rules/barebox-gf.make
new file mode 100644
index 0000000..c28e677
--- /dev/null
+++ b/configs/platform-v7a/rules/barebox-gf.make
@@ -0,0 +1,92 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Robert Schwebel <r.schwebel@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_BAREBOX_GF) += barebox-gf
+
+#
+# Paths and names
+#
+BAREBOX_GF_VERSION := 2016.05.0
+BAREBOX_GF_MD5 :=
+BAREBOX_GF := barebox-$(BAREBOX_GF_VERSION)
+BAREBOX_GF_SUFFIX := tar.bz2
+BAREBOX_GF_DIR := $(BUILDDIR)/barebox-gf-$(BAREBOX_GF_VERSION)
+BAREBOX_GF_CONFIG := $(PTXDIST_PLATFORMCONFIGDIR)/barebox-gf.config.$(BAREBOX_GF_VERSION)
+BAREBOX_GF_LICENSE := GPL-2.0
+BAREBOX_GF_URL := $(call barebox-url, BAREBOX_GF)
+BAREBOX_GF_SOURCE := $(SRCDIR)/$(BAREBOX_GF).$(BAREBOX_GF_SUFFIX)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+BAREBOX_GF_BLACKLIST := \
+ TARGET_HARDEN_RELRO \
+ TARGET_HARDEN_BINDNOW \
+ TARGET_HARDEN_PIE \
+ TARGET_DEBUG
+
+BAREBOX_GF_CONF_ENV := KCONFIG_NOTIMESTAMP=1
+BAREBOX_GF_CONF_OPT := $(call barebox-opts, BAREBOX_GF)
+
+BAREBOX_GF_MAKE_ENV := $(BAREBOX_GF_CONF_ENV)
+BAREBOX_GF_MAKE_OPT := $(BAREBOX_GF_CONF_OPT)
+
+BAREBOX_GF_IMAGES := barebox.bin
+BAREBOX_GF_IMAGES := $(addprefix $(BAREBOX_GF_DIR)/,$(BAREBOX_GF_IMAGES))
+
+ifdef PTXCONF_BAREBOX_GF
+$(BAREBOX_GF_CONFIG):
+ @echo
+ @echo "****************************************************************************"
+ @echo " Please generate a bareboxconfig with 'ptxdist menuconfig barebox-gf'"
+ @echo "****************************************************************************"
+ @echo
+ @echo
+ @exit 1
+endif
+
+$(STATEDIR)/barebox-gf.prepare: $(BAREBOX_GF_CONFIG)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+BAREBOX_GF_INSTALL_OPT := \
+ $(call barebox-opts, BAREBOX_GF)
+
+$(STATEDIR)/barebox-gf.install:
+ @$(call targetinfo)
+ @$(foreach image, $(BAREBOX_GF_IMAGES), \
+ install -m 644 \
+ $(image) $(IMAGEDIR)/$(notdir $(image))-gf;)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Clean
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/barebox-gf.clean:
+ @$(call targetinfo)
+ @$(call clean_pkg, BAREBOX_GF)
+ @$(foreach image, $(BAREBOX_GF_IMAGES), \
+ rm -fv $(IMAGEDIR)/$(notdir $(image))-gf;)
+
+# ----------------------------------------------------------------------------
+# oldconfig / menuconfig
+# ----------------------------------------------------------------------------
+
+barebox-gf_oldconfig barebox-gf_menuconfig barebox-gf_nconfig: $(STATEDIR)/barebox-gf.extract
+ @$(call world/kconfig, BAREBOX_GF, $(subst barebox-gf_,,$@))
+
+# vim: syntax=make
diff --git a/configs/platform-v7a/rules/post/genimage-fixup.make b/configs/platform-v7a/rules/post/genimage-fixup.make
index 67c5deb..8ce221b 100644
--- a/configs/platform-v7a/rules/post/genimage-fixup.make
+++ b/configs/platform-v7a/rules/post/genimage-fixup.make
@@ -1,3 +1,4 @@
$(IMAGEDIR)/boot.vfat: $(STATEDIR)/kernel.targetinstall.post
$(IMAGEDIR)/boot.vfat: $(STATEDIR)/barebox.targetinstall.post
$(IMAGEDIR)/boot.vfat: $(STATEDIR)/barebox-rpi2.targetinstall.post
+$(IMAGEDIR)/boot.vfat: $(STATEDIR)/barebox-gf.targetinstall.post