mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 09:16:36 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
25 lines
1.2 KiB
PHP
25 lines
1.2 KiB
PHP
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}/pub/linux/utils/kernel/module-init-tools/module-init-tools-${PV}.tar.bz2 \
|
|
file://ignore_arch_directory.patch \
|
|
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"
|