From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from gallifrey.ext.pengutronix.de ([2001:6f8:1178:4:5054:ff:fe8d:eefb] helo=localhost) by metis.ext.pengutronix.de with esmtp (Exim 4.72) (envelope-from ) id 1ResLI-0003et-7Q for ptxdist@pengutronix.de; Sun, 25 Dec 2011 18:58:40 +0100 From: Juergen Beisert Date: Sun, 25 Dec 2011 18:56:56 +0100 MIME-Version: 1.0 Content-Disposition: inline Message-Id: <201112251856.56188.jbe@pengutronix.de> Subject: [ptxdist] [PATCH] Add the 'kmod' tools and library. Reply-To: ptxdist@pengutronix.de List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: ptxdist-bounces@pengutronix.de Errors-To: ptxdist-bounces@pengutronix.de To: ptxdist@pengutronix.de '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 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 +# +# 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 ") + @$(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