Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-23 | STAC7661: | Deanna Phillips | |
- enable internal mic and select it as the default recording source, - create mixerctl record.source for selecting between internal and external mics, - mute input by default. | |||
2007-07-23 | Fix a typo in a comment: VAIO SE -> VAIO SZ. | Deanna Phillips | |
2007-07-23 | STAC7661: rename "inputs.mic" to "record.volume". This is what the | Deanna Phillips | |
audio layer wants, and is a more accurate description. Use the correct number of steps. | |||
2007-07-23 | STAC7661: | Deanna Phillips | |
- Add set_port and get_port functions and use them to create a stereo master volume out of the headphone and speaker dacs. Unbreaks setting the volume in ports like xmms. - Use the correct number of steps for the dac volumes. | |||
2007-07-23 | We will never make a mixer item out of the pin control operation, so | Deanna Phillips | |
move it out of azalia_generic_mixer_set into its own function, azalia_generic_mixer_pinctrl. From kent@netbsd. In azalia_stac9200_mixer_init, let the unsolicited event handler make the initial headphone vs speaker choice. Removes some duplicate code. These changes only affect STAC9200. Tested by krw@ on a Latitude D620. | |||
2007-07-22 | Get rid of the fixe VA range for device mappings; use uvm_km_valloc() instead. | Mark Kettenis | |
This allows mappings of more than 256MB, needed by some frame buffers. "looks good", miod@ | |||
2007-07-22 | lexicographically sorts the list of commands | Igor Sobrado | |
ok jmc@ | |||
2007-07-22 | spacing, chop some of the more obscenely long lines. | Gordon Willem Klok | |
2007-07-22 | Move hppa to __HAVE_TIMECOUNTERS. | Mark Kettenis | |
2007-07-22 | make sure loop variables use their own buffers. | Marc Espie | |
(causes .for loops to give weird results very infrequently, memory handling was slightly wrong, but not enough to break things thoroughly). noticed by naddy@ | |||
2007-07-22 | Enable rl(4) on hppa, tested by me, ok kettenis@ | Jonathan Gray | |
2007-07-22 | clear the IFF_ALLMULTI flag when the interface goes down. | David Gwynne | |
2007-07-22 | the softc variable is sc, not sp. | David Gwynne | |
2007-07-21 | 64 bit mips support for the arla lwp code, requested by todd@ long ago... | Miod Vallat | |
2007-07-21 | - this page describes getpgid.2 too | Jason McIntyre | |
- describe when "pid" is zero; from Kristaps Dzonsons ok millert | |||
2007-07-21 | make one of the lists -compact, to avoid some yucky vertical blankspace; | Jason McIntyre | |
2007-07-21 | Mention bge(4) as well. | Mark Kettenis | |
2007-07-21 | Mention SysKonnect/Marvell gigabit ethernet adapters. | Mark Kettenis | |
2007-07-21 | no need to say in two ways "a set of usb devices went away"; ok by a few | Theo de Raadt | |
2007-07-21 | Add sk(4). Tested by Maurice Janssen. | Mark Kettenis | |
2007-07-21 | Similar to sbin/route/show.c: | Claudio Jeker | |
Check the rtm_version before trying to print an entry. If the rtmsg has a different version skip it and don't try to print it. Solves a SIGSEGV I have triggered with one of my scarier diffs. OK henning@ | |||
2007-07-21 | Check the rtm_version before trying to print an entry. If the rtmsg has a | Claudio Jeker | |
different version skip it and don't try to print it. Solves a SIGSEGV I have triggered with one of my scarier diffs. OK henning@ | |||
2007-07-21 | even though gcc doesn't reuse the utsname space, it could. Ensure MACHINE | Marc Espie | |
stays defined. | |||
2007-07-21 | zap unneeded stuff | Marc Espie | |
2007-07-21 | fix the entry for Eminent EM3035. | Igor Sobrado | |
ok jmc@ | |||
2007-07-21 | s/ETHERTYPE_EAPOL/ETHERTYPE_PAE/ to be in line with src/sys/net/ethertypes.h | Damien Bergamini | |
also, ETHERTYPE_PAE is the name used in the 802.1X standard. pointed out by jsg@ | |||
2007-07-21 | add ETHERTYPE_PAE (802.1X Port Access Entity). | Damien Bergamini | |
replace a dead link while i'm here. ok canacar@ reyk@ | |||
2007-07-21 | another rare device temporarily gets the axe (until some other shrinkage ↵ | Theo de Raadt | |
happens) | |||
2007-07-20 | Mention that the LCD can be made to "blink" by setting machdep.led_blink. | Mark Kettenis | |
2007-07-20 | Initialize the locks in key_table. On hppa _SPINLOCK_LOCKED is 0, so an | Mark Kettenis | |
uninitialized lock ends up in a locked state. This lead to a deadlock if we called pthread_key_create(). ok marc@, kurt@ | |||
2007-07-20 | Make lcd(4) "blink" when machdep.led_blink is set. | Mark Kettenis | |
2007-07-20 | Give hppa the blink_led API from sparc64, and the associated machdep.led_blink | Mark Kettenis | |
sysctl. | |||
2007-07-20 | Enable lcd(4). | Mark Kettenis | |
2007-07-20 | PDC I/O space lives at 0xf0f0000000, not 0xf000000000, at least on astr(4) | Mark Kettenis | |
based systems. | |||
2007-07-20 | Use HPPA_PC_PRIV_USER instead of hardcoded 3. | Mark Kettenis | |
requested by miod@ | |||
2007-07-20 | unbreak landisk kernel sha1 by working around a compiler bug; | Otto Moerbeek | |
also brings kernel sha1 more in line with userland; discussed with miod@ and millert@; | |||
2007-07-20 | More code that tests for CPUCLASS_386 that can go away. Pointed out by | Michael Knudsen | |
Charles Longeau, thanks. Fix an indentation nit while there. ok toby | |||
2007-07-20 | Remove inm_ifp from struct in_multi -- caching struct ifnet is dangerous | Claudio Jeker | |
because interfaces may disappear without notice causing use after free bugs. Instead use the inm_ia->ia_ifp as a hint, struct in_ifaddr correctly tracks removals of interfaces and invalidates ia_ifp in such cases. looks good henning@ markus@ | |||
2007-07-20 | Oh, look, code that begins like this: | Michael Knudsen | |
if (cpu_class != CPUCLASS_386) { Since we don't support 386 now, unconditionally execute the block. ok tom toby | |||
2007-07-20 | Don't show debug output when an interrupt is not for us. | Marc Balmer | |
From Marc Winiger <mw@msys.ch> ok dlg, claudio. | |||
2007-07-20 | big clean-up patch: | Marc Espie | |
- rename a few functions in var.c to names that make more sense. - introduce Var_Deletei because it makes more sense. - rewrite .for loops to use a local LoopVar construct to avoid looking up more stuff. - reformat var.c to near K&R - rewrite most comments in var.c shown to a few people. millert@ gave me his okay since it passes through ports correctly. | |||
2007-07-20 | reorder stuff in var.c so that the next patch is more readable. | Marc Espie | |
2007-07-20 | Remove the MFREE() macro and replace it with a call to m_free(). | Claudio Jeker | |
Also remove the _MEXTREMOVE macro which was only used by MFREE. This time with the uipc_mbuf.c change that I missed last time. | |||
2007-07-20 | - document the "play" default a little more clearly | Jason McIntyre | |
- document the difference between "play" and "cdplay" more clearly ok mjc | |||
2007-07-19 | sync | Peter Valchev | |
2007-07-19 | kern.timecounter.timestepwarnings may be altered; from Kristaps Dzonsons | Jason McIntyre | |
2007-07-19 | Sync with cvs: | Ray Lai | |
> xcalloc is unneeded here since i is always 0 and we always use the > memory after initializing it. > > Initial diff from Igor Zinovik. > > OK niallo and xsa. | |||
2007-07-19 | xcalloc is unneeded here since i is always 0 and we always use the | Ray Lai | |
memory after initializing it. Initial diff from Igor Zinovik. OK niallo and xsa. | |||
2007-07-18 | Prefer ``hit'' cache operations when flushing kernel memory. | Miod Vallat | |
2007-07-18 | Do not bother trying to make the tlb handler fit - they are too large | Miod Vallat | |
and the r5000 errata workaround made them non-relocatable, so always copy trampolines. This will be revisited when the tlb refill code will be selected at runtime (soon). |