summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-01-25 20:37:03 +0100
committerRobert Schwebel <r.schwebel@pengutronix.de>2021-02-01 19:00:16 +0100
commita9e6149a8348e0f130b1efe5d31d9440a80017ef (patch)
treeb7e85d72f76b820dce60c1ad6c92b4df01e428b2
parentd3e478ca3d851e552b56c14dee3b3431c4c625ea (diff)
downloadDistroKit-a9e6149a8348e0f130b1efe5d31d9440a80017ef.tar.gz
DistroKit-a9e6149a8348e0f130b1efe5d31d9440a80017ef.tar.xz
genimage: update to v14
v14 adds support for gpt-no-backup, which allows us to shrink our GPT image sizes for the lxa-mc1 and stm32mp157c-dk. This commit can be reverted with the migration to ptxdist v2020.02.0. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
-rw-r--r--rules/host-genimage.make38
1 files changed, 38 insertions, 0 deletions
diff --git a/rules/host-genimage.make b/rules/host-genimage.make
new file mode 100644
index 0000000..6e4468d
--- /dev/null
+++ b/rules/host-genimage.make
@@ -0,0 +1,38 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2012 by Michael Olbrich <m.olbrich@pengutronix.de>
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_GENIMAGE) += host-genimage
+
+#
+# Paths and names
+#
+HOST_GENIMAGE_VERSION := 14
+HOST_GENIMAGE_MD5 := 266b5692aba2e2b98db2ec9de7c09a59
+HOST_GENIMAGE := genimage-$(HOST_GENIMAGE_VERSION)
+HOST_GENIMAGE_SUFFIX := tar.xz
+HOST_GENIMAGE_URL := http://www.pengutronix.de/software/genimage/download/$(HOST_GENIMAGE).$(HOST_GENIMAGE_SUFFIX)
+HOST_GENIMAGE_SOURCE := $(SRCDIR)/$(HOST_GENIMAGE).$(HOST_GENIMAGE_SUFFIX)
+HOST_GENIMAGE_DIR := $(HOST_BUILDDIR)/$(HOST_GENIMAGE)
+HOST_GENIMAGE_LICENSE := GPL-2.0-only
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+HOST_GENIMAGE_CONF_TOOL := autoconf
+HOST_GENIMAGE_CONF_OPT := \
+ $(HOST_AUTOCONF) \
+ --enable-largefile
+
+# vim: syntax=make