summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/kmod/kmod.inc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-01-31 00:34:01 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-07 16:42:47 +0100
commitb4bc0a7f1b90a51e26d6ab74d964ff81cfe05904 (patch)
tree1d35b1b012dbee2f8b0873dcf069a81badf8dc62 /meta/recipes-kernel/kmod/kmod.inc
parent7903a285eefaa9e62bbe9e399233627b330dc9bb (diff)
downloadpoky-b4bc0a7f1b90a51e26d6ab74d964ff81cfe05904.tar.gz
kmod: Add recipes
kmod is replacement for module-init-tools (From OE-Core rev: 716606f5446534e48b45fcc017e8bbdfe7f15e26) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/kmod/kmod.inc')
-rw-r--r--meta/recipes-kernel/kmod/kmod.inc31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc
new file mode 100644
index 0000000000..940a3177c7
--- /dev/null
+++ b/meta/recipes-kernel/kmod/kmod.inc
@@ -0,0 +1,31 @@
1# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
2# Released under the MIT license (see COPYING.MIT for the terms)
3
4DESCRIPTION = "kmod is a set of tools to handle common tasks with Linux kernel modules like \
5 insert, remove, list, check properties, resolve dependencies and aliases."
6HOMEPAGE = "http://packages.profusion.mobi/kmod/"
7LICENSE = "GPL-2.0+ & LGPL-2.1+"
8LICENSE_libkmod = "LGPL-2.1+"
9SECTION = "base"
10PV = "7+git${SRCREV}"
11INC_PR = "r0"
12DEPENDS += "gnome-doc-utils-native"
13LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
14 file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
15 "
16inherit autotools
17
18SRC_URI = "git://git.profusion.mobi/kmod.git;protocol=git;branch=master \
19 file://depmod-search.conf \
20 "
21
22SRCREV = "02629fa02e96763db7460a930239cc93649a52f8"
23
24S = "${WORKDIR}/git"
25
26EXTRA_AUTORECONF += "--install --symlink"
27EXTRA_OECONF +="--enable-debug --enable-logging --enable-tools"
28
29do_configure_prepend () {
30 gtkdocize --docdir ${S}/libkmod/docs || touch ${S}/libkmod/docs/gtk-doc.make
31}