summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Fix message size tests for msgsnd(3) and msgrcv(3). msgsz is the length ofjkim2006-11-161-8/+12
| | | | actual message and it should not include size of message type.
* Add the Transcend 2GB card specs.benno2006-11-161-0/+5
|
* Add a short regression test to try to exercise races in the non-atomicrwatson2006-11-152-0/+219
| | | | | | | nature of implied connect via sendto(). Oddly, uipc_usrreq.c implements this for stream sockets, but doesn't set the flag in its protocol definition so that it can actually be used. As such, the stream test is implemented but doesn't run for now.
* o Indent by tab.maxim2006-11-111-1/+1
|
* o Add several regression tests for dup(2), dup2(2) and fcntl(F_DUPFD).maxim2006-11-113-0/+177
| | | | Obtained from: OpenBSD
* Update copyright date.bms2006-11-092-2/+2
| | | | MFC after: 3 weeks
* Use C99 types.bms2006-11-092-32/+32
| | | | MFC after: 3 weeks
* Rewrite the format of pirtool output to match what the kernel currentlybms2006-11-092-50/+66
| | | | | | | | | | | prints out if bootverbose is set. This is to facilitate the code being removed from the kernel at a later date. While we're here, fix the __packed structures, and add some other PCI interrupt router IDs. Submitted by: jhb (with some tweaks) MFC after: 3 weeks
* Use z modifier for size_t and ssize_t.jkim2006-11-071-15/+15
|
* Add the examples from the manual page.dds2006-11-0610-2/+630
|
* Updated results for bin/68981dds2006-11-062-0/+42
| | | | PR: bin/68981
* Regress.out is now regress.x.out.dds2006-11-061-1/+0
|
* Test the handling of supplied and default parameters.dds2006-11-0629-2/+1692
|
* Add regression tests for PR 105078.stefanf2006-11-059-0/+19
|
* Only use the filename part of the kernel configuration file as an argument ton_hibma2006-11-021-1/+1
| | | | | | | | | KERNCONF after the file has been copied to the sys/${ARCH}/conf directory. This allows the use of one kernel config file for multiple images. E.g.: NANO_KERNEL=../../../../software/nanobsd/default/SOEKRIS MFC: after 6.2
* Add a build option to support WITH_CDDL and WITHOUT_CDDL, defaultingjb2006-11-011-0/+2
| | | | | | | | | | | | | to WITH_CDDL. This option enables building code that is licensed under Sun's CDDL. The DTrace code is licensed that way, so by default it will get built unless the WITHOUT_CDDL option is used. There is another build toggle, NO_CTF, which turns off execution of ctfconvert and ctfmerge in sys.mk, but this can't be implemented as WITH_/WITHOUT because bsd.own.mk isn't included in all Makefiles and sys.mk is included automatically by make.
* Reworking of how to add ports.julian2006-11-0116-55/+126
| | | | submitted by: Jean Milanez Melo
* Add fs_unrefs field to the super block structure.pjd2006-10-311-1/+2
| | | | Sponsored by: home.pl
* Add configuration stubs for adding package derived files to the variousjulian2006-10-307-0/+42
| | | | | sample configurations. Submitted by Jeremie Le Hen and tested by Jean Milanez Melo.
* Add some code to support including files ffrom packages in the image.julian2006-10-302-15/+31
| | | | Submitted by: Jeremie Le Hen and tested by Jean Milanez Melo.
* Might as well move to the right place if we are not there.julian2006-10-111-0/+2
| | | | | The whole question of how much to rely on teh sources being in /usr/src needs visiting.
* let the user know what configurations are available when asking for it.julian2006-10-111-13/+22
|
* o Grammar.maxim2006-10-092-8/+8
| | | | Submitted by: kris
* o Enable test-sparceaout test since alc@ has fixed the panic in rev. 1.229maxim2006-10-091-2/+2
| | | | | sys/vm/vnode_pager.c. cVS: ----------------------------------------------------------------------
* Large rewrite of the tinybsd script.julian2006-10-041-33/+269
| | | | | | | | | | This allows the user to specify that the root filoesystem should be an MFS or teh actual medium itself. Also a new command syntax, along with an interactive mode by default, with crossinvocation memory of the last used values as defaults for the current invocation. Submitted by:jmeloatfreebsdbrasil,com-br
* Revise markup.ru2006-09-301-31/+36
|
* Removed libc_r build support.ru2006-09-302-9/+0
|
* Initializate "offset" variable to zero; otherwise, if not usingru2006-09-282-0/+3
| | | | | | the -o option, it might contain garbage. MFC after: 1 day
* Slight tunups to the config files.julian2006-09-2116-70/+25
|
* In the spirit of nanoBSD and PicoBSD, add TinyBSD.julian2006-09-2046-0/+5596
| | | | | | Submitted by jmeloatfreebsdbrasil,com-br (Jean Milanez Melo) As PicoBSD becomes slightly less useful, TinyBSD fills the gap below nanoBSD.
* Move readonly.t regression tests file to where it belongs.pjd2006-09-191-0/+0
| | | | I accidentally added it to a wrong directory.
* Add regression tests for 'geli configure' subcommand.pjd2006-09-161-0/+130
| | | | MFC after: 1 week
* Regression tests for read-only option (attach -r).pjd2006-09-161-0/+93
| | | | MFC after: 1 week
* dd a series of regression tests to validate that privilege requirements arerwatson2006-09-1332-0/+4026
| | | | | | | | | | | | implemented properly for a number of kernel subsystems. In general, they try to exercise the privilege first as the root user, then as a test user, in order to determine when privilege is being checked. Currently, these tests do not compare inside/outside jail, and probably should be enhanced to do that. Sponsored by: nCircle Network Security, Inc. Obtained from: TrustedBSD Project
* Document the new know, WITHOUT_ASSERT_DEBUG.ru2006-09-111-0/+4
|
* - Utilize the "showconfig" top-level target.ru2006-09-111-3/+5
| | | | - Pass __MAKE_CONF=/dev/null to get a pristine output.
* Enforce the compile-time threads limit at run-time, so that a high threadrwatson2006-09-021-0/+4
| | | | | count argument doesn't cause a segfault or memory corruption when the compile-time array is overrun.
* Improve input parsing:phk2006-08-281-14/+36
| | | | | | | | Add "-C <column>" and "-d <delims>" options to chop up input lines. Make '#' a comment character, rest of line is ignored. Submitted by: Dmitry Morozovsky <marck@rinet.ru>
* Remove alpha left-overs.ru2006-08-221-3/+0
|
* Move the setup of "diskless" /etc magic files from install_etc() to asimon2006-08-151-13/+19
| | | | | | | | | | separate function which is called right after install_etc(). This makes it simpler to (ab)use nanobsd.sh as a framework to build more normal FreeBSD images where a normal /etc is used, since setup_nanobsd_etc() can just be redefined. OK'ed in principle by: phk MFC after: 1 week
* checkpoint new versionsam2006-08-1012-483/+2454
|
* Fix some minor nits in the README file of wessidekeramida2006-08-071-4/+3
| | | | Reviewed by: sam, Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* add wessidesam2006-08-072-1/+2
|
* another tool that uses the raw tx apisam2006-08-078-0/+3384
| | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* use proper tx seriessam2006-08-061-2/+2
| | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* make it work after the api changesam2006-08-051-6/+43
| | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* hook packet injection tools upsam2006-08-052-1/+15
|
* test programs for 802.11 packet injectionsam2006-08-0517-0/+4460
| | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* 802.11 packet injection test toolsam2006-08-053-0/+879
| | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
* crude stumbler using raw packet api'ssam2006-08-052-0/+1077
| | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk>
OpenPOWER on IntegriCloud