Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-11-30 | determine the status of fan, volt, and temp sensors by reading the | David Gwynne | |
thresholds off at attach and then comparing the value at update to these cutoffs. | |||
2005-11-30 | avoid ambiguities in describing TZ; | Jason McIntyre | |
ok djm@ | |||
2005-11-30 | regen | Michael Shalayeff | |
2005-11-30 | timezone -> time zone | Jason McIntyre | |
that i missed ;( | |||
2005-11-30 | timezone -> time zone | Jason McIntyre | |
2005-11-30 | a few more saa philips tv cards | Michael Shalayeff | |
2005-11-30 | timzeone -> time zone; preferred by jmc@. | Xavier Santolaria | |
2005-11-30 | No need for vfs_busy() and vfs_unbusy() to take a process pointer | Pedro Martelletto | |
anymore. Testing by jolan@, thanks. | |||
2005-11-30 | `-ztz' is only here for compatibility; | Xavier Santolaria | |
2005-11-30 | document `-ztz'; | Xavier Santolaria | |
2005-11-30 | Use sysctl(KERN_ARND) to get n bytes, instead of just 4 at a time | Otto Moerbeek | |
and remove fallback code. If somebody is dumb enough to make the sysctl fail using systrace, he deserves what he gets. Saves 7 syscalls on process startup. looks good miod@ ok deraadt@ tedu@ | |||
2005-11-30 | KNF | Chad Loder | |
2005-11-30 | KNF | Chad Loder | |
2005-11-30 | Fix a very old bug_t with memset | Chad Loder | |
2005-11-30 | another unused variable found by lint | Theo de Raadt | |
2005-11-29 | this has the .Nd from axe.4 in it | Theo de Raadt | |
2005-11-29 | Add support for ASIX AX88772 10/100 based adapters which are very similiar | Jonathan Gray | |
to the gigabit AX88178 but with a different initialisation routine because the PHY is not external. Man page changes reviewed by jmc@ and oxford commas added per his sugestion. Thanks to Bruno Scap for donating an adapter. | |||
2005-11-29 | regen | Jonathan Gray | |
2005-11-29 | Add generic id for ASIX AX88772. | Jonathan Gray | |
2005-11-29 | if we pull in a .S file, we must fake out the lint with a .c file | Theo de Raadt | |
for this first cut, we will do this for alloca() using alloca.c by adding it to LSRCS | |||
2005-11-29 | Provide stubs for things which are supplied by crt0. I don't think we | Theo de Raadt | |
want a crt0.ln, at least, not yet. We may reconsider later. | |||
2005-11-29 | Add a flags field to struct prefix which will be used shortly. Remove the peer | Claudio Jeker | |
pointer so that the size does not grow. Adding 4 bytes to struct prefix would result in 64MB more memory usage on one of my systems. | |||
2005-11-29 | sync | Theo de Raadt | |
2005-11-29 | stdlib.h has strtouq in it | Chad Loder | |
2005-11-29 | even more spaces and tabs. | Claudio Jeker | |
2005-11-29 | crontab.c uses the rcsid in the crontab head comment so don't protect | Todd C. Miller | |
it from lint. Found by cloder@ | |||
2005-11-29 | tabs on empty lines | Claudio Jeker | |
2005-11-29 | Put this back in... | Brad Smith | |
Use pci_get_capability() to check if were on a PCI Express card or not. Tested by deraadt@, marco@ and a few end-users who reported issues. | |||
2005-11-29 | document KERN_ARND better; ok deraadt@ | Otto Moerbeek | |
2005-11-29 | kill unused var found by lint. ok deraadt@ | Otto Moerbeek | |
2005-11-29 | Typo | Chad Loder | |
2005-11-29 | Typo | Chad Loder | |
2005-11-29 | Replace unnecessary mmap allocator with malloc. | Chad Loder | |
2005-11-29 | Remove old gcc 2.9.5 workaround for sparc64 now that we use gcc3. | Chad Loder | |
Tested sturm@ | |||
2005-11-29 | Remove XXX_BROKEN_GCC ifdefs, which were used to work around an ancient | Chad Loder | |
(from 1995) gcc bug on i386. From NetBSD. | |||
2005-11-29 | Typos in comments: explizit and implizit | Chad Loder | |
2005-11-29 | add an option -j which suppresses setting the clock, but parses the date | Daniel Hartmeier | |
argument. useful to convert string-to-epoch (with +%s) or just to check whether the argument is parsed correctly before really setting the clock. ok millert@, deraadt@ | |||
2005-11-29 | superfluous ; OK henning@ | Claudio Jeker | |
2005-11-29 | Missing ht(4) man page. | Mark Kettenis | |
2005-11-29 | .Nm atd -> adt | Jason McIntyre | |
2005-11-29 | consistency in variables naming; | Xavier Santolaria | |
2005-11-29 | some more bits for `-w[user]' support; | Xavier Santolaria | |
2005-11-29 | Fix IPv6 hmac calculation. | Marco Pfatschbacher | |
OK mcbride@ | |||
2005-11-29 | - Zap duplicate semicolon. From Alexander Hall via PR #4913. Thanks! | Bernd Ahlers | |
- Some indentation fixes while I'm here. okay espie@ | |||
2005-11-29 | document `-b'; | Xavier Santolaria | |
2005-11-29 | document: | Xavier Santolaria | |
- `-ddates' - `-l[lockers]' - `-sstates' - `-w[logins]' help+OK jmc@. | |||
2005-11-29 | from the diffs so old they're growing mold dept: | Ted Unangst | |
while () return; is pretty dumb, change to ifs as intended | |||
2005-11-29 | apply patch from david hill for two netbsd prs: | Ted Unangst | |
14060 skip MADV_SEQUENTIAL if refaulting 18037 missing pageactivate tested for some time by jolan krw | |||
2005-11-29 | Kill unused locals | Chad Loder | |
2005-11-29 | Make lint grok __func__, which in C99 is a predifined identifier that | Chad Loder | |
holds the name of the current function. Makes thousands of lint warnings vanish and since lint can now fully parse compound expressions involving __func__, we see some new interesting warnings instead. |