diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-01-31 00:34:01 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-07 16:42:47 +0100 |
commit | b4bc0a7f1b90a51e26d6ab74d964ff81cfe05904 (patch) | |
tree | 1d35b1b012dbee2f8b0873dcf069a81badf8dc62 /meta/recipes-kernel/kmod/kmod.inc | |
parent | 7903a285eefaa9e62bbe9e399233627b330dc9bb (diff) | |
download | poky-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.inc | 31 |
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 | |||
4 | DESCRIPTION = "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." | ||
6 | HOMEPAGE = "http://packages.profusion.mobi/kmod/" | ||
7 | LICENSE = "GPL-2.0+ & LGPL-2.1+" | ||
8 | LICENSE_libkmod = "LGPL-2.1+" | ||
9 | SECTION = "base" | ||
10 | PV = "7+git${SRCREV}" | ||
11 | INC_PR = "r0" | ||
12 | DEPENDS += "gnome-doc-utils-native" | ||
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ | ||
14 | file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \ | ||
15 | " | ||
16 | inherit autotools | ||
17 | |||
18 | SRC_URI = "git://git.profusion.mobi/kmod.git;protocol=git;branch=master \ | ||
19 | file://depmod-search.conf \ | ||
20 | " | ||
21 | |||
22 | SRCREV = "02629fa02e96763db7460a930239cc93649a52f8" | ||
23 | |||
24 | S = "${WORKDIR}/git" | ||
25 | |||
26 | EXTRA_AUTORECONF += "--install --symlink" | ||
27 | EXTRA_OECONF +="--enable-debug --enable-logging --enable-tools" | ||
28 | |||
29 | do_configure_prepend () { | ||
30 | gtkdocize --docdir ${S}/libkmod/docs || touch ${S}/libkmod/docs/gtk-doc.make | ||
31 | } | ||