--- ./utils/alsaconf.orig 2003-07-17 11:14:28.000000000 -0700 +++ ./utils/alsaconf 2003-09-02 14:36:38.000000000 -0700 @@ -26,7 +26,9 @@ fi # Check for GNU/Linux distributions -if [ -f /etc/SuSE-release -o -f /etc/UnitedLinux-release ]; then +if [ -f /etc/slackware-version ]; then + distribution="slackware" +elif [ -f /etc/SuSE-release -o -f /etc/UnitedLinux-release ]; then distribution="suse" elif [ -f /etc/debian_version ]; then distribution="debian" @@ -564,7 +566,11 @@ update-modules fi echo Loading driver... - $rcalsasound start + if [ "$distribution" = "slackware" ]; then + . /etc/rc.d/rc.alsa start + else + $rcalsasound start + fi echo Setting default volumes... if [ -x /usr/bin/set_default_volume ]; then /usr/bin/set_default_volume -f --- ./utils/alsaconf.8.orig 2003-03-21 02:31:33.000000000 -0800 +++ ./utils/alsaconf.8 2003-09-02 14:24:36.000000000 -0700 @@ -16,8 +16,6 @@ This manual page documents briefly the .B alsaconf command. -This manual page was written for the Debian distribution because the -original program does not have a manual page. .PP \fBAlsaconf\fP is a simple shell script which tries to detect the sound cards on your system and writes a suitable configuration file for ALSA. It will try @@ -60,13 +58,6 @@ .B \-h, \-\-help Displays this help text -.SH DEBIAN SPECIFIC -In Debian, the default gid of the device files is 29 (corresponding to the -audio group) and the default device mode is 0660. - -For the ALSA base package, see also -.I /usr/share/doc/alsa-base/ - .SH SEE ALSO \fB alsamixer(1), @@ -84,5 +75,4 @@ Bernd Kaindl and Jan Ondrej (SAL) -This manual page was written by Jordi Mallach , -for the Debian system (but may be used by others). +This manual page was written by Jordi Mallach .