summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-05-08The default initiator value is 0 on sgi IP27, IP30 and IP35 systems. SinceMiod Vallat
they don't seem to have a valid NVRAM either, override the default value.
2009-05-08Fix devio byteswap, this makes isp(4) happy on IP27 and IP35.Miod Vallat
2009-05-08Make interrupt handling code closer to IP30 XHeart code.Miod Vallat
2009-05-08Attach children with config_found_sm() instead of directly invokingMiod Vallat
config_search(), so that disabled or unconfigured child device appear in dmesg as ``not configured''.
2009-05-08IP30 Dallas clock runs in non-BCD mode, so make sure to check which modeMiod Vallat
the chip is in, and honour it.
2009-05-08Be sure to completely ignore ARCBios memory information on IP27 and IP35Miod Vallat
for now, as we get this information from elsewhere and bad things would happen if arcbios memory walk causes more memory segment entries to be populated than the KL memory walk will, later on.
2009-05-08add support HT mixer knobs (ie routing control). Allow monitoringAlexandre Ratchov
analog inputs
2009-05-08add support for the ak4358 DAC used in ESI Julia cards. There areAlexandre Ratchov
two mono line0 and line1 knobs rather than a single stereo knob because that's how the routing control (not exposed for ht chips yet) works.
2009-05-08print card model, the number of inputs and the number of outputsAlexandre Ratchov
when the device attaches
2009-05-08add support for m-audio delta 1010, delta 66 and delta 44 sinceAlexandre Ratchov
they are the same as the delta 1010lt card, only the number of implemented codecs change
2009-05-08rename few functions and macros, fix styleAlexandre Ratchov
2009-05-08expose HT mixer; since neither the digital mixer nor codecAlexandre Ratchov
sub-mixers are implemented, it's empty.
2009-05-08Clear PQ_AOBJ at pageremove: when a page is no longer part of a uvm_object,Ariane van der Steldt
it is also not part of an aobj. Clear anon flags at pagefree: page is no longer part of an anon. ok oga
2009-05-08use the number of channels rather than the number of stereo dacs/adcs,Alexandre Ratchov
because there will support for non-stereo dacs/adcs soon.
2009-05-08improve user_setup by only accepting good usernames; idea from alexanderTheo de Raadt
hall. also improve the 2nd question designed for people not paying attention; ok todd
2009-05-08Remove static qualifier of functions that are not inline.Ariane van der Steldt
Makes trace in ddb useful. ok oga
2009-05-08Sort variables in env_keep.Antoine Jacoutot
"sure" millert@
2009-05-08hide controls corresponding to missing dacs, adcs or spdifs.Alexandre Ratchov
2009-05-08use $nifs instead of hostname.* existance to determine if we should get ftplistTheo de Raadt
2009-05-08Initial effort on a port to the omap35xx platform specifically beagleboard,Dale Rahn
however other omap system may be supportable. Not functional until armv7 core changes are complete.
2009-05-08Since our order is now net, disk, TZ, we can increase the ftp timeoutTheo de Raadt
up to 12 seconds more comfortably
2009-05-08Pieces of arm11 and armv7 support for newer cpus. This is work in progressDale Rahn
and not complete.
2009-05-07Missed removing a printf argument.Ariane van der Steldt
Spotted and ok sthen
2009-05-07Make amas less chatty in debug mode by not mentioning unused ranges andAriane van der Steldt
writing 'interleaved' instead of 'interleaved across 4 nodes'. ok deraadt
2009-05-07Amas(4) on some machines has ranges with base > limit. Treat this asAriane van der Steldt
an empty range. ok kettenis@
2009-05-07syncTheo de Raadt
2009-05-07Manpage moved: amas is not amd64 specific anymore.Ariane van der Steldt
ok jmc, kettenis
2009-05-07KNFMichael Knudsen
2009-05-07syncTheo de Raadt
2009-05-07vax iso has to become a teeny bit biggerTheo de Raadt
2009-05-07fix confusing comment; ok krw@Jacek Masiulaniec
2009-05-07Make the kvm routing table code grok multiple routing tables and do notClaudio Jeker
default to table 0 by default. Makes debugging alternate tables possible. OK jsg@
2009-05-07Move amas device from arch/amd64 to dev/pci and enable it in i386 as well.Ariane van der Steldt
amas defaults to disabled on both amd64 and i386. "Go for it!" kettenis@
2009-05-07o use 'ls -C' to speed and simplify both sets viewing and timezone selectionTodd T. Fries
o use a tzlist instead of a tzdir o as a bonus, sets lists are now sorted top-down instead of left-right o use stty to calculate 4char padding surrounding sets lists collaboration with Alexander Hall halex@ ok deraadt@
2009-05-07syncTheo de Raadt
2009-05-06configure the input and output ports in trigger_{input,output} insteadJacob Meuser
of set_params so they only get configured when necessary.
2009-05-06use /snapshots/ rather than /4.5/ when you choose a numbered mirror fromStuart Henderson
the list. ok deraadt
2009-05-06- explicitely disable some s/pdif features (ac3 passthrough, 24 and 32-bitJacob Meuser
modes, "double speed") - connect s/pdif output to the correct controller channels fixes s/pdif output, which I partly broke when adding multichannel support. problem reported and patches tested by Antti Harri, thanks.
2009-05-06Skip terminal initialization when logging in from an xterm, weTodd C. Miller
can be fairly sure the terminal is already initialized. Avoids a one second pause on login. Requested and OK deraadt@
2009-05-06add missing flags to the output of usage() and sort them as usualIgor Sobrado
in BSD operating systems; while here, indent source code in a way it fits on 80-column displays. ok jmc@
2009-05-06make nifs init global, so it can be relied uponTodd T. Fries
ok deraadt@
2009-05-06.Xr endrun 4Kevin Steves
spotted by jmc@
2009-05-06Workaround a bridge deadlock, as advised by comments found in the linux sn1Miod Vallat
code.
2009-05-06IP27 and IP35 do not layout physical memory the same way, IP35 is muchMiod Vallat
simpler; use two different routines to register memory depending on the system type.
2009-05-06Fix typo in a comment, and remove 20st-century mention of optionMiod Vallat
MACHINE_NONCONTIG (not even MACHINE_NEWNONCONTIG!)
2009-05-06Fix signedness of comparison used to know whether we have already reachedMiod Vallat
the next scheduled clock interrupt; the comparison would before always be true, causing the clock to really run at hz/2. While there, remove unused nanodelay() and attempt to clean clock initialization a bit.
2009-05-06When computing output result for jump scroll purposes, do not count LFMiod Vallat
as moving the cursor one charcell right before scrolling.
2009-05-06deraadt pointed out that the sentence i added in the previous commitJason McIntyre
kind of mangled the sense of the text before, so rewrite it; ok deraadt
2009-05-06- document /etc/kbdtypeJason McIntyre
- standard options list - some minor tweakage based on a diff from Rodolfo Gouveia
2009-05-06Use getttynam() from libc instead of the private version in tset.Todd C. Miller