aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-12-21 22:43:22 +0000
committerBill Nottingham <notting@redhat.com>2005-12-21 22:43:22 +0000
commit4c808a519b915dee8be333e6926bcda294efe8c1 (patch)
tree9a612eac965a9772490a8c3c32458fde1692dae4 /rc.d
parent3188d78b93c77011af7ea4b3251a899e3d445e66 (diff)
downloadinitscripts-4c808a519b915dee8be333e6926bcda294efe8c1.tar
initscripts-4c808a519b915dee8be333e6926bcda294efe8c1.tar.gz
initscripts-4c808a519b915dee8be333e6926bcda294efe8c1.tar.bz2
initscripts-4c808a519b915dee8be333e6926bcda294efe8c1.tar.xz
initscripts-4c808a519b915dee8be333e6926bcda294efe8c1.zip
udev now loads modules - use that, remove the kmodule stuff
don't set hotplug, it can't possibly work
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/init.d/network6
-rwxr-xr-xrc.d/rc.sysinit82
2 files changed, 1 insertions, 87 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
index 93c9a3a5..579372ca 100755
--- a/rc.d/init.d/network
+++ b/rc.d/init.d/network
@@ -86,10 +86,6 @@ case "$1" in
;;
esac
- oldhotplug=`sysctl kernel.hotplug 2>/dev/null | \
- awk '{ print $3 }' 2>/dev/null`
- sysctl -w kernel.hotplug="/etc/hotplug/firmware.agent" > /dev/null 2>&1
-
vlaninterfaces=""
cipeinterfaces=""
xdslinterfaces=""
@@ -159,8 +155,6 @@ case "$1" in
fi
done
- sysctl -w kernel.hotplug=$oldhotplug > /dev/null 2>&1
-
# Add non interface-specific static-routes.
if [ -f /etc/sysconfig/static-routes ]; then
grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 10c9f408..b4e812cd 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -153,13 +153,11 @@ if [ -n "$LOGLEVEL" ]; then
/bin/dmesg -n $LOGLEVEL
fi
-[ -x /sbin/start_udev ] && /sbin/start_udev
# Only read this once.
cmdline=$(cat /proc/cmdline)
# Initialize hardware
-sysctl -w kernel.hotplug="/sbin/udevsend" >/dev/null 2>&1
if [ -f /proc/sys/kernel/modprobe ]; then
if ! strstr "$cmdline" nomodules && [ -f /proc/modules ] ; then
sysctl -w kernel.modprobe="/sbin/modprobe" >/dev/null 2>&1
@@ -169,85 +167,7 @@ if [ -f /proc/sys/kernel/modprobe ]; then
fi
fi
-echo -n $"Initializing hardware... "
-
-ide=""
-scsi=""
-network=""
-audio=""
-other=""
-eval `kmodule -d | while read devtype mod ; do
- case "$devtype" in
- "IDE") ide="$ide $mod"
- echo "ide=\"$ide"\";;
- "SCSI") scsi="$scsi $mod"
- echo "scsi=\"$scsi"\";;
- "NETWORK") network="$network $mod"
- echo "network=\"$network"\";;
- "AUDIO") audio="$audio $mod"
- echo "audio=\"$audio"\";;
- *) other="$other $mod"
- echo "other=\"$other"\";;
- esac
-done`
-
-blacklist=$(modprobe -c | LC_ALL=C awk '/^[[:space:]]*blacklist/ { print $2 }')
-
-load_module () {
- for module in $blacklist ; do
- [ "$1" = "$module" ] && return
- done
- modprobe $1 >/dev/null 2>&1
-}
-
-# IDE
-for module in $ide ; do
- load_module $module
-done
-
-# SCSI
-for module in `/sbin/modprobe -c | LC_ALL=C awk '/^alias[[:space:]]+scsi_hostadapter[0-9]*[[:space:]]/ { print $3 }'` $scsi; do
- load_module $module
-done
-load_module floppy
-
-echo -n $" storage"
-
-# Network
-pushd /etc/sysconfig/network-scripts >/dev/null 2>&1
-interfaces=`ls ifcfg* | LC_ALL=C egrep -v '(ifcfg-lo|:|rpmsave|rpmorig|rpmnew)' | \
- LC_ALL=C egrep -v '(~|\.bak)$' | \
- LC_ALL=C egrep 'ifcfg-[A-Za-z0-9\._-]+$' | \
- sed 's/^ifcfg-//g' |
- sed 's/[0-9]/ &/' | LC_ALL=C sort -k 1,1 -k 2n | sed 's/ //'`
-
-for i in $interfaces ; do
- eval $(LC_ALL=C fgrep "DEVICE=" ifcfg-$i)
- load_module $DEVICE
-done
-popd >/dev/null 2>&1
-
-for module in $network ; do
- load_module $module
-done
-
-echo -n $" network"
-
-# Sound
-for module in `/sbin/modprobe -c | LC_ALL=C awk '/^alias[[:space:]]+snd-card-[[:digit:]]+[[:space:]]/ { print $3 }'` $audio; do
- load_module $module
-done
-
-echo -n $" audio"
-
-# Everything else (duck and cover)
-for module in $other ; do
- load_module $module
-done
-
-echo -n $" done. "
-success
-echo
+/sbin/start_udev
# Load other user-defined modules
for file in /etc/sysconfig/modules/*.modules ; do