Move ALSA bootscript to end of stage 3
authorHugo Villeneuve <hugo@hugovil.com>
Wed, 6 Aug 2014 04:03:18 +0000 (00:03 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Sat, 16 Aug 2014 00:43:15 +0000 (20:43 -0400)
At beginning of stage3, the sound modules are not yet loaded.

stage3/bootscripts/alsa
stage3/pkg/alsa-utils

index c0de296..94830dd 100755 (executable)
@@ -7,7 +7,7 @@ source /etc/rc.d/init.d/functions
 
 log_script_name "$0 $*"
 
-alsactl=/usr/sbin/alsactl
+alsactl="/usr/sbin/alsactl -d"
 
 # See how we were called.
 case "$1" in
@@ -18,12 +18,11 @@ case "$1" in
     stop)
        cmd_run_log_box "Saving sound settings" ${alsactl} store
        ;;
-    
+
     *)
         echo "Usage: $0 {start|stop}"
         exit ${EXIT_CODE_FAILURE}
         ;;
-    
 esac
 
 exit 0
index 8d3bf8a..78dc669 100644 (file)
@@ -15,5 +15,5 @@ hvbuild_post()
     install -v -m740 ${SCRDIR}/bootscripts/alsa /etc/rc.d/init.d
 
     # script-name start stop
-    bootscript_add_rcsysinit alsa 95 85
+    bootscript_add_rc3 alsa 93 15
 }