summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/rules
diff options
context:
space:
mode:
Diffstat (limited to 'configs/platform-v7a/rules')
-rw-r--r--configs/platform-v7a/rules/barebox-vexpress.make1
-rw-r--r--configs/platform-v7a/rules/blspec-vexpress.make38
-rw-r--r--configs/platform-v7a/rules/image-vexpress-nor.make37
-rw-r--r--configs/platform-v7a/rules/image-vexpress.make33
4 files changed, 109 insertions, 0 deletions
diff --git a/configs/platform-v7a/rules/barebox-vexpress.make b/configs/platform-v7a/rules/barebox-vexpress.make
index 54275db..c240362 100644
--- a/configs/platform-v7a/rules/barebox-vexpress.make
+++ b/configs/platform-v7a/rules/barebox-vexpress.make
@@ -70,6 +70,7 @@ $(STATEDIR)/barebox-vexpress.install:
@$(foreach image, $(BAREBOX_VEXPRESS_IMAGES), \
install -m 644 \
$(image) $(IMAGEDIR)/$(notdir $(image))-vexpress;)
+ @install -D -m644 $(BAREBOX_VEXPRESS_DIR)/defaultenv/barebox_zero_env $(IMAGEDIR)/barebox-zero-env-vexpress
@$(call touch)
# ----------------------------------------------------------------------------
diff --git a/configs/platform-v7a/rules/blspec-vexpress.make b/configs/platform-v7a/rules/blspec-vexpress.make
new file mode 100644
index 0000000..c723dae
--- /dev/null
+++ b/configs/platform-v7a/rules/blspec-vexpress.make
@@ -0,0 +1,38 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Chris Fiege <c.fiege@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_BLSPEC_VEXPRESS) += blspec-vexpress
+
+BLSPEC_VEXPRESS_VERSION := 4.11
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/blspec-vexpress.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, blspec-vexpress)
+ @$(call install_fixup,blspec-vexpress,PRIORITY,optional)
+ @$(call install_fixup,blspec-vexpress,SECTION,base)
+ @$(call install_fixup,blspec-vexpress,AUTHOR,"Chris Fiege <c.fiege@pengutronix.de>")
+ @$(call install_fixup,blspec-vexpress,DESCRIPTION,missing)
+
+ @$(call install_alternative, blspec-vexpress, 0, 0, 0644, \
+ /loader/entries/vexpress.conf)
+
+ @$(call install_finish,blspec-vexpress)
+
+ @$(call touch)
+
+# vim: syntax=make
diff --git a/configs/platform-v7a/rules/image-vexpress-nor.make b/configs/platform-v7a/rules/image-vexpress-nor.make
new file mode 100644
index 0000000..20773e1
--- /dev/null
+++ b/configs/platform-v7a/rules/image-vexpress-nor.make
@@ -0,0 +1,37 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2016 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
+#
+IMAGE_PACKAGES-$(PTXCONF_IMAGE_VEXPRESS_NOR) += image-flash
+
+#
+# Paths and names
+#
+IMAGE_VEXPRESS_NOR := image-flash
+IMAGE_VEXPRESS_NOR_DIR := $(BUILDDIR)/$(IMAGE_VEXPRESS_NOR)
+IMAGE_VEXPRESS_NOR_IMAGE := $(IMAGEDIR)/vexpress.norimg
+IMAGE_VEXPRESS_NOR_CONFIG := vexpress-nor.config
+
+# ----------------------------------------------------------------------------
+# Image
+# ----------------------------------------------------------------------------
+
+# Note: no ':' and only works with one device tree
+IMAGE_VEXPRESS_NOR_ENV = \
+ DTB=$(IMAGEDIR)/vexpress-v2p-ca9.dtb
+
+$(IMAGE_VEXPRESS_NOR_IMAGE):
+ @$(call targetinfo)
+ @$(call image/genimage, IMAGE_VEXPRESS_NOR)
+ @$(call finish)
+
+# vim: syntax=make
diff --git a/configs/platform-v7a/rules/image-vexpress.make b/configs/platform-v7a/rules/image-vexpress.make
new file mode 100644
index 0000000..a5d8674
--- /dev/null
+++ b/configs/platform-v7a/rules/image-vexpress.make
@@ -0,0 +1,33 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2017 by Chris Fiege <c.fiege@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_VEXPRESS) += image-vexpress
+
+#
+# Paths and names
+#
+IMAGE_VEXPRESS := image-vexpress
+IMAGE_VEXPRESS_DIR := $(BUILDDIR)/$(IMAGE_VEXPRESS)
+IMAGE_VEXPRESS_IMAGE := $(IMAGEDIR)/vexpress.hdimg
+IMAGE_VEXPRESS_CONFIG := vexpress.config
+
+# ----------------------------------------------------------------------------
+# Image
+# ----------------------------------------------------------------------------
+
+$(IMAGE_VEXPRESS_IMAGE):
+ @$(call targetinfo)
+ @$(call image/genimage, IMAGE_VEXPRESS)
+ @$(call finish)
+
+# vim: syntax=make