--- /dev/null
+#!/bin/sh
+
+# alsa
+
+# Source functions library
+source /etc/rc.d/init.d/functions
+
+log_script_name "$0 $*"
+
+alsactl=/usr/sbin/alsactl
+
+# See how we were called.
+case "$1" in
+ start)
+ cmd_run_log_box "Loading sound settings" ${alsactl} restore
+ ;;
+
+ stop)
+ cmd_run_log_box "Saving sound settings" ${alsactl} store
+ ;;
+
+ *)
+ echo "Usage: $0 {start|stop}"
+ exit ${EXIT_CODE_FAILURE}
+ ;;
+
+esac
+
+exit 0
--- /dev/null
+#!/bin/bash
+
+hvconfig_pre()
+{
+ CONFIGURE_OPTS=" \
+ --enable-static"
+}
--- /dev/null
+#!/bin/bash
+
+hvconfig_pre()
+{
+ CONFIGURE_OPTS=""
+}
+
+hvbuild_post()
+{
+ # The first time the alsa bootscript is run, it will complain that there is
+ # no state in /etc/asound.state. You can prevent this by running the
+ # following commands after installing alsa-utils:
+ touch /etc/asound.state
+
+ install -v -m740 ${SCRDIR}/bootscripts/alsa /etc/rc.d/init.d
+
+ # script-name start stop
+ bootscript_add_rcsysinit alsa 95 85
+}
+++ /dev/null
-#!/bin/sh
-
-# alsa
-
-# Source functions library
-source /etc/rc.d/init.d/functions
-
-log_script_name "$0 $*"
-
-alsactl=/usr/sbin/alsactl
-
-# See how we were called.
-case "$1" in
- start)
- cmd_run_log_box "Loading sound settings" ${alsactl} restore
- ;;
-
- stop)
- cmd_run_log_box "Saving sound settings" ${alsactl} store
- ;;
-
- *)
- echo "Usage: $0 {start|stop}"
- exit ${EXIT_CODE_FAILURE}
- ;;
-
-esac
-
-exit 0
+++ /dev/null
-#!/bin/bash
-
-hvconfig_pre()
-{
- CONFIGURE_OPTS=" \
- --enable-static"
-}
-
-hvbuild_post()
-{
- install -v -m644 -D doc/asoundrc.txt /usr/share/doc/${PACKAGE}/asoundrc.txt
-}
+++ /dev/null
-#!/bin/bash
-
-hvconfig_pre()
-{
- CONFIGURE_OPTS=""
-}
-
-hvbuild_post()
-{
- # The first time the alsa bootscript is run, it will complain that there is
- # no state in /etc/asound.state. You can prevent this by running the
- # following commands after installing alsa-utils:
- touch /etc/asound.state
-
- install -v -m740 ${SCRDIR}/bootscripts/alsa /etc/rc.d/init.d
-
- # script-name start stop
- bootscript_add_rcsysinit alsa 95 85
-}