summaryrefslogtreecommitdiffstats
path: root/release/picobsd/tinyware
Commit message (Collapse)AuthorAgeFilesLines
* NI_WITHSCOPEID cleanup. Neither RFC 2553 nor RFC 3493 definesume2005-05-131-8/+2
| | | | | NI_WITHSCOPEID, and our getaddrinfo(3) does nothing special for it, now.
* NOPAM -> NO_PAMru2004-12-212-2/+2
|
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-219-9/+9
| | | | OK'ed by: core
* Introduce the PRECIOUSPROG knob in bsd.prog.mk, similarru2004-11-031-1/+1
| | | | | | | | to PRECIOUSLIB from bsd.lib.mk. The side effect of this is making installing the world under jail(8) possible by using another knob, NOFSCHG. Reviewed by: oliver
* For variables that are only checked with defined(), don't provideru2004-10-249-9/+9
| | | | any fake value.
* NEED_LIBNAMES is gone long ago.ru2004-10-241-1/+0
|
* Improve MIME handling. This patch is based on Eugene's patch, butdwmalone2004-08-161-15/+24
| | | | | | | | | | | | | | | with the following changes: 1) Don't make a mime_types.h 'cos we should avoid creating variables in header files, 2) Use strrchr to find the extension, rather than strchr, 3) Slightly simplify the mime-type matching loop. any goof are likely to be mine. Note that there are links to more improvements by Eugene in the PR. PR: 29725 Submitted by: Eugene Grosbein <eugen@kuzbass.ru>
* style cleanup: Remove duplicate $FreeBSD$ tags.cperciva2004-02-101-2/+0
| | | | | | | | These files had tags after the copyright notice, inside the comment block (incorrect, removed), and outside the comment block (correct). Approved by: rwatson (mentor)
* We no longer have KerberosIV. Remove it here also.markm2003-04-301-13/+0
|
* Don't forget to send the Content-length header after calculating it.dwmalone2003-04-051-0/+1
| | | | | PR: 29725 Submitted by: Eugene Grosbein <eugen@svzserv.kemerovo.su>
* More warns cleanups and misc cleanups:dwmalone2003-04-051-25/+31
| | | | | | | | | | | 1) Make fetch_mode a pointer 'cos we can just use the optarg. 2) Constness. 3) Add/complete prototypes. 4) Change an int to a socklen_t. 5) Don't use C++ style comments. 6) Check return values from read and fork a little more carefully. 7) Avoid closing an uninitialised int. 8) Get rid of unneeded extern declarations.
* Don't return with a value in a void function.dwmalone2003-03-131-4/+4
| | | | Pass a time_t rather than a long to time.
* de-__P()alfred2002-10-104-32/+32
|
* Add a few files which are needed to build "passwd" now thatluigi2002-06-206-35/+891
| | | | the standard version of these files have been PAMified (and axed).
* Bring in a slightly older version of usr/bin/passwd which does notluigi2002-05-052-0/+359
| | | | | require libpam and all the libraries that libpam brings in. We have no room for those on picobsd images.
* Usage style sweep: spell "usage" with a small 'u'.des2002-04-221-1/+1
| | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/.
* Align for const poisoning in -lutil.ru2002-04-081-5/+6
|
* Synch with login/login.c,v 1.81: Switch to OpenPAM.ru2002-04-081-3/+3
|
* Add a missing void in the parameter list of http_request().asmodai2002-04-071-1/+1
|
* Give functions proper return type, since the default is an integer, whereasmodai2002-04-071-1/+7
| | | | | | | | | the author obviously meant a void since he doesn't return any values. One caveat, http_request has three return()'s, but doesn't do anything with it. Either the code needs to be rewritten to take care of proper error handling on that point, or the returns ripped out. I made it void for now.
* Use %lld instead of %d in order to print struct stat's st_size, which isasmodai2002-04-071-1/+1
| | | | | | | an off_t. PR: 29725 Submitted by: Eugene Grosbein <eugen@svzserv.kemerovo.su>
* Garbage collect unused variables.asmodai2002-04-071-5/+2
| | | | | PR: 29725 Submitted by: Eugene Grosbein <eugen@svzserv.kemerovo.su>
* Actually print the port we are listening too when specified verbose mode.asmodai2002-04-071-1/+1
| | | | | PR: 29725 Submitted by: Eugene Grosbein <eugen@svzserv.kemerovo.su>
* Function declared void shouldn't return any value...abial2002-03-271-2/+2
|
* Make this compile againluigi2002-03-111-1/+1
| | | | Reported-by: Bruce Montague
* Add a '-l' flag to show CPU load for the various states, similar to whatluigi2001-12-141-2/+46
| | | | | | | | | | | "top" does (thinking of it, i could have as well used the same format line!) This only makes sense when "-w" option is also specified, because the load is computed as the difference between subsequent samples. I think this (and the "-d" feature which shows differences in the network statistics counts) would also make sense in the standard vmstat and netstat.
* Use the correct sysctl names for intrcnt and intrnames.luigi2001-10-251-2/+2
|
* Add a -d flag to show deltas as opposed to cumulative countersluigi2001-10-101-6/+32
| | | | | | in interface statistics. Most useful when used with the -w flag e.g. ns -i -w 1 -d
* Add code to print interrupt statistics when they will beluigi2001-10-071-0/+42
| | | | exported via sysctl.
* Fix a typo (missing "; at the end of a string)luigi2001-10-071-1/+1
|
* Add customised version of login for picobsd images on -CURRENT.luigi2001-10-014-0/+1167
| | | | | This version is basically the same one as login.c 1.67, and does not require the use of PAM.
* s/adress/address/kris2001-07-231-1/+1
| | | | | Inspired by: OpenBSD MFC After: 1 week
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-091-1/+0
|
* Fix the type of the NULL arg to execl()brian2001-07-091-1/+1
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* Account for the machdep.msgbuf -> kern.msgbuf renaming.tmm2001-07-031-1/+1
|
* Apply style guidelines (using gident to help).joe2001-04-232-424/+471
|
* Fix a syntax error.joe2001-04-231-2/+2
|
* Resurrect Minix sh(1), after its license has been changed to BSD one.abial2001-02-1010-0/+5018
|
* Add dummy -n option, for compatibility with the standard netstatluigi2001-01-271-2/+4
|
* Make the name of the init script and the interpreter compile time options.alex2001-01-202-7/+26
| | | | | | | If not defined, default to the old values (with _PATH_BSHELL instead of "/bin/sh", though). Reviewed by: markm
* Fix so that the netmask is displayed correctly when it does notabial2001-01-101-4/+9
| | | | | | | | | | consist of contiguous bits in little endian format. Before the fix the netmask of 0xfffffff0 (0xf0ffffff in little endian format) was displayed /24 instead of /28. Also, add a missing include. Submitted by: Maxime Soule <Maxime.Soule@IPricot.com>
* Reformat to be a bit closer to style(9).abial2001-01-101-26/+26
|
* Fix breakage after moving from struct proc/eproc to kinfo_proc.abial2001-01-101-19/+15
|
* Add `_PATH_DEVZERO'.obrien2000-12-091-3/+3
| | | | Use _PATH_* where where possible.
* Fix bitrot.abial2000-11-112-28/+44
|
* Initiate deorbit burn sequence for <machine/mouse.h>.phk2000-10-091-1/+1
| | | | | | | | | | Replace all in-tree uses with <sys/mouse.h> which repo-copied a few moments ago from src/sys/i386/include/mouse.h by peter. This is also the appropriate fix for exo-tree sources. Put warnings in <machine/mouse.h> to discourage use. November 15th 2000 the warnings will be converted to errors. January 15th 2001 the <machine/mouse.h> files will be removed.
* Initiate deorbit burn sequence for <machine/console.h>.phk2000-10-081-1/+2
| | | | | | | | | Replace all in-tree uses with necessary subset of <sys/{fb,kb,cons}io.h>. This is also the appropriate fix for exo-tree sources. Put warnings in <machine/console.h> to discourage use. November 15th 2000 the warnings will be converted to errors. January 15th 2001 the <machine/console.h> files will be removed.
* Fix bogus reporting of interface names, the field returnedluigi2000-03-211-4/+4
| | | | in sdl_data is not 0-terminated
* $Id$ -> $FreeBSD$peter1999-08-2827-27/+27
|
* Changed to get the page size using a sysctl rather than using DEFAULT_PAGE_SIZEroger1999-08-261-2/+6
| | | | Suggested by: Alan Cox
OpenPOWER on IntegriCloud