From: Darren Hart <dvhart@linux.intel.com>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH 07/20] kmod: Add recipes
Date: Thu, 03 May 2012 14:05:34 -0700 [thread overview]
Message-ID: <4FA2F31E.2030707@linux.intel.com> (raw)
In-Reply-To: <e03556364318f69ce5914cc5375bfdf51b9c27d4.1328510188.git.raj.khem@gmail.com>
On 02/05/2012 10:40 PM, Khem Raj wrote:
> kmod is replacement for module-init-tools
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> meta/recipes-kernel/kmod/kmod-native_git.bb | 14 +++++
> meta/recipes-kernel/kmod/kmod.inc | 31 +++++++++++
> meta/recipes-kernel/kmod/kmod/depmod-search.conf | 6 ++
> meta/recipes-kernel/kmod/kmod_git.bb | 62 ++++++++++++++++++++++
> 4 files changed, 113 insertions(+), 0 deletions(-)
> create mode 100644 meta/recipes-kernel/kmod/kmod-native_git.bb
> create mode 100644 meta/recipes-kernel/kmod/kmod.inc
> create mode 100644 meta/recipes-kernel/kmod/kmod/depmod-search.conf
> create mode 100644 meta/recipes-kernel/kmod/kmod_git.bb
>
> diff --git a/meta/recipes-kernel/kmod/kmod-native_git.bb b/meta/recipes-kernel/kmod/kmod-native_git.bb
> new file mode 100644
> index 0000000..96de8b8
> --- /dev/null
> +++ b/meta/recipes-kernel/kmod/kmod-native_git.bb
> @@ -0,0 +1,14 @@
> +# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
> +# Released under the MIT license (see COPYING.MIT for the terms)
> +
> +require kmod.inc
> +inherit native
> +
> +PR = "${INC_PR}.0"
> +
> +do_install_append (){
> + for tool in depmod insmod lsmod modinfo modprobe rmmod
> + do
> + ln -s kmod ${D}${bindir}/$tool
> + done
Do we have to ensure to disable module tools in busybox to avoid
conflict here?
I had a few other questions, but managed to resolve them by the time I
finished reading. It looks good with only the one concern above.
Reviewed-by: Darren Hart <dvhart@liunx.intel.com>
> +}
> diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc
> new file mode 100644
> index 0000000..ea0247e
> --- /dev/null
> +++ b/meta/recipes-kernel/kmod/kmod.inc
> @@ -0,0 +1,31 @@
> +# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
> +# Released under the MIT license (see COPYING.MIT for the terms)
> +
> +DESCRIPTION = "kmod is a set of tools to handle common tasks with Linux kernel modules like \
> +insert, remove, list, check properties, resolve dependencies and aliases."
> +HOMEPAGE = "http://packages.profusion.mobi/kmod/"
> +LICENSE = "GPL-2.0+ & LGPL-2.1+"
> +LICENSE_libkmod = "LGPL-2.1+"
> +SECTION = "base"
> +PV = "4+gitr${SRCREV}"
> +INC_PR = "r0"
> +DEPENDS += "gnome-doc-utils-native"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
> + file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
> + "
> +inherit autotools
> +
> +SRC_URI = "git://git.profusion.mobi/kmod.git;protocol=git;branch=master \
> + file://depmod-search.conf \
> + "
> +
> +SRCREV = "a2c7d3e8b058a2013aa8da5986d1d11fa13d6fd7"
> +
> +S = "${WORKDIR}/git"
> +
> +EXTRA_AUTORECONF += "--install --symlink"
> +EXTRA_OECONF +="--enable-debug --enable-logging --enable-tools"
> +
> +do_configure_prepend () {
> + gtkdocize --docdir ${S}/libkmod/docs || touch ${S}/libkmod/docs/gtk-doc.make
> +}
> diff --git a/meta/recipes-kernel/kmod/kmod/depmod-search.conf b/meta/recipes-kernel/kmod/kmod/depmod-search.conf
> new file mode 100644
> index 0000000..527c0bb
> --- /dev/null
> +++ b/meta/recipes-kernel/kmod/kmod/depmod-search.conf
> @@ -0,0 +1,6 @@
> +#
> +# /etc/depmod.d/depmod.conf
> +#
> +
> +search updates extramodules built-in
> +
> diff --git a/meta/recipes-kernel/kmod/kmod_git.bb b/meta/recipes-kernel/kmod/kmod_git.bb
> new file mode 100644
> index 0000000..eaab47b
> --- /dev/null
> +++ b/meta/recipes-kernel/kmod/kmod_git.bb
> @@ -0,0 +1,62 @@
> +# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
> +# Released under the MIT license (see COPYING.MIT for the terms)
> +
> +require kmod.inc
> +
> +PR = "${INC_PR}.0"
> +
> +PROVIDES_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
> +RPROVIDES_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
> +CONFLICTS_${PN} += "module-init-tools-insmod-static module-init-tools-depmod module-init-tools"
> +
> +# autotools set prefix to /usr, however we want them in /bin and /sbin
> +bindir = "${base_bindir}"
> +sbindir = "${base_sbindir}"
> +libdir = "${base_libdir}"
> +
> +SRC_URI += " \
> + file://depmod-search.conf \
> + "
> +
> +do_install_append () {
> + install -dm755 ${D}${base_bindir}
> + install -dm755 ${D}${base_sbindir}
> + # add symlinks to kmod
> + ln -s ..${base_bindir}/kmod ${D}${base_bindir}/lsmod.kmod
> + for tool in {ins,rm,dep}mod mod{info,probe}; do
> + ln -s ..${base_bindir}/kmod ${D}${base_sbindir}/${tool}.kmod
> + done
> + # configuration directories
> + install -dm755 ${D}${base_libdir}/depmod.d
> + install -dm755 ${D}${base_libdir}/modprobe.d
> + install -dm755 ${D}${sysconfdir}/depmod.d
> + install -dm755 ${D}${sysconfdir}/modprobe.d
> +
> + # install depmod.d file for search/ dir
> + install -Dm644 "${WORKDIR}/depmod-search.conf" "${D}${base_libdir}/depmod.d/search.conf"
> +}
> +
> +pkg_postinst_kmod() {
> + for f in sbin/insmod sbin/modprobe sbin/rmmod sbin/modinfo; do
> + bn=`basename $f`
> + update-alternatives --install /$f $bn /$f.kmod 60
> + done
> + update-alternatives --install /bin/lsmod bin-lsmod /bin/lsmod.kmod 60
> + update-alternatives --install /sbin/lsmod lsmod /bin/lsmod.kmod 60
> + update-alternatives --install /sbin/depmod depmod /sbin/depmod.kmod 60
> +}
> +
> +pkg_prerm_kmod() {
> + for f in sbin/insmod sbin/modprobe sbin/rmmod sbin/modinfo; do
> + bn=`basename $f`
> + update-alternatives --remove $bn /$f.kmod
> + done
> + update-alternatives --remove bin-lsmod /bin/lsmod.kmod
> + update-alternatives --remove lsmod /bin/lsmod.kmod
> + update-alternatives --remove depmod /sbin/depmod.kmod
> +}
> +
> +PACKAGES =+ "libkmod"
> +
> +FILES_libkmod = "${base_libdir}/libkmod*${SOLIBS}"
> +FILES_${PN} += "${base_libdir}/depmod.d ${base_libdir}/modprobe.d"
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
next prev parent reply other threads:[~2012-05-03 21:15 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-06 6:40 [PATCH V2 00/20] uclibc upgrade, initial kmod and thumb tune Khem Raj
2012-02-06 6:40 ` [PATCH 01/20] task-core-tools: Divide it into 3 recipes Khem Raj
2012-02-06 6:40 ` [PATCH 02/20] Enable options needed for ltp to compile Khem Raj
2012-02-06 6:40 ` [PATCH 03/20] arm/tune: Correct the logic which added thumb-interwork to OVERRIDES Khem Raj
2012-02-06 6:40 ` [PATCH 04/20] tunearch/arm: Differentiate between thumb code generation and thumb capability Khem Raj
2012-02-06 6:40 ` [PATCH 05/20] tune-thumb.inc: Delete Khem Raj
2012-02-06 6:40 ` [PATCH 06/20] uclibc: Get the thumb features from tune flags Khem Raj
2012-02-06 6:40 ` [PATCH 07/20] kmod: Add recipes Khem Raj
2012-05-03 21:05 ` Darren Hart [this message]
2012-05-03 22:02 ` Khem Raj
2012-02-06 6:40 ` [PATCH 08/20] module-init-tools: Delete Khem Raj
2012-05-03 21:07 ` Darren Hart
2012-05-03 21:45 ` Khem Raj
2012-02-06 6:40 ` [PATCH 09/20] image.bbclass, kernel.bbclass: Use kmod-native instead of module-init-tools-cross Khem Raj
2012-05-03 21:09 ` Darren Hart
2012-05-03 21:48 ` Khem Raj
2012-02-06 6:40 ` [PATCH 10/20] pseudo: Wrap renameat and opendir Khem Raj
2012-02-07 16:21 ` Saul Wold
2012-02-07 16:31 ` Khem Raj
2012-02-07 16:43 ` Saul Wold
2012-02-07 18:10 ` Khem Raj
2012-02-07 23:21 ` Mark Hatle
2012-02-08 2:00 ` Khem Raj
2012-02-06 6:40 ` [PATCH 11/20] uclibc: Upgrade recipes from 0.9.32 -> 0.9.33 Khem Raj
2012-02-07 19:02 ` Saul Wold
2012-02-07 22:26 ` Khem Raj
2012-02-06 6:40 ` [PATCH 12/20] zlib: Upgrade 1.2.5 -> 1.2.6 Khem Raj
2012-02-07 8:08 ` Saul Wold
2012-02-07 15:31 ` Khem Raj
2012-02-07 15:59 ` Saul Wold
2012-02-07 23:12 ` Khem Raj
2012-02-08 0:19 ` Saul Wold
2012-02-08 2:06 ` Khem Raj
2012-02-11 5:05 ` Steve Sakoman
2012-02-11 5:09 ` Koen Kooi
2012-02-11 8:15 ` Khem Raj
2012-02-11 8:19 ` Khem Raj
2012-02-11 8:26 ` Koen Kooi
2012-02-13 7:48 ` Martin Jansa
2012-02-13 13:23 ` Steve Sakoman
2012-02-13 13:33 ` Martin Jansa
2012-02-13 13:42 ` Koen Kooi
2012-02-14 4:52 ` Lu, Lianhao
2012-02-14 6:24 ` Khem Raj
2012-02-14 9:26 ` Phil Blundell
2012-02-14 6:53 ` Martin Jansa
2012-02-14 14:24 ` Koen Kooi
2012-02-13 15:39 ` Phil Blundell
2012-02-13 17:09 ` Khem Raj
2012-02-21 23:04 ` Richard Purdie
2012-02-21 23:01 ` Richard Purdie
2012-02-22 8:03 ` Koen Kooi
2012-02-22 11:08 ` Richard Purdie
2012-02-06 6:40 ` [PATCH 13/20] runqemu-internal: qemuarm can handle 256M Khem Raj
2012-02-06 6:40 ` [PATCH 14/20] gconf, consolekit: Avoid polkit when compiling with uclibc Khem Raj
2012-02-06 6:40 ` [PATCH 15/20] python: Fix build failure of python-elementtree on x86_64 Khem Raj
2012-02-06 6:40 ` [PATCH 16/20] libdrm: Fix build failure unearthed by uclibc Khem Raj
2012-02-06 6:40 ` [PATCH 17/20] classes, recipes: Replace POKY_* with CORE_IMAGE_* Khem Raj
2012-02-06 6:40 ` [PATCH 18/20] libx11: Backport _XGetRequest API Khem Raj
2012-02-06 6:40 ` [PATCH 19/20] gcc-cross-testing: Fix evaluation of user and target name Khem Raj
2012-02-07 17:21 ` Saul Wold
2012-02-07 18:07 ` Khem Raj
2012-02-07 17:49 ` Otavio Salvador
2012-02-07 18:18 ` Khem Raj
2012-02-06 6:40 ` [PATCH 20/20] mirrors.bbclass: Add yp.org and oe.org to fallback mirrors Khem Raj
2012-02-07 17:49 ` Saul Wold
2012-02-07 18:04 ` Khem Raj
2012-02-08 4:12 ` [PATCH V2 00/20] uclibc upgrade, initial kmod and thumb tune Saul Wold
2012-02-20 12:11 ` Koen Kooi
2012-02-20 16:57 ` Khem Raj
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=4FA2F31E.2030707@linux.intel.com \
--to=dvhart@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/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