From: jon@ringle.org
To: ptxdist@pengutronix.de
Cc: Jon Ringle <jringle@gridpoint.com>
Subject: [ptxdist] [PATCH v2] initramfs-tools: Restore package
Date: Sat, 7 Jul 2018 03:22:37 -0400 [thread overview]
Message-ID: <1530948157-28476-2-git-send-email-jon@ringle.org> (raw)
In-Reply-To: <1530948157-28476-1-git-send-email-jon@ringle.org>
From: Jon Ringle <jringle@gridpoint.com>
This was removed in 4e8ea1703cad595f3136f0d48ae93de73a180c40
However, initramfs-tools is still being used to install scripts provided by
this package.
Signed-off-by: Jon Ringle <jringle@gridpoint.com>
---
rules/initmethod.in | 5 +++
rules/initramfs-tools.in | 30 ++++++++++++++
rules/initramfs-tools.make | 97 ++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 132 insertions(+)
create mode 100644 rules/initramfs-tools.in
create mode 100644 rules/initramfs-tools.make
diff --git a/rules/initmethod.in b/rules/initmethod.in
index c1ef054..b8c0b9f 100644
--- a/rules/initmethod.in
+++ b/rules/initmethod.in
@@ -26,6 +26,11 @@ choice
select SYSTEMD
prompt "systemd "
+ config INITMETHOD_INITRAMFS
+ bool
+ select INITRAMFS_TOOLS
+ prompt "initramfs init "
+
endchoice
source "generated/initmethod.in"
diff --git a/rules/initramfs-tools.in b/rules/initramfs-tools.in
new file mode 100644
index 0000000..010b876
--- /dev/null
+++ b/rules/initramfs-tools.in
@@ -0,0 +1,30 @@
+## SECTION=initmethod
+
+if INITMETHOD_INITRAMFS || ALLYES
+
+menuconfig INITRAMFS_TOOLS
+ bool
+ prompt "initramfs-tools "
+ help
+ Install initramfs skeleton framework
+
+if INITRAMFS_TOOLS
+
+config INITRAMFS_TOOLS_SCRIPTS_INIT
+ bool "install /scripts/init "
+ help
+ FIXME
+
+config INITRAMFS_TOOLS_SCRIPTS_LOCAL
+ bool "install /scripts/local "
+ help
+ FIXME
+
+config INITRAMFS_TOOLS_SCRIPTS_NFS
+ bool "install /scripts/nfs "
+ help
+ FIXME
+
+endif
+
+endif
diff --git a/rules/initramfs-tools.make b/rules/initramfs-tools.make
new file mode 100644
index 0000000..987333e
--- /dev/null
+++ b/rules/initramfs-tools.make
@@ -0,0 +1,97 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2009 by Jon Ringle <jon@ringle.org>
+#
+# 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_INITRAMFS_TOOLS) += initramfs-tools
+
+#
+# Paths and names
+#
+INITRAMFS_TOOLS_VERSION := 0.130
+INITRAMFS_TOOLS_MD5 := f219c0277766104005419ee35151c5d4
+INITRAMFS_TOOLS_SUFFIX := tar.gz
+INITRAMFS_TOOLS := initramfs-tools-v$(INITRAMFS_TOOLS_VERSION)
+INITRAMFS_TOOLS_TARBALL := $(INITRAMFS_TOOLS).$(INITRAMFS_TOOLS_SUFFIX)
+INITRAMFS_TOOLS_URL := https://salsa.debian.org/kernel-team/initramfs-tools/-/archive/v$(INITRAMFS_TOOLS_VERSION)/$(INITRAMFS_TOOLS_TARBALL)
+INITRAMFS_TOOLS_SOURCE := $(SRCDIR)/$(INITRAMFS_TOOLS_TARBALL)
+INITRAMFS_TOOLS_DIR := $(BUILDDIR)/$(INITRAMFS_TOOLS)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/initramfs-tools.prepare:
+ @$(call targetinfo)
+ @echo "DPKG_ARCH=$(PTXCONF_ARCH_STRING)" > $(INITRAMFS_TOOLS_DIR)/conf/arch.conf
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/initramfs-tools.compile:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/initramfs-tools.install:
+ @$(call targetinfo)
+ @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/initramfs-tools.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, initramfs-tools)
+ @$(call install_fixup, initramfs-tools,PRIORITY,optional)
+ @$(call install_fixup, initramfs-tools,SECTION,base)
+ @$(call install_fixup, initramfs-tools,AUTHOR,"Jon Ringle <jon@ringle.org>")
+ @$(call install_fixup, initramfs-tools,DESCRIPTION,missing)
+
+ @$(call install_alternative, initramfs-tools, 0, 0, 0755, /init)
+ @$(call install_alternative, initramfs-tools, 0, 0, 0755, /conf/initramfs.conf)
+ @$(call install_alternative, initramfs-tools, 0, 0, 0755, /conf/arch.conf)
+ @$(call install_alternative, initramfs-tools, 0, 0, 0755, /scripts/functions)
+
+ifdef PTXCONF_INITRAMFS_TOOLS_SCRIPTS_INIT
+ @cd $(INITRAMFS_TOOLS_DIR) && \
+ find scripts/init-* -type d | while read dir; do \
+ $(call install_alternative_tree, initramfs-tools, 0, 0, /$${dir}$(ptx/nl)); \
+ done
+endif
+
+ifdef PTXCONF_INITRAMFS_TOOLS_SCRIPTS_LOCAL
+ @$(call install_alternative, initramfs-tools, 0, 0, 0755, /scripts/local)
+ @cd $(INITRAMFS_TOOLS_DIR) && \
+ find scripts/local-* -type d | while read dir; do \
+ $(call install_alternative_tree, initramfs-tools, 0, 0, /$${dir}$(ptx/nl)); \
+ done
+endif
+
+ifdef PTXCONF_INITRAMFS_TOOLS_SCRIPTS_NFS
+ @$(call install_alternative, initramfs-tools, 0, 0, 0755, /scripts/nfs)
+ @cd $(INITRAMFS_TOOLS_DIR) && \
+ find scripts/nfs-* -type d | while read dir; do \
+ $(call install_alternative_tree, initramfs-tools, 0, 0, /$${dir}$(ptx/nl)); \
+ done
+endif
+
+ @$(call install_finish, initramfs-tools)
+ @$(call touch)
+
+# vim: syntax=make
--
1.9.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
next prev parent reply other threads:[~2018-07-07 7:22 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-07 7:22 [ptxdist] [PATCH] image-root-tgz: Add IMAGE_ROOT_TGZ_LABEL option jon
2018-07-07 7:22 ` jon [this message]
2018-07-10 7:48 ` [ptxdist] [PATCH v2] initramfs-tools: Restore package Michael Olbrich
2018-07-11 4:58 ` Jon Ringle
2018-07-11 7:55 ` Michael Olbrich
2018-07-10 7:29 ` [ptxdist] [PATCH] image-root-tgz: Add IMAGE_ROOT_TGZ_LABEL option Michael Olbrich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1530948157-28476-2-git-send-email-jon@ringle.org \
--to=jon@ringle.org \
--cc=jringle@gridpoint.com \
--cc=ptxdist@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox