* [ptxdist] [PATCH v4] minicoredumper: New package
@ 2018-10-23 13:49 Uwe Kleine-König
0 siblings, 0 replies; only message in thread
From: Uwe Kleine-König @ 2018-10-23 13:49 UTC (permalink / raw)
To: ptxdist
Tested-by: Roland Hieber <r.hieber@pengutronix.de>
Acked-by: Roland Hieber <r.hieber@pengutronix.de>
Tested-by: Alexander Dahl <ada@thorsis.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
Hello,
On Tue, Oct 23, 2018 at 03:37:44PM +0200, Alexander Dahl wrote:
> what about the minor issues I reported with Message-Id
> <4087030.zncrgpGN7O@ada> back in August? ;-)
hupsi, I missed not only these, but also the feedback by Roland (even
though he only provided his ack/test). So:
Changes since v3, sent with Message-Id:
20181023132846.1473-1-u.kleine-koenig@pengutronix.de:
- add Tested-by and Ack by Roland and Alexander
- make PTXCONF_MINICOREDUMPER tristate (found by Alexander)
- fix a tpyo (found by Alexander)
rules/minicoredumper.in | 21 ++++++++++++
rules/minicoredumper.make | 68 +++++++++++++++++++++++++++++++++++++++
2 files changed, 89 insertions(+)
create mode 100644 rules/minicoredumper.in
create mode 100644 rules/minicoredumper.make
diff --git a/rules/minicoredumper.in b/rules/minicoredumper.in
new file mode 100644
index 000000000000..cc8008d1c39f
--- /dev/null
+++ b/rules/minicoredumper.in
@@ -0,0 +1,21 @@
+## SECTION=shell_and_console
+
+config MINICOREDUMPER
+ tristate
+ prompt "minicoredumper"
+ select LIBELF
+ select JSON_C
+ help
+ The minicoredumper project provides a program that handles the
+ creation of core dump files on Linux. It can produce much smaller
+ core dump files by making use of sparse files, compression, and
+ allowing the user to configure what parts of the process memory image
+ should be dumped.
+
+ Note that there are currently no mechanisms integrated to
+ automatically register minicoredumper as kernel coredump helper. So
+ you might want to do
+
+ echo '|/usr/sbin/minicoredumper %P %u %g %s %t %h %e' > /proc/sys/kernel/core_pattern
+
+ by hand to actually make use of it.
diff --git a/rules/minicoredumper.make b/rules/minicoredumper.make
new file mode 100644
index 000000000000..af01ece49805
--- /dev/null
+++ b/rules/minicoredumper.make
@@ -0,0 +1,68 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2018 by Uwe Kleine-Koenig <u.kleine-koenig@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_MINICOREDUMPER) += minicoredumper
+
+#
+# Paths and names
+#
+MINICOREDUMPER_VERSION := 2.0.1
+MINICOREDUMPER_MD5 := 813b864e0c6a833d14bab244723de6a4
+MINICOREDUMPER := minicoredumper-$(MINICOREDUMPER_VERSION)
+MINICOREDUMPER_SUFFIX := tar.xz
+MINICOREDUMPER_URL := https://linutronix.de/minicoredumper/files/$(MINICOREDUMPER).$(MINICOREDUMPER_SUFFIX)
+MINICOREDUMPER_SOURCE := $(SRCDIR)/$(MINICOREDUMPER).$(MINICOREDUMPER_SUFFIX)
+MINICOREDUMPER_DIR := $(BUILDDIR)/$(MINICOREDUMPER)
+MINICOREDUMPER_LICENSE := BSD AND LGPL-2.1
+MINICOREDUMPER_LICENSE_FILES := file://COPYING;md5=71827c617ec7b45a0dd23658347cc1e9
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+MINICOREDUMPER_CONF_TOOL := autoconf
+MINICOREDUMPER_CONF_OPT := \
+ $(CROSS_AUTOCONF_USR) \
+ --disable-silent-rules \
+ --without-coreinject \
+ --with-minicoredumper \
+ --without-minicoredumper_regd \
+ --without-minicoredumper_trigger \
+ --without-libminicoredumper \
+ --without-minicoredumper_demo \
+ --without-werror \
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/minicoredumper.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, minicoredumper)
+ @$(call install_fixup, minicoredumper, PRIORITY, optional)
+ @$(call install_fixup, minicoredumper, SECTION, base)
+ @$(call install_fixup, minicoredumper, AUTHOR, "Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>")
+ @$(call install_fixup, minicoredumper, DESCRIPTION, missing)
+
+ @$(call install_copy, minicoredumper, 0, 0, 0755, -, /usr/sbin/minicoredumper)
+
+ @$(call install_alternative_tree, minicoredumper, 0, 0, /etc/minicoredumper)
+
+ @$(call install_copy, minicoredumper, 0, 0, 0755, /var/crash/minicoredumper)
+
+ @$(call install_finish, minicoredumper)
+
+ @$(call touch)
+
+# vim: syntax=make
--
2.19.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2018-10-23 13:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-23 13:49 [ptxdist] [PATCH v4] minicoredumper: New package Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox