* added graalvm (22.0.0.1) - A high-performance JDK distribution
[t2.git] / package / audio / alsa-utils / alsa.init
blob195f9004608f777e67ffe89f38f8366398bb3090
1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/alsa-utils/alsa.init
3 # Copyright (C) 2004 - 2021 The T2 SDE Project
4 # Copyright (C) 1998 - 2004 ROCK Linux Project
5
6 # This Copyright note is generated by scripts/Create-CopyPatch,
7 # more information can be found in the files COPYING and README.
8
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License version 2.
11 # --- T2-COPYRIGHT-NOTE-END ---
13 # Desc: ALSA Sound Mixer Loader
14 # Runlevel: 75 rcX rc2 rc3 rc4 rc5
17 main_begin
19         block_begin(start, `Initializing ALSA mixer')
20                 if [ -f /var/lib/alsa/asound.state ]; then
21                   check(`D_prefix/sbin/alsactl restore')
22                 else
23                   echo "No saved state for audio devices, trying defaults ..."
24                   (
25                         amixer sset Master 80% unmute
26                         amixer sset PCM 80% unmute
27                         amixer sset Bass 50%
28                         amixer sset Treble 50%
29                   ) > /dev/null 2>&1
30                 fi
31         block_end
33         block_begin(stop, `Saving ALSA mixer settings')
34                 if [ -e /proc/asound/card0 ]; then
35                   check(`D_prefix/sbin/alsactl store')
36                 fi
37         block_end
39 main_end