Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move the setup of "diskless" /etc magic files from install_etc() to a | simon | 2006-08-15 | 1 | -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 version | sam | 2006-08-10 | 12 | -483/+2454 |
| | |||||
* | Fix some minor nits in the README file of wesside | keramida | 2006-08-07 | 1 | -4/+3 |
| | | | | Reviewed by: sam, Andrea Bittau <a.bittau@cs.ucl.ac.uk> | ||||
* | add wesside | sam | 2006-08-07 | 2 | -1/+2 |
| | |||||
* | another tool that uses the raw tx api | sam | 2006-08-07 | 8 | -0/+3384 |
| | | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> | ||||
* | use proper tx series | sam | 2006-08-06 | 1 | -2/+2 |
| | | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> | ||||
* | make it work after the api change | sam | 2006-08-05 | 1 | -6/+43 |
| | | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> | ||||
* | hook packet injection tools up | sam | 2006-08-05 | 2 | -1/+15 |
| | |||||
* | test programs for 802.11 packet injection | sam | 2006-08-05 | 17 | -0/+4460 |
| | | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> | ||||
* | 802.11 packet injection test tool | sam | 2006-08-05 | 3 | -0/+879 |
| | | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> | ||||
* | crude stumbler using raw packet api's | sam | 2006-08-05 | 2 | -0/+1077 |
| | | | | Submitted by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> | ||||
* | raw tx stat | sam | 2006-08-05 | 1 | -0/+1 |
| | |||||
* | Fix for architectures where sizeof(void *) > sizeof(int). | jb | 2006-08-04 | 1 | -2/+2 |
| | |||||
* | Fix build when .CURDIR != .OBJDIR. | netchild | 2006-08-02 | 1 | -0/+3 |
| | | | | Noticed by: "Alexander Mogilny" <sg@astral.ntu-kpi.kiev.ua> | ||||
* | Tell the bitter truth that WITHOUT_GNU and WITHOUT_PAM | yar | 2006-07-31 | 2 | -0/+2 |
| | | | | don't have any effect now. | ||||
* | Document some more src.conf(5) options: | yar | 2006-07-31 | 3 | -0/+13 |
| | | | | | | WITHOUT_GNU, WITHOUT_NS_CACHING, WITHOUT_PAM. Noticed by: src/tools/build/options/makeman | ||||
* | Actually skip over undocumented options with "continue" | yar | 2006-07-31 | 1 | -0/+1 |
| | | | | | | to avoid artifacts in the manpage generated. Previously an orphaned paragraph on dependencies of such an option would appear. | ||||
* | Extend the MK_INET6 section by rescue/ping6 and the manpages. | yar | 2006-07-29 | 1 | -0/+14 |
| | |||||
* | Add a test program which performs some very basic tests of libmp(3). | simon | 2006-07-28 | 3 | -0/+233 |
| | | | | | | It is by no means expected to perform a complete test of the library for correctness, but is meant to test the API to make sure libmp (or libcrypto) updates don't totally break the library. | ||||
* | 'make distribution' must be run from src, not src/etc, so that the proper | thomas | 2006-07-28 | 1 | -1/+1 |
| | | | | | | | set of /usr/share/mk/* is available. This is necessary to build a 7.x NanoBSD image on a 6.x host. Reviewed by: phk | ||||
* | Do not forget about INET6 and MK_INET6_SUPPORT. | yar | 2006-07-28 | 1 | -0/+6 |
| | |||||
* | Populate the MK_INET6 block. | yar | 2006-07-28 | 1 | -3/+13 |
| | |||||
* | Add Memory Corp 512MB CF Flash. | simon | 2006-07-26 | 1 | -0/+15 |
| | | | | MFC after: 3 days | ||||
* | Add a test case for closing a UDPv6 socket that has been connected to | rwatson | 2006-07-19 | 2 | -0/+30 |
| | | | | | | the IPv6 loopback address. Warns ?= 2. | ||||
* | Add very basic regression test for netinet6: create and close raw, | rwatson | 2006-07-19 | 2 | -0/+67 |
| | | | | UDP, and TCP IPv6 sockets. | ||||
* | Add regression tests of the emulation of the long branch conditional form. | marcel | 2006-07-17 | 2 | -0/+271 |
| | | | | | These tests can obviously only be run on Merced processors, as they don't implement the long branch. | ||||
* | When creating the NanoBSD disk image, install boot blocks from the | thomas | 2006-07-15 | 1 | -1/+1 |
| | | | | | | newly-built world, in preference to those from the host system. Reviewed by: phk | ||||
* | Create the diskless magic files in /etc during the install_etc() step | phk | 2006-07-13 | 1 | -10/+13 |
| | | | | | | | instead of setup_nanobsd(), because this gives customize tasks a chance to fiddle the details. Inspired & tested by: Jordan Coleman <jordan@JordanColeman.com> | ||||
* | o style.Makefile(5): WARNS= -> WARNS?=. | maxim | 2006-07-09 | 20 | -20/+20 |
| | |||||
* | When extending a file with truncate, check that newly added bytes have | rwatson | 2006-07-09 | 1 | -21/+55 |
| | | | | | | | a value of 0 in the extended region. Make sure that we get EINVAL back if we try to truncate a read-only file descriptor. | ||||
* | Add regression tests to make sure that attempting to call ftruncate() on | rwatson | 2006-07-09 | 1 | -5/+46 |
| | | | | various non-file objects fails. | ||||
* | Add very basic ftruncate() regression test, with a comment rather more | rwatson | 2006-07-09 | 2 | -0/+109 |
| | | | | thorough than the tests regarding what should be tested. | ||||
* | Add (missing) and remove (obsolete) .m files. | netchild | 2006-07-08 | 1 | -4/+7 |
| | |||||
* | o fix join/rejoin format | sam | 2006-06-30 | 1 | -2/+22 |
| | | | | | | o add netbsd portability glue MFC after: 2 weeks | ||||
* | dump new cabq stats | sam | 2006-06-23 | 1 | -0/+2 |
| | |||||
* | Fix type warnings on 64-bit machines. | obrien | 2006-06-21 | 1 | -3/+3 |
| | |||||
* | ipw statistics tool | sam | 2006-06-20 | 2 | -0/+283 |
| | |||||
* | Tweak mfc.pl to generate backout patchsets. | flz | 2006-06-09 | 1 | -9/+20 |
| | | | | Approved by: cperciva (mentor) | ||||
* | Add regression tests for geli(8) authentication feature. | pjd | 2006-06-06 | 5 | -0/+306 |
| | | | | Supported by: Wheel Sp. z o.o. (http://www.wheel.pl) | ||||
* | - Update regression tests after recent changes. | pjd | 2006-06-06 | 2 | -65/+72 |
| | | | | - Verify various sector sizes. | ||||
* | Add regression tests for IPsec. | pjd | 2006-06-04 | 1 | -0/+89 |
| | |||||
* | Output directory has gone, remove it from Makefile. | maxim | 2006-05-31 | 1 | -1/+0 |
| | |||||
* | Fix test for empty interpreter. | maxim | 2006-05-31 | 1 | -1/+1 |
| | |||||
* | o Add various regression tests for execve(2) syscall. | maxim | 2006-05-31 | 10 | -0/+227 |
| | | | | Obtained from: NetBSD | ||||
* | o Let getopt(3) report errors in command line arguments. | maxim | 2006-05-31 | 1 | -13/+11 |
| | | | | | | | | o If something is wrong with options, then output short usage help message. o Output errstr returned from strtonum(3). PR: bin/98141 Submitted by: Andrey Simonenko | ||||
* | Make recoverdisk compile on amd64 and possibly other 64bit archs. | matteo | 2006-05-30 | 2 | -5/+5 |
| | | | | | | | | Bump WARNS to 6. PR: amd64/97566 Reviewed by: phk@ MFC after: 3 days | ||||
* | The tinderbox has moved to projcvs. | des | 2006-05-30 | 25 | -2554/+0 |
| | |||||
* | o Add a collection of regression tests for ancillary (control) | maxim | 2006-05-29 | 4 | -0/+1823 |
| | | | | | | | | | | | | | | | | | | | | | | | data passing for unix domain sockets, stream and datagram. There are 15 tests: Test/Type of socket STREAM DGRAM ---------------------------------------------------------------------- Sending, receiving cmsgcred 1 6 Receiving sockcred (listening socket has LOCAL_CREDS) 2 n/a Receiving sockcred (accepted socket has LOCAL_CREDS) 3 n/a Receiving sockcred n/a 7 Sending cmsgcred, receiving sockcred 4 8 Sending, receiving timestamp 5 9 Sending, receiving cmsgcred (no control data) 10 13 Sending cmsgcred, receiving sockcred (no control data) 11 14 Sending, receiving timestamp (no control data) 12 15 Currently we pass 8 tests. All the rest marked as TODO. PR: kern/90800 Submitted by: Andrey Simonenko | ||||
* | Add RELENG_5_5 to the 5.x lineup. | des | 2006-05-29 | 2 | -2/+2 |
| | |||||
* | o Test truncate(2) on fifo: it should ignore the request and | maxim | 2006-05-29 | 1 | -0/+19 |
| | | | | | | | return success. PR: kern/98064 Submitted by: Kirk Russell |