summaryrefslogtreecommitdiffstats
path: root/release/picobsd
Commit message (Collapse)AuthorAgeFilesLines
* - Revert signedness type changes to "struct vmtotal"; by makingru2006-11-281-12/+8
| | | | | | | | | | | | | | them unsigned I made the possible overflows hard to detect, and it only saved 1 bit which isn't principal, even less now that the underlying issue with the total of virtual memory has been fixed. (For the record, it will overflow with >=2T of VM total, with 32-bit ints used to keep counters in pages.) - While here, fix printing of other "struct vmtotal" members such as t_rq, t_dw, t_pw, and t_sw as they are also signed. Reviewed by: bde MFC after: 3 days
* Remove references to mount_std, mount_procfs.rodrigc2006-11-221-3/+0
| | | | Reminded by: ru
* - Fix types of "struct vmmeter" members so they are unsigned.ru2006-11-201-7/+11
| | | | | | | - Fix overflow bugs in sysctl(8), systat(1), and vmstat(8) when printing values of "struct vmmeter" in kilobytes as they don't necessarily fit into 32 bits. (Fix sysctl(8) reporting of a total virtual memory; it's in pages too.)
* Clean obsolete reference to the old NMBCLUSTERS kernel option.marck2006-09-181-1/+0
| | | | | | | | It seems the last reference (modulo manual pages where such obsoleteness clearly highlighted). Approved by: re (bmah - kinda) MFC after: 3 days
* Send the pcvt(4) driver off to retirement.phk2006-05-171-1/+1
|
* Extend coverage of the MK_IPX build option to the following:ru2006-03-201-1/+2
| | | | | | | | | | | | | | | | | | | | | - <netipx> headers [1] - IPX library (libipx) - IPX support in ifconfig(8) - IPXrouted(8) - new MK_NCP option New MK_NCP build option controls: - <netncp> and <fs/nwfs> headers - NCP library (libncp) - ncplist(1) and ncplogin(1) - mount_nwfs(8) - ncp and nwfs kernel modules User knobs: WITHOUT_IPX, WITHOUT_IPX_SUPPORT, WITHOUT_NCP. [1] <netsmb/netbios.h> unconditionally uses <netipx> headers so they are still installed. This needs to be dealt with.
* Reimplementation of world/kernel build options. For details, see:ru2006-03-171-1/+3
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* tweaks to let this configuratio build and run under, e.g., qemu:luigi2006-01-312-2/+4
| | | | | | | | | | - add -lgeom - use bsdlabel instead of disklabel - increase image size to 2.88M (plenty of free space left) note, this is not really a bridge because the old-style bridging code is not in 7.0 anymore, so the kernel config file should be changed.
* unbreak the build script.luigi2006-01-311-169/+103
| | | | | Instead of using vnconfig/mdconfig it relies on the makefs port to build the image (UFS1) without need for root permissions.
* Remove bridge(4) from the tree. if_bridge(4) is a full functionalmlaier2005-09-272-57/+1
| | | | | | | | replacement and has additional features which make it superior. Discussed on: -arch Reviewed by: thompsa X-MFC-after: never (RELENG_6 as transition period)
* 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-213-3/+3
|
* NOIPSEC -> TRACEROUTE_NO_IPSECru2004-12-211-1/+1
|
* NOCLEAN -> NO_CLEANru2004-12-211-1/+1
| | | | NOCLEANDIR -> NO_CLEANDIR
* NOSHARE -> NO_SHAREru2004-12-211-1/+1
|
* NOHTML -> NO_HTMLru2004-12-211-1/+1
|
* Overhaul ppp(8) build options so they are safe to use inru2004-12-211-1/+1
| | | | | | | | | | | | | | | | /etc/make.conf: NOALIAS -> retired (support provided by PPP_NO_NAT) NOATM -> PPP_NO_ATM (also subject to NO_ATM global) NODES -> PPP_NO_DES (support was broken, now recovered) NOI4B -> PPP_NO_I4B (also subject to NO_I4B global) NOKLDLOAD -> PPP_NO_KLDLOAD NONAT -> PPP_NO_NAT NONETGRAPH -> PPP_NO_NETGRAPH NOPAM -> PPP_NO_PAM (will be subject to NO_PAM global) NORADIUS -> PPP_NO_RADIUS NOSUID -> retired (support provided by PPP_NO_SUID) PPP_NOSUID -> PPP_NO_SUID
* NOINET6 -> NO_INET6ru2004-12-211-1/+1
|
* NOGAMES -> NO_GAMESru2004-12-211-1/+1
|
* NOFSCHG -> NO_FSCHGru2004-12-211-1/+1
|
* NODOCCOMPRESS -> NO_DOCCOMPRESSru2004-12-211-3/+3
| | | | | | | | NOINFO -> NO_INFO NOINFOCOMPRESS -> NO_INFOCOMPRESS NOLINT -> NO_LINT NOPIC -> NO_PIC NOPROFILE -> NO_PROFILE
* NOLIBC_R -> NO_LIBC_Rru2004-12-211-1/+1
| | | | | NOLIBPTHREAD -> NO_LIBPTHREAD NOLIBTHR -> NO_LIBTHR
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-2110-10/+10
| | | | OK'ed by: core
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-192-5/+6
|
* Remove no longer needed I386_CPU option (it was commented out anyways).jhb2004-11-161-1/+0
|
* 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>
* remove stale documentationluigi2004-03-24102-3313/+0
|
* remove floppy image typeluigi2004-03-2426-1536/+0
|
* remove this floppy image too.luigi2004-03-2412-453/+0
|
* remove this floppy image.luigi2004-03-2417-541/+0
|
* Remove this picobsd floppy type.luigi2004-03-2441-1602/+0
| | | | | We only want to support one in -current, and let people take care of their own images.
* fix building of bridge floppiesluigi2004-03-241-1/+2
|
* Fix various issues with the picobsd build script in -current:luigi2004-03-211-16/+28
| | | | | | | | | | | + declare some shell variables as 'local' + add a missing ';;' in a 'case' statement + centralize newfs options + properly override GID and UID when installing include files and libraries + add a missing '-r' in disklabel commands (maybe not necessary, but it does not harm and it was used in the RELENG_4 version) + no more require 'perl' when installing the secondary loader + use '-t rsa1' when invoking ssh-keygen
* 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)
* Remove obsolete disklabel and newfs options.simokawa2003-11-071-8/+10
|
* comment out the 'sshd' entries as the image is now 1460KBluigi2003-06-221-2/+2
| | | | | | | | | | | | and does not fit into a floppy anymore (1403kb available). There is not much you can do now except bumping up the image size (by uncommenting the "fd_size=2880" line in ./config), at which point you can uncomment sshd, the associated library, and all the good stuff such as tcpdump and natd and ppp that you might want on such a box. A similar change should be applied to other picobsd image types.
* Make this compile again: we need to specify a scheduler,luigi2003-06-221-2/+3
| | | | | | and remove the count for devices "sc" and "atkbdc" This change does not apply to RELENG_4.
* 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.
* Upgrade the root partition mount to r/w before trying to write to it.luigi2002-11-171-0/+2
| | | | MFC after: 3 days
* de-__P()alfred2002-10-104-32/+32
|
* Fix some bitrotted documentation.markm2002-09-243-24/+18
|
* Make this compile again (libgmd now is a port, and remove someluigi2002-08-242-11/+34
| | | | binaries to save space).
* Mention the special pathname @__CWD__@luigi2002-08-241-3/+11
| | | | | Modify entry for libgmd (used by ssh) now that it is not part of the base system anymore.
* Add "tty" entry.luigi2002-07-141-0/+1
|
OpenPOWER on IntegriCloud