summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-02-12pin 47 on ALC65{0,5,8} ac97 codecs can be used for either eapd orJacob Meuser
spdif-in. usually the deault of spdif-in is used, but some ATI devices use pin 47 for eapd. add a list of subsystem ids (from ALSA) for these devices, and set bit 1 of register 7a to select the correct function of pin 47 for these devices. there was code here to do this prior to the ac97 update, but it was accidentally removed. rename the flag and bit to more accurately reflect what this does and hopefully avoid future confusion. problem noticed and fix tested/ok'd by matthieu@, thanks also some discussion with and pointers from brad@, thanks
2008-02-12if the ac97 codec is fixed-rate, ac97_set_rate() will return theJacob Meuser
fixed-rate, regardless of what sample rate we tried to set, without an error. so, instead of checking for an error after we've set the rate on all dacs, we need to check that ac97_set_rate() successfully set the rate we wanted, which may not be exactly the rate the user specified, due to auich's sample rate scaling. finally, we need to set the sample rate for the dacs in this order: lfe, surround, front. this is necessary because ac97_set_rate() will return without checking for fixed-rate if the dac is unsupported. so, if the lfe dac is set last on a stereo only fixed-rate codec, then we will not know whether we have a fixed-rate codec. all codecs have a front dac, and some codecs may have a surround dac but not lfe. discussed with brad@, who noticed that the previous commit was slightly bogus.
2008-02-12add tda(4), commented out for nowRobert Nagy
2008-02-12tda(4) is a driver for Philips TDA8444 which can be found inRobert Nagy
Sun Blade 1000/1500/2000/2500 machines. The driver controlls the speed of the ambient and cpu fans, based on the temperatures. not included in GENERIC yet; help and ok kettenis@
2008-02-12use ftello instead of ftell; from Davil Hill; ok millert@Otto Moerbeek
2008-02-12document modifier types; requested by AurelienJason McIntyre
text from ipsecadm(8), hshoexer, and myself
2008-02-12syncPeter Valchev
2008-02-11For architectures with an enabled 'console' ttys entry, adjust theKenneth R Westerback
speed of said entry to reflect the speed of the console being used to install. For archs with MDSERIAL defined, offer the current device and speed as the defaults for switching to serial consoles. Fixes new Sun gear that uses a 115200 console speed and makes for better defaults without breaking current install processes. ok dlg@ henning@
2008-02-11Remove long dead CLKF_BASEPRI which crept in by mistake.Miod Vallat
2008-02-11g/c db_thread_fp_used()Miod Vallat
2008-02-11A couple fixes:Miod Vallat
- evict the memory from cache in pmap_page_free(). - make sure to sync cache in pmap_protect() if it marks a modified cacheable page as read-only.
2008-02-11Cleanup buf implementation:Tobias Stoeckmann
* Don't check for NULL on buffer creation, because it calls fatal() when something's wrong. * All buffers are supposed to expand if there is no space left in them, so zap flags as well. * Remove code that is now dead. OK joris@ > Inspired by a diff from Igor Zinovik about unchecked return value.
2008-02-11The TCP server has to recalculate the client's window size takenAlexander Bluhm
from the first ACK packet. Otherwise the server would use the unscaled window size for the fist data it is sending. ok markus@ dhartmei@
2008-02-11tweak previous;Jason McIntyre
2008-02-11bad comma;Jason McIntyre
2008-02-11Correct the output of several error and debug messages.Esben Norby
2008-02-11Correct the output of several error and debug messages.Esben Norby
2008-02-11log_debug error messages report incorrect function namesEsben Norby
from Igor Zinovik
2008-02-11unbreak the dns protocol handler, closes pr 5717Reyk Floeter
Thanks to Nigel Taylor
2008-02-11Marry relayd with snmpd using new "send trap" option: Request to sendReyk Floeter
a SNMP trap when the state of a host changes. relayd(8) will try to (re-)connect to snmpd(8) and request it to send a trap to the registered trap receivers, see snmpd.conf(5) for more information about the configuration. ok pyr@ thib@
2008-02-11bump Mdocdate for pages committed in "febuary", necessary becauseJason McIntyre
of a typo in rcs.c;
2008-02-11do not describe `/' as solidus; from Allen (freebsd pr120484);Jason McIntyre
2008-02-11add newly supported cards to the list.David Gwynne
prodded by jmc@
2008-02-11reinstate pci subvendor/subdevice detection so we can figure out whichDavid Gwynne
variant of the board we're attached to. for marco@
2008-02-11add support for the mfi controllers with the ppc iops, aka, LSI SAS1078 orDavid Gwynne
Dell PERC6. committed off a machine booting and rooting off a perc6. tested on a perc5 by marco@ ok marco@
2008-02-10Use HW_PHYSMEM64.Mark Kettenis
ok krw@
2008-02-10Set reserved bits in the TX Configuration Register the value from the Sun docs.Mark Kettenis
Seems to fix watchdog timeout issues in Sun ERI variants. tested by a few
2008-02-10Attach to "lom-console". Hopefuly this will give us a proper console onMark Kettenis
the Netra T4/Netra 20 when the console is directed to the LOM.
2008-02-10cvs_validate_directory() was too paranoiaJoris Vink
2008-02-10+ #define CVS_DATE_FMT "%Y.%m.%d.%H.%M.%S"Xavier Santolaria
...and use it.
2008-02-10use cvs_validate_directory() in cvs_get_repository_path() as well,Joris Vink
since we want to make sure we have valid CVS/Repository content ok tobias@
2008-02-10introduce cvs_validate_directory(), which is used to checkJoris Vink
directory path to make sure they do not fall outside the CVSROOT or the working copy directory in a remote setup
2008-02-10Add support for Sticky Date. OK joris@ tobias@.Xavier Santolaria
2008-02-10do not allow commits to files that have a sticky date setJoris Vink
2008-02-10Respond with "Updated" instead of "Checked-in" on server-side if a clientTobias Stoeckmann
committed files, so keywords are expanded properly. On client-side, we have to be careful about Directory ./ when it comes to commits, so add a test for CVS_OP_COMMIT. OK and help from joris@
2008-02-10Add interrupt state diagnostic registers.Mark Kettenis
2008-02-10handle date tags if we receive / send themJoris Vink
2008-02-10fix ce_date declarationJoris Vink
2008-02-10- cvs_write_tagfile() is not responsible to remove CVS/Tag itselfJoris Vink
- construct right CVS/Repository paths in cvs_mkpath() fixes remote Issues;
2008-02-10Enable client<->server remote setup. Use -DREMOTE.Xavier Santolaria
OK tobias@.
2008-02-10delay ~ expansion for ChrootDirectory so it expands to the logged-in user'sDamien Miller
home, rather than the user who starts sshd (probably root)
2008-02-10give method name of covariant return issue.Marc Espie
okay miod@
2008-02-10properly initialize cvs_specified_date so we dont end up withJoris Vink
random stuff going on
2008-02-10parse any date tags set in CVS/Tag or CVS/Entries properly, and useJoris Vink
them for commands; with tobias@
2008-02-10Define _POSIX_TZNAME_MAX to 6 if the user requested POSIX 1003.1-2001.Mark Kettenis
ok millert@
2008-02-10mantion that "internal-sftp" is useful with ForceCommand tooDamien Miller
2008-02-09missing newline at EOFMartin Reindl
2008-02-09regenMark Kettenis
2008-02-09Add Intel Q33 and Q35 IDs. From a diff by niklas@Mark Kettenis
2008-02-09Introduce cvs_ent_line_str() - formats CVS/Entries lines.Xavier Santolaria
OK tobias@.