diff options
Diffstat (limited to 'meta/recipes-kernel/module-init-tools/module-init-tools.inc')
-rw-r--r-- | meta/recipes-kernel/module-init-tools/module-init-tools.inc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-kernel/module-init-tools/module-init-tools.inc b/meta/recipes-kernel/module-init-tools/module-init-tools.inc new file mode 100644 index 0000000000..f1319ad90d --- /dev/null +++ b/meta/recipes-kernel/module-init-tools/module-init-tools.inc | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "This package contains a set of programs for loading, inserting, and removing kernel modules for Linux (versions 2.5.48 and above). It serves the same function that the modutils package serves for Linux 2.4" | ||
2 | LICENSE = "GPLv2+" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
4 | file://lsmod.c;md5=743c873ec42632d2ce37d3c440f366dd" | ||
5 | SECTION = "base" | ||
6 | |||
7 | PACKAGES =+ "module-init-tools-insmod-static module-init-tools-depmod" | ||
8 | RDEPENDS_${PN} += "module-init-tools-depmod" | ||
9 | |||
10 | FILES_module-init-tools-depmod = "${sbindir}/depmod.26" | ||
11 | FILES_module-init-tools-insmod-static = "${sbindir}/insmod.static" | ||
12 | |||
13 | SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/kernel/module-init-tools/module-init-tools-${PV}.tar.bz2 \ | ||
14 | file://ignore_arch_directory.patch \ | ||
15 | file://modutils_extension.patch \ | ||
16 | file://disable_man.patch \ | ||
17 | file://grab_module_memset.patch" | ||
18 | |||
19 | inherit autotools | ||
20 | |||
21 | # module-init-tools uses AX_ENABLE_BUILDDIR to move rest of configuration steps | ||
22 | # into a subdir. However this macro is not quite cross friendly. Instead of | ||
23 | # mangling that macro, a easier way is to take the disable option | ||
24 | EXTRA_OECONF = "--disable-builddir" | ||