summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Remove references to cryptotestimp2004-01-221-5/+1
|
* Theo de Raadt has brought to our attention that he wrote at least partimp2004-01-211-501/+0
| | | | | | | file and that he has not released it under a free license. Until the matter can be resolved, honor his claim and remove it. PR: misc/61676
* Add regression tests for printf's %a/%A formats.das2004-01-191-1/+38
| | | | | | While here, disable some of the long double tests on i386, since FreeBSD/i386 is the only port that doesn't evaluate long doubles in their full precision (due to constant folding bugs in gcc).
* Add regression tests for some of the bugs recently discovered in thedas2004-01-191-4/+15
| | | | | | | | vendor's strtod() implementation. While here, disable some of the long double tests on i386, since FreeBSD/i386 is the only port that doesn't evaluate long doubles in their full precision (due to constant folding bugs in gcc).
* Work around a recently-introduced gcc bug. The compiler no longerdas2004-01-181-1/+1
| | | | | accepts certain floating point constant representations that are legal in C99.
* Add ${IMAGES} to CLEANFILES.des2004-01-111-0/+1
|
* Store binary files in uuencoded form.des2004-01-117-2/+234
|
* Add pirtool, a tool for dumping the $PIR table on i386 machines at runtime.bms2004-01-063-0/+374
| | | | Requested by: mdodd
* Rename "msgbuf" to "dmesg", a more easily remembered name.grog2003-12-311-4/+4
| | | | "Fix" documentation by removing periods and commas.
* Remove calls to 'y' macro.grog2003-12-303-6/+0
|
* Remove current implementation of kldstat macro.grog2003-12-301-18/+39
| | | | | | | | | | Add new kldstat, kldstat-v and kernel macros. The kldstat macro is functionally equivalent to the previous implementation, but it looks prettier and it matches the kldstat-v macro better. kldstat-v gives output similar to userland kldstat -v (note lacking space), and kernel loads a new kernel and dump. Submitted by: des
* Add documentation for previously undocumented macros, and correctgrog2003-12-291-13/+20
| | | | | | existing documentation. This is not made any easier by the brain-damaged format required for the documentation: one line, no full stops or commas.
* Add documentation for previously undocumented macros. This is notgrog2003-12-291-16/+13
| | | | | | | made any easier by the brain-damaged format required for the documentation: one line, no full stops or commas. Remove macro xy. I can't see any use for it any more.
* Add comments to deter people from using this file directly. That'sgrog2003-12-291-16/+96
| | | | | | | | | | | | | | | | | | | | | not the intention. Rearrange "you may want to change these values" values to the top, and reduce their number as much as possible. tr macro: Require a parameter (because gdb is too stupid to understand optional parameters), and create macros tr0, tr1 and trf which call it to connect to /dev/cuaa0, /dev/cuaa1 and firewire connections respectively. Split kld symbol load into two separate macros: revision 1.5 simplified things for the /dev/mem case, but broke it for anything else. Now the simple /dev/mem version is called kldsyms, and the version for serial debugging and processor dumps is called getsyms, and still requires this irritating cut and paste. Change comments on startup to make life easier for the poor (de)bugger.
* Explain what all this is about.grog2003-12-221-0/+16
|
* Revert the last two commits. It seems that compat mode is actually fasterdes2003-12-121-4/+7
| | | | | than non-compat (using -j1), though reading the make(1) sources suggests that the opposite is true.
* Don't pass -P option to make(1) as it confuses the error detection logic.des2003-12-111-2/+2
|
* Always pass -j to make(1), even when we only want one job. It disablesdes2003-12-112-19/+5
| | | | compat mode and hopefully improves tinderbox performance.
* PowerPC doesn't need NOLIBC_R and NOFORTH (and hasn't for quite a while now)des2003-12-111-1/+0
|
* Install experimental.rc as well.des2003-12-111-1/+1
|
* Add a small program to test/measure with the RFC 2783 API for timingphk2003-12-083-0/+231
| | | | external signals.
* add install rulesam2003-12-072-0/+11
|
* o report 0 instead of -1 for xmit rate when in transitionsam2003-12-071-4/+39
| | | | | o report rssi in running display o futz with column widths in running display
* fix commentsam2003-12-071-1/+1
|
* Log all results to a history file in the log directory.des2003-12-071-0/+38
|
* Merge in uncommitted changes from the running configuration.des2003-12-041-2/+2
|
* RELENG_5_2 is right around the corner.des2003-12-041-1/+1
|
* Understand the old pseudo-device config(8) file directive, for 4.x.ru2003-11-281-2/+2
|
* Learn about new world orderphantom2003-11-262-12/+22
|
* fixup include filenames; this stuff used to be in the kernel source treesam2003-11-132-2/+2
|
* honor environment settings of SYSDIR and BINDIRsam2003-11-131-2/+2
|
* add in-kernel ttcp performance toolsam2003-11-137-0/+1196
|
* Remove leftovers from old color determination scheme.des2003-11-121-3/+1
| | | | Tune the speed at which colors change.
* braino in age computationdes2003-11-121-1/+1
|
* Use graded colors to more clearly indicate relative age.des2003-11-122-20/+24
|
* Turn the table around: platforms across, branches down.des2003-11-121-14/+20
| | | | Also fix some bogus tabification in here documents.
* Belatedly include RELENG_4_9 in the build, and rotate RELENG_4_7 out.des2003-11-121-1/+1
|
* add 802.11 layer stats dumpersam2003-11-082-1/+132
|
* catchup with if_xname changesam2003-11-081-6/+2
|
* Add a "-f" flag for asf(8) which performs a search to find the each modulegreen2003-11-041-4/+1
| | | | | | | | | | | no matter where in the directory structure it may be. Use this and the "-k" flag in the generated gdbinit files so that the "getsyms" function in gdb requires no user intervention to run and will find every module if they're in the kernel build's module directory. This is still quite useful for cases where gdb knows that the path for some modules is /boot/kernel and others are in the object directory for /usr/src/sys/$ARCH/compile/kernel. Approved by: grog
* Attached is a small patch to ministat that separates thephk2003-10-312-19/+48
| | | | | | | avg/median/stddev bars onto two lines. Useful for datasets that overlap. Submitted by: Dan Nelson <dnelson@allantgroup.com>
* Add regression tests for sgetrune() and sputrune().tjr2003-10-303-1/+269
|
* Update the location of the Hart list.sheldonh2003-10-291-1/+1
|
* Add the "TB ---" prefix to error and warning messages so that earlydes2003-10-141-2/+2
| | | | | failures (e.g. failure to lock the sandbox) don't result in empty failure reports.
* Tweak the colors for failed runsdes2003-10-111-2/+2
|
* Show stale results (8 hours old or more) in a paler color.des2003-10-112-2/+18
|
* Cosmetic nits.des2003-10-101-6/+6
|
* Collapse the Architecture and Machine columns to conserve screen space.des2003-10-101-4/+2
|
* Discourage line breaks between the time of day and the time zone.des2003-10-101-1/+1
|
* Add support for tinderbox(1)'s -h option.des2003-10-102-2/+10
|
OpenPOWER on IntegriCloud