Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-07 | track systems traqmate gps data acquisition system | joshua stein | |
2007-10-07 | sync | Theo de Raadt | |
2007-10-07 | amd64 needs the page too | Theo de Raadt | |
2007-10-07 | AMD8111 -> AMD-8111 | Jason McIntyre | |
2007-10-07 | for miscellaneous devices section: | Jason McIntyre | |
- sync Nd for amdpcib(4) - add pcib(4) - adjust the width size of the list accordingly | |||
2007-10-07 | get rid of the configure remains | Otto Moerbeek | |
2007-10-07 | Add a driver, amdpcib(4), for the AMD 8111 series LPC bridge and HPET written | Marc 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-07 | merge from ragge's repo: | Otto Moerbeek | |
Bugfix for .i files, by Jeremy Reed. | |||
2007-10-07 | merge from ragge's repo: | Otto Moerbeek | |
Add __inline__ as gcc-compatible keyword. | |||
2007-10-07 | Merge 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-07 | break after exit() is useless | Charles Longeau | |
ok ray@ | |||
2007-10-07 | nb is an int, so it should be compared to an int. | Charles Longeau | |
ok ray@ | |||
2007-10-07 | and reorg this tree as well | Otto Moerbeek | |
2007-10-07 | and another stray file | Otto Moerbeek | |
2007-10-07 | garbage collect a few files | Otto Moerbeek | |
2007-10-07 | reorg pcc tree; requested by and ok deraadt@; ok ragge@ | Otto Moerbeek | |
2007-10-07 | mention the LPC bridge part. | Marc Balmer | |
2007-10-07 | trash $Header goo which is just annoying; 5595 | Theo de Raadt | |
2007-10-07 | Print CAS latency for DDR/DDR2. | Jonathan Gray | |
Shuffle strings around to look pretty as suggested by deraadt. | |||
2007-10-07 | Make sure nfsrv_v2errmap[] really contains ELAST initialized values. | Miod Vallat | |
2007-10-07 | mention amdpcib(4) and glxpcib(4) | Marc Balmer | |
2007-10-07 | mention amdpcib(4) and glxpcib(4). | Marc Balmer | |
2007-10-07 | manual page for an upcoming driver. | Marc Balmer | |
"committ it" deraadt. | |||
2007-10-07 | delete ugly $Header stuff; pr 5595 | Theo de Raadt | |
2007-10-07 | Port of Nicolas Joly, Paul Goyette & Tobias Nygren's | Jonathan Gray | |
spdmem(4) driver for Serial Presence Detect memory information. | |||
2007-10-07 | add support for scanning the spdmem range of addresses, using a different | Theo de Raadt | |
probe function; based on earlier work by jsg, and retested by us | |||
2007-10-07 | Add support for the PCI-ISA bridge, timecounter, and watchdog timer | Marc 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-07 | add SSH_AUTH_SOCK to env_keep. | Steven Mestdagh | |
ok millert@ | |||
2007-10-07 | Typo, from Mark Peoples | Bjorn Sandell | |
2007-10-07 | From master repo: | Anders Magnusson | |
> Don't let pragmas pass through if #ifdef'd away, from Stefan Kempf. | |||
2007-10-06 | Simpliest 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-06 | Some archs used memset() rather than bzero(). So duplicate diff | Kenneth 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-06 | add WRKOBJDIR to default env_keep to help 'make fake' in ports. | Stuart Henderson | |
ok millert@ | |||
2007-10-06 | Use db_printf instead of printf, to prevent problems with locking | Mark Kettenis | |
kprintf_mutex in the early stages of booting. ok miod@ (a while ago) | |||
2007-10-06 | replace realloc/memset/pointer-arithmetic with recalloc; ok millert@ ray@ espie@ | Constantine A. Murenin | |
2007-10-06 | Another NPBFILTER comment typo. | Jonathan Gray | |
From Jung <moorang@gmail.com> | |||
2007-10-06 | Allow 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-06 | Provide <machine/lock.h> on hppa64 too. | Mark Kettenis | |
2007-10-06 | Simple single-processor only mutex implementation; cloned from hppa. | Mark Kettenis | |
2007-10-06 | NPBFILTER -> NBPFILTER in comments. | Jonathan Gray | |
ok kettenis@ | |||
2007-10-06 | From master repo: | Anders Magnusson | |
> Compalin if user is applying sizeof to bitfield, from Stefan Kempf. | |||
2007-10-06 | Remove unused variable. | Mark Kettenis | |
2007-10-06 | From 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-06 | replace abort() by return (-1) | Charles Longeau | |
from ray@ suggestion "looks good" ray@ | |||
2007-10-06 | Oops, committed this with a typo, which made it do not quite the right thing. | Mark Kettenis | |
2007-10-06 | finish loop as soon as the ldconfig search directories have been found. | Steven Mestdagh | |
ok espie@ | |||
2007-10-06 | Rename bus_space macros. ISA_GET/PUT -> CSR_READ/WRITE | Brad Smith | |
Tested by todd@ ok dlg@ | |||
2007-10-06 | sync | Theo de Raadt | |
2007-10-06 | Oops. Forgot to do FREE -> free when I did MALLOC -> malloc. | Kenneth R Westerback | |