summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-10-07track systems traqmate gps data acquisition systemjoshua stein
2007-10-07syncTheo de Raadt
2007-10-07amd64 needs the page tooTheo de Raadt
2007-10-07AMD8111 -> AMD-8111Jason McIntyre
2007-10-07for miscellaneous devices section:Jason McIntyre
- sync Nd for amdpcib(4) - add pcib(4) - adjust the width size of the list accordingly
2007-10-07get rid of the configure remainsOtto Moerbeek
2007-10-07Add a driver, amdpcib(4), for the AMD 8111 series LPC bridge and HPET writtenMarc Balmer
by mickey, man page by me. Help, suggestions by Theo and jmc. Enable this driver and glxpcib(4) in all RAMDISK kernel, but glxpcib(4) does not provide the watchdog timer in the RAMDISK kernels. Prodded by deraadt. E
2007-10-07merge from ragge's repo:Otto Moerbeek
Bugfix for .i files, by Jeremy Reed.
2007-10-07merge from ragge's repo:Otto Moerbeek
Add __inline__ as gcc-compatible keyword.
2007-10-07Merge from ragge's repo:Otto Moerbeek
Add initial support for packed/aligned/rename pragmas. Still missing: Support for architectures with strict alignment. TODO: Cleanup the rename stuff so that it's not depending on gcc compat.
2007-10-07break after exit() is uselessCharles Longeau
ok ray@
2007-10-07nb is an int, so it should be compared to an int.Charles Longeau
ok ray@
2007-10-07and reorg this tree as wellOtto Moerbeek
2007-10-07and another stray fileOtto Moerbeek
2007-10-07garbage collect a few filesOtto Moerbeek
2007-10-07reorg pcc tree; requested by and ok deraadt@; ok ragge@Otto Moerbeek
2007-10-07mention the LPC bridge part.Marc Balmer
2007-10-07trash $Header goo which is just annoying; 5595Theo de Raadt
2007-10-07Print CAS latency for DDR/DDR2.Jonathan Gray
Shuffle strings around to look pretty as suggested by deraadt.
2007-10-07Make sure nfsrv_v2errmap[] really contains ELAST initialized values.Miod Vallat
2007-10-07mention amdpcib(4) and glxpcib(4)Marc Balmer
2007-10-07mention amdpcib(4) and glxpcib(4).Marc Balmer
2007-10-07manual page for an upcoming driver.Marc Balmer
"committ it" deraadt.
2007-10-07delete ugly $Header stuff; pr 5595Theo de Raadt
2007-10-07Port of Nicolas Joly, Paul Goyette & Tobias Nygren'sJonathan Gray
spdmem(4) driver for Serial Presence Detect memory information.
2007-10-07add support for scanning the spdmem range of addresses, using a differentTheo de Raadt
probe function; based on earlier work by jsg, and retested by us
2007-10-07Add support for the PCI-ISA bridge, timecounter, and watchdog timerMarc Balmer
found in the CS5536 companion chip to the AMD Geode LX-800 processor. glxpcib(4) driver written by mickey, with some tweaks by me. Manpage nits by jmc. Tested on the Soekris net5501 (by me) and the Alix 2a2 (by earxtacy@dixinet.com) ok kettenis
2007-10-07add SSH_AUTH_SOCK to env_keep.Steven Mestdagh
ok millert@
2007-10-07Typo, from Mark PeoplesBjorn Sandell
2007-10-07From master repo:Anders Magnusson
> Don't let pragmas pass through if #ifdef'd away, from Stefan Kempf.
2007-10-06Simpliest memset(,0,) -> M_ZERO changes. One (caddr *) cast removal,Kenneth R Westerback
otherwise just adding M_ZERO to malloc() and removing the immediately adjacent memset(,0,).
2007-10-06Some archs used memset() rather than bzero(). So duplicate diffKenneth R Westerback
previously applied to other archs deleting a memset() this time. e.g. - if ((mapstore = malloc(mapsize, M_DEVBUF, - (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL) + if ((mapstore = malloc(mapsize, M_DEVBUF, (flags & BUS_DMA_NOWAIT) ? + (M_NOWAIT | M_ZERO) : (M_WAITOK | M_ZERO))) == NULL) return (ENOMEM); - memset(mapstore, 0, mapsize);
2007-10-06add WRKOBJDIR to default env_keep to help 'make fake' in ports.Stuart Henderson
ok millert@
2007-10-06Use db_printf instead of printf, to prevent problems with lockingMark Kettenis
kprintf_mutex in the early stages of booting. ok miod@ (a while ago)
2007-10-06replace realloc/memset/pointer-arithmetic with recalloc; ok millert@ ray@ espie@Constantine A. Murenin
2007-10-06Another NPBFILTER comment typo.Jonathan Gray
From Jung <moorang@gmail.com>
2007-10-06Allow the various pf table actions to operate independently. For example,Chris Kuethe
"-L leased" wouldn't work without "-A abandoned". testing help from merdely "i like" deraadt
2007-10-06Provide <machine/lock.h> on hppa64 too.Mark Kettenis
2007-10-06Simple single-processor only mutex implementation; cloned from hppa.Mark Kettenis
2007-10-06NPBFILTER -> NBPFILTER in comments.Jonathan Gray
ok kettenis@
2007-10-06From master repo:Anders Magnusson
> Compalin if user is applying sizeof to bitfield, from Stefan Kempf.
2007-10-06Remove unused variable.Mark Kettenis
2007-10-06From master repo:Anders Magnusson
> Do not try to branch-optimize pointer comparisions, found by Otto M.
2007-10-06_Bool is also a type, don't discrimnate against it; ok ragge@Otto Moerbeek
2007-10-06replace abort() by return (-1)Charles Longeau
from ray@ suggestion "looks good" ray@
2007-10-06Oops, committed this with a typo, which made it do not quite the right thing.Mark Kettenis
2007-10-06finish loop as soon as the ldconfig search directories have been found.Steven Mestdagh
ok espie@
2007-10-06Rename bus_space macros. ISA_GET/PUT -> CSR_READ/WRITEBrad Smith
Tested by todd@ ok dlg@
2007-10-06syncTheo de Raadt
2007-10-06Oops. Forgot to do FREE -> free when I did MALLOC -> malloc.Kenneth R Westerback