summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-01-02return proper server error on failed ypset. Inspired by freebsd; okOtto Moerbeek
deraadt@
2007-01-02Fix setting up the more specific binding for the ypsetmeOtto Moerbeek
functionality. We want to bind to the same ports as the general binding, but with a local address. with and ok deraadt@
2007-01-02Use the value returned by pci_findproduct() as the timedelta sensor descriptionMarc Balmer
instead of using static strings. ok deraadt
2007-01-02Provide a new function, pci_findproduct(), which is analog to pci_findvendor().Marc Balmer
Use these two functions in pci_devinfo() to remove some duplicated code and make it easier to read. Remove two now unused variables. This shrinks the size of the resulting object code. Drivers (or other kernel code) can now get at the PCI vendor and/or product strings using pci_findvendor() and pci_findproduct(). ok claudio, deraadt, mglocker
2007-01-02top(1) doesn't use any math.h function, so do not include math.h andOtto Moerbeek
do not link with libm. ok ray@
2007-01-02remove extra \n in bpf_error() calls.Reyk Floeter
figured out by claudio@
2007-01-02define bpf filters to match address and header fields in IEEE 802.11Reyk Floeter
wlan frames (DLT_IEEE802_11 and DLT_IEEE802_11_RADIO linktypes). see tcpdump(8) for details. "Works for me" claudio@ ok jmc@ deraadt@
2007-01-02- fix support for checking out binary files.Niall O'Higgins
testing from xsa@ and Igor Sobrado <igor at string1.ciencias.uniovi.es> ok xsa@
2007-01-02Issue the BIOS "check for keystroke" call before "get keystroke", asTom Cosgrove
now required on i386 for Intel Macs. Bump versions of boot, cdboot and pxeboot accordingly. Reminded by deraadt@.
2007-01-02Fix the keyboard problem seen on Intel Macs, where only the firstTom Cosgrove
keypress is seen by boot. It appears that on the Intel Mac, we have to issue the "check for keystroke" BIOS call before the "get keystroke" call will get it (unlike any other BIOS I have seen in over 20 years). It would not have been possible to fix this problem without the donation from Steven N. Fettig (steve (at) anywheretechnology.com); many thanks. Bump versions of boot, cdboot and pxeboot accordingly. Testing kettenis@, otto@, and others; ok weingart@.
2007-01-02some unedit command bits; still work in progress for local mode.Xavier Santolaria
2007-01-02Don't use M_DUP_PKTHDR() in the driver bpf hook. Using M_DUP_PKTHDR() on aClaudio Jeker
static mbuf results in a mbuf tag memory leak. Same change as in rum(4). OK mglocker@
2007-01-02skeletons for the client-side part of the editors and watchers commands.Xavier Santolaria
not linked to build.
2007-01-02VarDelete is no longer used by list functions, so let it do type-checkingMarc Espie
correctly.
2007-01-02move local network route to real interface instead of carp interface; from mpf@Markus Friedl
2007-01-02regen.Marc Balmer
2007-01-02Add the Alcatel Telecom SpeedTouch 120g (WLAN adapter using pgt).Marc Balmer
ok mglocker
2007-01-02do not use lists for SYNOPSIS;Jason McIntyre
from eric s. raymond via brad
2007-01-022007Dale Rahn
2007-01-02On some systems EC must be attached as the first device. Move EC fromMarco Peereboom
generic _HID devices to its own routine to force first attach. Bug found and debugged by joris@ Code mostly written by joris@
2007-01-02syncTheo de Raadt
2007-01-02missing xfree()'s; spotted by joris.Xavier Santolaria
2007-01-01add support for [-s state[:rev]]Xavier Santolaria
2007-01-01knock UPS products out from being matched as HID devicesTheo de Raadt
2007-01-01syncTheo de Raadt
2007-01-01a few UPS products; from freebsdTheo de Raadt
2007-01-01Allow reads of /proc/meminfo to be correctly terminated, okay thib@Pedro Martelletto
2007-01-01rndc will now create output files of 'rndc dumpdb', 'rndcAlexandre Anriot
stats' and 'rndc recursing' commands in /var/named/tmp (instead of /var/named), which is writable by the 'named' user. feedback and ok jakob@ deraadt@, also agreed by fkr@ and msf@
2007-01-01Add manpage for esp(4) on macppc.Gordon Willem Klok
"yeah, that's fine." jmc@
2007-01-01regen.Marc Balmer
2007-01-01Add a new Intel host bridge chipsetMarc Balmer
from brad@
2007-01-01sync usage();Jason McIntyre
2007-01-01- standard listJason McIntyre
- zap extraneous list item - sort options list - kill trailing whitespace
2007-01-01some minor improvements;Jason McIntyre
2007-01-01find a better place for EXAMPLES;Jason McIntyre
2007-01-01- use "interface", not "interface-name", consistentlyJason McIntyre
- mark up "interface" consistently - a little .Sx
2007-01-01sort the list of parameters brconfig(8) accepts;Jason McIntyre
2007-01-01- merge first two synopsesJason McIntyre
- standard options list - sync usage() started by a diff from stevesk; usage() help from dlg; ok reyk;
2007-01-01commit really old stuff that lets pkg_mklocatedb recordMarc Espie
pkgpath/pkgnames/both.
2006-12-31Cover the other case we need to unload the dmamap, in espdmaintr(),Gordon Willem Klok
While here fix some spacing too. Bus probing and some commands such as eject tested on a Power Macintosh 9600, still unable to mount a cdrom on a SONY CD-ROM model CDU-8003A.
2006-12-31Some spaces to tabs and cosmetic tweaking of the code,Gordon Willem Klok
From brad@. Lots more spacing cleanup by myself. Tested on Power Macintosh 9600
2006-12-31Add a debug printf to warn when malo_init() fails and resets the card.Claudio Jeker
2006-12-31There is no need to busy wait in malo_send_cmd(). 0x0c14 only stores theClaudio Jeker
current state of the card (not running, loading FW, running). Now instead wait after loading the boot firmware for the magical 0x5 to appear. Also add a few missing bus_dmamap_sync() calls. OK mglocker@
2006-12-31Use a bus_space_barrier instead of those stupid 0x0c14 reads to make sureClaudio Jeker
that access is done in correct order. OK mglocker@
2006-12-31In malo_init() check for firmware loading errors and in case of an errorClaudio Jeker
reset the card so that we have a chance that a later malo_init() works. OK mglocker@
2006-12-31malo_stop() never fails so no need to return an error. OK mglocker@Claudio Jeker
2006-12-31Use #ifdef MALO_DEBUG else a simple #define MALO_DEBUG will not work.Claudio Jeker
2006-12-31client-side bits might be useful too for -m...Xavier Santolaria
2006-12-31add support for -m option.Xavier Santolaria
2006-12-31minor nits;Xavier Santolaria