aboutsummaryrefslogtreecommitdiffstats
path: root/module-init-tools
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /module-init-tools
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
downloadopenembedded-2c5b8ec6d95cf68650265941530e5ce38c8dd6d9.tar.gz
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'module-init-tools')
-rw-r--r--module-init-tools/module-init-tools-cross_3.1-pre5.bb15
-rw-r--r--module-init-tools/module-init-tools_3.0-pre7.bb0
-rw-r--r--module-init-tools/module-init-tools_3.1-pre5.bb46
3 files changed, 0 insertions, 61 deletions
diff --git a/module-init-tools/module-init-tools-cross_3.1-pre5.bb b/module-init-tools/module-init-tools-cross_3.1-pre5.bb
deleted file mode 100644
index 12592a5578..0000000000
--- a/module-init-tools/module-init-tools-cross_3.1-pre5.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-LICENSE = GPL
-include module-init-tools_${PV}.bb
-inherit cross
-DEFAULT_PREFERENCE = "0"
-PROVIDES += "virtual/${TARGET_PREFIX}depmod"
-
-EXTRA_OECONF_append = " --program-prefix=${TARGET_PREFIX}"
-
-do_stage () {
- oe_runmake install
-}
-
-do_install () {
- :
-}
diff --git a/module-init-tools/module-init-tools_3.0-pre7.bb b/module-init-tools/module-init-tools_3.0-pre7.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/module-init-tools/module-init-tools_3.0-pre7.bb
+++ /dev/null
diff --git a/module-init-tools/module-init-tools_3.1-pre5.bb b/module-init-tools/module-init-tools_3.1-pre5.bb
deleted file mode 100644
index 1938d5f8bc..0000000000
--- a/module-init-tools/module-init-tools_3.1-pre5.bb
+++ /dev/null
@@ -1,46 +0,0 @@
-licenSE = GPL
-SECTION = "base"
-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."
-PR = "r1"
-
-PACKAGES =+ "module-init-tools-insmod-static module-init-tools-depmod"
-RDEPENDS_${PN} += "module-init-tools-depmod"
-
-FILES_module-init-tools-depmod = "${sbindir}/depmod"
-FILES_module-init-tools-insmod-static = "${sbindir}/insmod.static"
-
-SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-${PV}.tar.bz2"
-S = "${WORKDIR}/module-init-tools-${PV}"
-
-bindir = "/bin"
-sbindir = "/sbin"
-
-inherit autotools
-
-do_install() {
- autotools_do_install
- for f in bin/lsmod sbin/insmod sbin/rmmod sbin/modprobe sbin/modinfo; do
- mv ${D}/$f ${D}/$f.26
- done
- install -d ${D}${mandir}
- mv ${D}${prefix}/man/* ${D}${mandir}/
-}
-
-pkg_postinst_module-init-tools() {
-#!/bin/sh
-for f in sbin/insmod sbin/modprobe sbin/rmmod sbin/depmod sbin/modinfo bin/lsmod; do
-bn=`basename $f`
- update-alternatives --install /$f $bn /$f.26 20
-done
-}
-
-pkg_prerm_module-init-tools() {
-#!/bin/sh
-for f in sbin/insmod sbin/modprobe sbin/rmmod sbin/depmod sbin/modinfo bin/lsmod; do
-bn=`basename $f`
- update-alternatives --remove $bn /$f.26
-done
-}
-