mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Juergen Beisert <jbe@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH] Add the 'kmod' tools and library.
Date: Sun, 25 Dec 2011 18:56:56 +0100	[thread overview]
Message-ID: <201112251856.56188.jbe@pengutronix.de> (raw)

'kmod' is a set of tools to handle common tasks with Linux kernel modules
like insert, remove, list, check properties, resolve dependencies and aliases.
It will become the replacement for the current existing kernel module handling
commands. And future versions of 'udev' will use its library to speed up all
the currenlty time consuming tasks at system start.
    
Signed-off-by: Juergen Beisert <jbe@pengutronix.de>

diff --git a/rules/kmod.in b/rules/kmod.in
new file mode 100644
index 0000000..f99b161
--- /dev/null
+++ b/rules/kmod.in
@@ -0,0 +1,38 @@
+## SECTION=system_libraries
+
+menuconfig KMOD
+	tristate
+	select ZLIB if KMOD_ZLIB
+	prompt "kmod                          "
+	help
+	  kmod is a set of tools to handle common tasks with Linux kernel
+	  modules like insert, remove, list, check properties, resolve
+	  dependencies and aliases.
+
+if KMOD
+
+config KMOD_TOOLS
+	bool
+	prompt "install tools"
+	help
+	  Install tools that provide same functionality as the module-init-tools
+
+config KMOD_ZLIB
+	bool
+	prompt "use system zlib"
+	help
+	  Use the system zlib to handle compressed modules
+
+config KMOD_LOGGING
+	bool
+	prompt "enable syslog"
+	help
+	  Enable syslog based logging
+
+config KMOD_DEBUG
+	bool
+	prompt "enable debug output"
+	help
+	  Make the package more noisy
+
+endif
diff --git a/rules/kmod.make b/rules/kmod.make
new file mode 100644
index 0000000..9ed5342
--- /dev/null
+++ b/rules/kmod.make
@@ -0,0 +1,89 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2011 by Juergen Beisert <jbe@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_KMOD) += kmod
+
+#
+# Paths and names
+#
+KMOD_VERSION	:= 2
+KMOD_MD5	:= 6017364434377f6724f749d7a28c5d7a
+KMOD		:= kmod-$(KMOD_VERSION)
+KMOD_SUFFIX	:= tar.xz
+KMOD_URL	:= http://packages.profusion.mobi/kmod/$(KMOD).$(KMOD_SUFFIX)
+KMOD_SOURCE	:= $(SRCDIR)/$(KMOD).$(KMOD_SUFFIX)
+KMOD_DIR	:= $(BUILDDIR)/$(KMOD)
+# note: library: LGPLv2, tools: GPLv2
+KMOD_LICENSE	:= GPLv2/LGPLv2
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+KMOD_CONF_TOOL	:= autoconf
+KMOD_CONF_OPT	:= $(CROSS_AUTOCONF_USR)  \
+	--enable-silent-rules \
+	--disable-dependency-tracking \
+	--disable-static \
+	--enable-shared
+
+ifdef PTXCONF_KMOD_TOOLS
+KMOD_CONF_OPT += --enable-tools
+else
+KMOD_CONF_OPT += --disable-tools
+endif
+
+ifdef PTXCONF_KMOD_DEBUG
+KMOD_CONF_OPT += --enable-debug
+else
+KMOD_CONF_OPT += --disable-debug
+endif
+
+ifdef PTXCONF_KMOD_ZLIB
+KMOD_CONF_OPT += --enable-zlib
+else
+KMOD_CONF_OPT += --disable-zlib
+endif
+
+ifdef PTXCONF_KMOD_LOGGING
+KMOD_CONF_OPT += --enable-logging
+else
+KMOD_CONF_OPT += --disable-logging
+endif
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/kmod.targetinstall:
+	@$(call targetinfo)
+
+	@$(call install_init, kmod)
+	@$(call install_fixup, kmod,PRIORITY,optional)
+	@$(call install_fixup, kmod,SECTION,base)
+	@$(call install_fixup, kmod,AUTHOR,"Juergen Beisert <jbe@pengutronix.de>")
+	@$(call install_fixup, kmod,DESCRIPTION,"Linux kernel module handling")
+
+	@$(call install_lib, kmod, 0, 0, 0644, libkmod)
+
+ifdef PTXCONF_KMOD_TOOLS
+	@for file in kmod-insmod kmod-lsmod kmod-modinfo kmod-modprobe kmod-rmmod; \
+		do \
+			$(call install_copy, kmod, 0, 0, 0755, -, /usr/bin/$$file); \
+		done
+endif
+	@$(call install_finish, kmod)
+
+	@$(call touch)
+
+# vim: syntax=make

-- 
Pengutronix e.K.                              | Juergen Beisert             |
Linux Solutions for Science and Industry      | http://www.pengutronix.de/  |

-- 
ptxdist mailing list
ptxdist@pengutronix.de

             reply	other threads:[~2011-12-25 17:58 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-25 17:56 Juergen Beisert [this message]
2012-01-04  9:55 ` Michael Olbrich
2012-01-04 10:12   ` Juergen Beisert
2012-01-04 10:50     ` 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=201112251856.56188.jbe@pengutronix.de \
    --to=jbe@pengutronix.de \
    --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