summaryrefslogtreecommitdiffstats
path: root/release/picobsd
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-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
|
* Add entry for the "screen" program.luigi2002-07-141-0/+23
|
* Not needed anymore.luigi2002-07-141-114/+0
|
* Replace a logverbose call with logluigi2002-07-141-1/+1
|
* Enable building of picobsd using CURRENT sources again.luigi2002-07-141-27/+43
| | | | | | | | | | | | | | | | | Following a suggestion by Ruslan, the initial creation of the includes and libraries (and build tools) is now done by invoking "make buildworld" (with -DPICOBSD which eventually will limit the amount of stuff built with a 2-line change in Makefile.inc1). The correct environment is then used for subsequent builds. Also remove write_mfs_in_kernel.c in favour of using dd All the above is conditional on __FreeBSD_version, as the previous method still worked for versions earlier than 500035, and I am unsure on how the "new" method works for earlier versions. Finally, note that the crunch.conf files need some work because some libraries (e.g. gmd) have gone away from the base installation.
* Move creation of password databases before starting daemons,luigi2002-07-011-3/+3
| | | | otherwise the latter might fail because userids are not found.
* This commit adds basic support for the UFS2 filesystem. The UFS2mckusick2002-06-211-4/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filesystem expands the inode to 256 bytes to make space for 64-bit block pointers. It also adds a file-creation time field, an ability to use jumbo blocks per inode to allow extent like pointer density, and space for extended attributes (up to twice the filesystem block size worth of attributes, e.g., on a 16K filesystem, there is space for 32K of attributes). UFS2 fully supports and runs existing UFS1 filesystems. New filesystems built using newfs can be built in either UFS1 or UFS2 format using the -O option. In this commit UFS1 is the default format, so if you want to build UFS2 format filesystems, you must specify -O 2. This default will be changed to UFS2 when UFS2 proves itself to be stable. In this commit the boot code for reading UFS2 filesystems is not compiled (see /sys/boot/common/ufsread.c) as there is insufficient space in the boot block. Once the size of the boot block is increased, this code can be defined. Things to note: the definition of SBSIZE has changed to SBLOCKSIZE. The header file <ufs/ufs/dinode.h> must be included before <ufs/ffs/fs.h> so as to get the definitions of ufs2_daddr_t and ufs_lbn_t. Still TODO: Verify that the first level bootstraps work for all the architectures. Convert the utility ffsinfo to understand UFS2 and test growfs. Add support for the extended attribute storage. Update soft updates to ensure integrity of extended attribute storage. Switch the current extended attribute interfaces to use the extended attribute storage. Add the extent like functionality (framework is there, but is currently never used). Sponsored by: DARPA & NAI Labs. Reviewed by: Poul-Henning Kamp <phk@freebsd.org>
* 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).
* sysctl -w -> sysctldd2002-05-114-10/+10
|
* 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}/.
OpenPOWER on IntegriCloud