diff options
| author | Kevin Tian <kevin.tian@intel.com> | 2010-07-21 13:21:49 +0800 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-21 21:44:37 +0100 |
| commit | b376a803cac9c6403ce7ddf2a4a479292ec9ba85 (patch) | |
| tree | b642f0fbe43e030348858dde2c564b970d88d2d1 /meta/packages/module-init-tools/module-init-tools.inc | |
| parent | 8a251accbfd68078fbab23a96411b76928cf1063 (diff) | |
| download | poky-b376a803cac9c6403ce7ddf2a4a479292ec9ba85.tar.gz | |
module-init-tools: upgrade to 3.12
[Patches]
KEEP _ignore_arch_directory_: ignore /etc/modprobe.d/arch, not sure reason now.
keep it and to be verified later
REMOVE _module-init-tools-remove-index.patch_: in upstream
NEW _disable_man.patch_: a simpler patch to replace below removed two
REMOVE _manpagesopt_: due to above new patch
REMOVE _no_man_rebuild_: ditto
KEEP _modutils_extension_: poky has its own name convention and thus need such knowledge
in code
[Recipe]
- adjust indention
- remove some old lines like ${S} and EXTRA_OECONF
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages/module-init-tools/module-init-tools.inc')
| -rw-r--r-- | meta/packages/module-init-tools/module-init-tools.inc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meta/packages/module-init-tools/module-init-tools.inc b/meta/packages/module-init-tools/module-init-tools.inc index 2db6bcd544..7c9b3f7fa8 100644 --- a/meta/packages/module-init-tools/module-init-tools.inc +++ b/meta/packages/module-init-tools/module-init-tools.inc | |||
| @@ -1,7 +1,7 @@ | |||
| 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" | 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" | 2 | LICENSE = "GPLv2+" |
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ |
| 4 | file://lsmod.c;md5=030a1ab6b7b2b97e9959db0d5f1c093d" | 4 | file://lsmod.c;md5=743c873ec42632d2ce37d3c440f366dd" |
| 5 | SECTION = "base" | 5 | SECTION = "base" |
| 6 | 6 | ||
| 7 | PACKAGES =+ "module-init-tools-insmod-static module-init-tools-depmod" | 7 | PACKAGES =+ "module-init-tools-insmod-static module-init-tools-depmod" |
| @@ -11,13 +11,13 @@ FILES_module-init-tools-depmod = "${sbindir}/depmod.26" | |||
| 11 | FILES_module-init-tools-insmod-static = "${sbindir}/insmod.static" | 11 | FILES_module-init-tools-insmod-static = "${sbindir}/insmod.static" |
| 12 | 12 | ||
| 13 | SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/kernel/module-init-tools/module-init-tools-${PV}.tar.bz2 \ | 13 | SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/kernel/module-init-tools/module-init-tools-${PV}.tar.bz2 \ |
| 14 | file://ignore_arch_directory;apply=yes \ | 14 | file://ignore_arch_directory.patch \ |
| 15 | file://modutils_extension;apply=yes \ | 15 | file://modutils_extension.patch \ |
| 16 | file://no_man_rebuild;apply=yes \ | 16 | file://disable_man.patch" |
| 17 | file://manpagesopt;apply=yes \ | ||
| 18 | file://module-init-tools-remove-index.patch;" | ||
| 19 | S = "${WORKDIR}/module-init-tools-${PV}" | ||
| 20 | |||
| 21 | EXTRA_OECONF = "--disable-manpages" | ||
| 22 | 17 | ||
| 23 | inherit autotools | 18 | inherit autotools |
| 19 | |||
| 20 | # module-init-tools uses AX_ENABLE_BUILDDIR to move rest of configuration steps | ||
| 21 | # into a subdir. However this macro is not quite cross friendly. Instead of | ||
| 22 | # mangling that macro, a easier way is to take the disable option | ||
| 23 | EXTRA_OECONF = "--disable-builddir" | ||
