summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/modutils/modutils-collateral.bb
diff options
context:
space:
mode:
authorAnders Darander <anders@chargestorm.se>2011-07-01 15:08:02 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-01 23:34:18 +0100
commit40f93ae7afbdd7f5b4ed61324f9568afd8b65a92 (patch)
treeefdb80dc76d8a2916933c4c095228c350e10dc66 /meta/recipes-kernel/modutils/modutils-collateral.bb
parentf370e45cbbe9dfa35e3b4d26190371b5d1d63d10 (diff)
downloadpoky-40f93ae7afbdd7f5b4ed61324f9568afd8b65a92.tar.gz
modutils: remove modutils
As 2.4 support is being phased out, remove modutils. (From OE-Core rev: e7bc441686c384f025a8b722441bdb1f66d5f8db) Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/modutils/modutils-collateral.bb')
-rw-r--r--meta/recipes-kernel/modutils/modutils-collateral.bb21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-kernel/modutils/modutils-collateral.bb b/meta/recipes-kernel/modutils/modutils-collateral.bb
deleted file mode 100644
index 919b86f95d..0000000000
--- a/meta/recipes-kernel/modutils/modutils-collateral.bb
+++ /dev/null
@@ -1,21 +0,0 @@
1SECTION = "base"
2DESCRIPTION = "modutils configuration files"
3PR = "r3"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
6SRC_URI = "file://modules \
7 file://modules.conf"
8
9do_compile () {
10}
11
12do_install () {
13 install -d ${D}${sysconfdir}
14 install -m 0644 ${WORKDIR}/modules ${D}${sysconfdir}/modules
15 if [ ${MAJOR_KERNEL_VERSION}=2.6 ]; then
16 install -d ${D}${sysconfdir}/modprobe.d
17 else
18 install -m 0644 ${WORKDIR}/modules.conf ${D}${sysconfdir}/modules.conf
19 fi
20
21}