]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
- Changed 'modprobe -s midi' to 'modprobe -s synth0'. There is no module
authormkochano <mkochano@pld-linux.org>
Sat, 8 Apr 2000 13:34:54 +0000 (13:34 +0000)
committermkochano <mkochano@pld-linux.org>
Sat, 8 Apr 2000 13:34:54 +0000 (13:34 +0000)
  'midi'.
- Changed 'modprobe -s sound' to 'modprobe -s sound-slot-0'. This causes sound
  card driver to be loaded.

svn-id: @706

rc.d/rc.sysinit

index e7e7eba94fd4d011b05a4f221550140e152b37ea..19d21f0fcc0411b7ea3a87f409536b9c36ef0a5b 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 #
 # /etc/rc.d/rc.sysinit - run once at boot time
-# $Id: rc.sysinit,v 1.54 2000/04/03 14:50:45 baggins Exp $
+# $Id: rc.sysinit,v 1.55 2000/04/08 13:34:54 mkochano Exp $
 #
 # Taken in part from Miquel van Smoorenburg's bcheckrc.
 # Changes:      Arkadiusz Mi¶kiewicz <misiek@pld.org.pl>
@@ -281,11 +281,11 @@ fi
 
 # load sound modules
 if [ -n "$USEMODULES" -a "$LOAD_SOUND" = "yes" ]; then
-       if grep -s -q "^alias sound" /etc/modules.conf ; then
-               run_cmd "Loading sound module" modprobe -s sound
+       if grep -s -q "^alias sound-slot-0" /etc/modules.conf ; then
+               run_cmd "Loading sound module" modprobe -s sound-slot-0
        fi
-       if grep -s -q "^alias midi" /etc/modules.conf ; then
-               run_cmd "Loading midi module" modprobe -s midi
+       if grep -s -q "^alias synth0" /etc/modules.conf ; then
+               run_cmd "Loading synthesiser module" modprobe -s synth0
        fi
 fi
 
This page took 0.035524 seconds and 4 git commands to generate.