Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Oct 2001 10:39:17 +0200 (CEST)
From:      Cyrille Lefevre <clefevre@citeweb.net>
To:        Mike Meyer <mwm@mired.org>
Cc:        hackers@freebsd.org, chuckr@freebsd.org, chris@freebsd.org
Subject:   Re: My contributions to the close a PR campaign
Message-ID:  <200110120839.f9C8dIr87058@gits.dyndns.org>
In-Reply-To: <15302.12256.96805.125719@guru.mired.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Mike Meyer wrote:
> Cyrille Lefevre <clefevre@citeweb.net> types:
> > Mike Meyer wrote:
> > [snip]
> > > conf/21722            The mixer settings are lost on system reboot.
> > > 
> > > This should probably be closed due to the work being done on the
> > > NetBSD rc system. The same functionality can be provided as a port,
> > > which is probably better anyway. I'll do that if this one gets closed.
> > 
> > much better is to keep it, at least to remember that something like
> > that have to be done.
> 
> I'm not convinced it needs to be done. It's not really a critical
> feature, and very few people seem to miss it. It makes a lot more

a simple alternative (the one I use) is to add someting like this to

/etc/defaults/rc.conf :

mixer="NO"		# soundcard mixer values (or NO).

/etc/rc.conf :

mixer="vol 100 pcm 25 speaker 50 line 0"

and /etc/rc.syscons :

case ${mixer} in
[Nn][Oo] | '')
        ;;
*)
        echo -n ' mixer';       mixer ${mixer} > /dev/null 2>&1
        ;;
esac

Cyrille.
-- 
Cyrille Lefevre                 mailto:clefevre@citeweb.net

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200110120839.f9C8dIr87058>