coldplug: removed, it's not required anymore with current udev.

This commit is contained in:
Tilman Sauerbeck 2008-04-11 12:16:49 +02:00
parent 589e5a2eaa
commit b0c4a8404e
4 changed files with 0 additions and 49 deletions

View File

@ -1,3 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/coldplug

View File

@ -1 +0,0 @@
42a114cb0baece178a10ad1bb73f6f08 coldplug.rc

View File

@ -1,13 +0,0 @@
# Description: Coldplugging script for boot-time hotplug functionality
# URL: http://linux-hotplug.sourceforge.net/
# Maintainer: Matt Housh, jaeger at morpheus dot net
# Depends on: hotplug
name=coldplug
version=2004_09_23
release=1
source=($name.rc)
build() {
install -D -m 0755 $SRC/$name.rc $PKG/etc/rc.d/$name
}

View File

@ -1,32 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/coldplug: load modules at boot-time for non-hotplugged devices
#
case $1 in
start)
# Notify the user if hotplug support is missing from their kernel.
if [ ! -f /proc/sys/kernel/hotplug ]
then
echo "CONFIG_HOTPLUG (hotplug support) is missing from your kernel!"
exit 1
fi
# Check for hotplug package
if [ ! -d /etc/hotplug ]
then
echo "Coldplug requires hotplug!"
exit 1
fi
# Do the deed
for i in /etc/hotplug/*.rc
do
$i start
done
;;
stop)
;;
restart)
;;
*)
;;
esac