mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
Update to get support for Linux 3.0. Delete the ignore_arch_directory.patch (as it does not apply to 3.16). (From OE-Core rev: 773fc8fc45224e37d442d927ed28d50680fb954c) Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
1.2 KiB
PHP
25 lines
1.2 KiB
PHP
SUMMARY = "Kernel Module Utilities"
|
|
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"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
|
file://lsmod.c;md5=743c873ec42632d2ce37d3c440f366dd"
|
|
SECTION = "base"
|
|
|
|
PACKAGES =+ "module-init-tools-insmod-static module-init-tools-depmod"
|
|
RDEPENDS_${PN} += "module-init-tools-depmod"
|
|
|
|
FILES_module-init-tools-depmod = "${sbindir}/depmod.26"
|
|
FILES_module-init-tools-insmod-static = "${sbindir}/insmod.static"
|
|
|
|
SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/module-init-tools/module-init-tools-${PV}.tar.bz2 \
|
|
file://modutils_extension.patch \
|
|
file://disable_man.patch \
|
|
file://grab_module_memset.patch"
|
|
|
|
inherit autotools
|
|
|
|
# module-init-tools uses AX_ENABLE_BUILDDIR to move rest of configuration steps
|
|
# into a subdir. However this macro is not quite cross friendly. Instead of
|
|
# mangling that macro, a easier way is to take the disable option
|
|
EXTRA_OECONF = "--disable-builddir"
|