1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-15 15:37:03 +00:00

modutils-initscripts: move recipe prior to modutils removal

(From OE-Core rev: 2cdb49b67027663ba9c53eec8e864e909adef0e6)

Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Anders Darander
2011-07-01 15:08:01 +02:00
committed by Richard Purdie
parent c878cb8ba7
commit bdfbb1f27e
3 changed files with 0 additions and 0 deletions
@@ -0,0 +1,8 @@
Upstream-Status: Inappropriate [licensing]
Index: modutils-initscripts-1.0/LICENSE
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ modutils-initscripts-1.0/LICENSE 2010-12-06 14:26:03.570339002 -0800
@@ -0,0 +1 @@
+Public Domain
+36
View File
@@ -0,0 +1,36 @@
#!/bin/sh
### BEGIN INIT INFO
# Provides: module-init-tools
# Required-Start:
# Required-Stop:
# Should-Start: checkroot
# Should-stop:
# Default-Start: S
# Default-Stop:
# Short-Description: Process /etc/modules.
# Description: Load the modules listed in /etc/modules.
### END INIT INFO
LOAD_MODULE=modprobe
[ -f /proc/modules ] || exit 0
[ -f /etc/modules ] || exit 0
[ -e /sbin/modprobe ] || LOAD_MODULE=insmod
if [ ! -f /lib/modules/`uname -r`/modules.dep ]; then
[ "$VERBOSE" != no ] && echo "Calculating module dependencies ..."
depmod -Ae
fi
[ "$VERBOSE" != no ] && echo -n "Loading modules: "
(cat /etc/modules; echo; ) |
while read module args
do
case "$module" in
\#*|"") continue ;;
esac
[ "$VERBOSE" != no ] && echo -n "$module "
eval "$LOAD_MODULE $module $args >/dev/null 2>&1"
done
[ "$VERBOSE" != no ] && echo
exit 0
@@ -0,0 +1,20 @@
SECTION = "base"
DESCRIPTION = "modutils configuration files"
LICENSE = "PD"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7bf87fc37976e93ec66ad84fac58c098"
SRC_URI = "file://modutils.sh \
file://PD.patch"
PR = "r6"
INITSCRIPT_NAME = "modutils.sh"
INITSCRIPT_PARAMS = "start 4 S ."
inherit update-rc.d
do_compile () {
}
do_install () {
install -d ${D}${sysconfdir}/init.d/
install -m 0755 ${WORKDIR}/modutils.sh ${D}${sysconfdir}/init.d/
}