summaryrefslogtreecommitdiffstats
path: root/release/picobsd
Commit message (Collapse)AuthorAgeFilesLines
...
* there is no dev_mkdb anymoreluigi2009-03-261-1/+0
|
* This config file uses dynamically linked binaries, which is moreluigi2009-03-253-91/+99
| | | | | | | | | | | convenient when you want to import other programs because the libraries will not be replicated. Given that there are no floppies around anymore, I have bumped the fd size to 4MB (which is more than reasonable even for embedded platforms) and gives some room for other utilities. MFC after: 3 days
* devfs is the standard nowluigi2009-03-251-1/+0
|
* add support for shared "crunch" binary.luigi2009-03-251-20/+59
|
* remove stale comments on the size of objects, they are moreluigi2009-03-241-68/+48
| | | | | | | than 10 years old and do not reflect reality anymore. Also remove some commented out entries that have no hope to be useful anymore.
* add a function to help copying shared binaries from the outputluigi2009-03-241-2/+67
| | | | of a buildworld.
* remove unused "package" entry.luigi2009-03-241-66/+55
| | | | | | default to use devfs (we do that anyways) Many small changes in comments
* add the option to picobsd to copy files from the host filesystemluigi2009-03-181-5/+50
| | | | | | | | | | without root privs. This is done, among other things, replacing the absolute paths in the symlinks with relative paths, so we do not need to do a chroot to follow them. Still need to update the manpage. MFC after: 3 days
* Warns fixes: use putenv rather than setenv to avoid constness problems,dwmalone2009-03-172-2/+4
| | | | | | when we want to print an off_t cast to intmax_t and use %jd. Up WARNS to 6.
* remove duplicate entries for isa and npx, they areluigi2009-03-011-4/+0
| | | | in by default now
* when initializing, also build _includes and _librariesluigi2009-02-201-2/+2
| | | | | | On passing, fix a wrong comment MFC after: 3 days
* use /boot/loader by default, because the boot code seems toluigi2009-02-201-60/+109
| | | | | | | | | | have problems with kernels larger than 4MB. Add a flag to avoid the /boot/loader and use the old method. Add support for an additional makefile to perform custom manipulation (this is not documented yet). Add support for building an ISO image (not complete)
* update 'sio' with 'uart' and apply related changes.luigi2009-02-194-13/+20
|
* This main goals of this project are:qingli2008-12-151-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. separating L2 tables (ARP, NDP) from the L3 routing tables 2. removing as much locking dependencies among these layers as possible to allow for some parallelism in the search operations 3. simplify the logic in the routing code, The most notable end result is the obsolescent of the route cloning (RTF_CLONING) concept, which translated into code reduction in both IPv4 ARP and IPv6 NDP related modules, and size reduction in struct rtentry{}. The change in design obsoletes the semantics of RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland applications such as "arp" and "ndp" have been modified to reflect those changes. The output from "netstat -r" shows only the routing entries. Quite a few developers have contributed to this project in the past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and Andre Oppermann. And most recently: - Kip Macy revised the locking code completely, thus completing the last piece of the puzzle, Kip has also been conducting active functional testing - Sam Leffler has helped me improving/refactoring the code, and provided valuable reviews - Julian Elischer setup the perforce tree for me and has helped me maintaining that branch before the svn conversion
* Enable GCC stack protection (aka Propolice) for userland:ru2008-06-251-4/+5
| | | | | | | | | | | | | | | | | | | | | - It is opt-out for now so as to give it maximum testing, but it may be turned opt-in for stable branches depending on the consensus. You can turn it off with WITHOUT_SSP. - WITHOUT_SSP was previously used to disable the build of GNU libssp. It is harmless to steal the knob as SSP symbols have been provided by libc for a long time, GNU libssp should not have been much used. - SSP is disabled in a few corners such as system bootstrap programs (sys/boot), process bootstrap code (rtld, csu) and SSP symbols themselves. - It should be safe to use -fstack-protector-all to build world, however libc will be automatically downgraded to -fstack-protector because it breaks rtld otherwise. - This option is unavailable on ia64. Enable GCC stack protection (aka Propolice) for kernel: - It is opt-out for now so as to give it maximum testing. - Do not compile your kernel with -fstack-protector-all, it won't work. Submitted by: Jeremie Le Hen <jeremie@le-hen.org>
* libbsdxml is now required by ifconfig(8).thompsa2008-04-221-0/+1
| | | | Submitted by: Florian Smeets
* silence compiler complaintssam2007-11-261-2/+3
|
* Fix build of the "package" target, ignoring non existingluigi2007-11-141-41/+39
| | | | | | floppy types (in fact, we have only one left!) Also cleanup some code, using || and && in some places, and using "export VAR=value" instead of two separate lines.
* Fix picobsd builds. Changes include:luigi2007-11-145-12/+14
| | | | | | | | | | | | | - use proper make configuration for the build, using ${BINMAKE} as evaluated by ${VERSION}/src/Makefile - remove -lmytinfo from crunch.conf - remove support for login_access in tinyware/login - remove "machine i386" from the kernel config file It might actually be interesting to extend the script to do a cross build for !i386 ... MFC after: 3 days
* - 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
|
OpenPOWER on IntegriCloud