summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add support for /etc/make.conf.localdillon1998-08-291-1/+6
|
* make.conf.local test/include removed from make.conf, to be put in sys.mkdillon1998-08-293-12/+3
| | | | instead.
* Close a race window for getnewbuf() between shared lock holders of the vnode.luoqi1998-08-281-2/+2
| | | | Reviewed by: Mike Smith
* Introduce PERL5 variable.dima1998-08-281-1/+2
| | | | | | It's gonna be used in all p5- ports. Reviewed by: asami
* Sync with sys/i386/conf/majors.i386 revision 1.46.kato1998-08-281-1/+2
|
* Sync with sys/i386/conf/Makefile.i386 revision 1.118.kato1998-08-282-2/+10
|
* Sync with sys/i386/isa/if_ed.c and spkr.c revisions 1.35 and 1.144,kato1998-08-282-5/+6
| | | | respectively.
* Sync with sys/i386/i386/trap.c revision 1.128.kato1998-08-281-2/+2
|
* Sync with sys/i386/isa/syscons.c revision 1.276.kato1998-08-281-9/+11
|
* Sync with sys/i386/isa/sio.c revision up to 1.214.kato1998-08-282-22/+24
|
* Oops... We don't need threee copies of them.. :-(abial1998-08-2836-16522/+0
|
* Obtain the mib files from ../../net/crunch1/mibs.abial1998-08-281-2/+2
|
* Sync with on-line versions.abial1998-08-282-3/+16
|
* This file has been renamed to FREEBSD-upgrade in accordance with thejdp1998-08-281-28/+0
| | | | | | Policies section of the Handbook. Submitted by: "David O'Brien" <obrien>
* This file has been renamed to FREEBSD-upgrade in accordance with thejdp1998-08-281-11/+0
| | | | | | Policies section of the Handbook. Submitted by: "David O'Brien" <obrien>
* Typo fix.jkoshy1998-08-281-1/+1
|
* Add /usr/lib to the list of things to chflag before upgrading.jkh1998-08-282-4/+4
| | | | Noticed by: Blaz Zupan <blaz@gold.amis.net>
* Enable duplex autodetection if UTP media are autodetected.msmith1998-08-272-22/+24
| | | | | | | | | Add a sysctl 'machdep.cs_recv_delay' to specify how long to wait after receiving a packet in order to check for a subsequent (back-to-back) packet. The cs8900 has a very small receive buffer, so this helps avoid overflows at the cost of some extra CPU overhead. Submitted by: Oleg Sharoiko <os@rsu.ru>, MIHIRA "Sanpei" Yoshiro <sanpei@sanpei.org>
* This commit was generated by cvs2svn to compensate for changes in r38589,abial1998-08-27559-0/+65575
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of PicoBSD v0.4 tree.abial1998-08-27559-0/+65575
|
* Updated manual page. Removed description of (now defunct) -c restrictions.dillon1998-08-271-3/+2
|
* Fix recursive package add problem (for on-disk package files) I introducedjkh1998-08-271-3/+6
| | | | | with the change in semantics to make_playpen(). Now package dependencies more than 2 levels deep should work again. Pass the hat.
* Add support for reading directories as files.rnordier1998-08-271-26/+59
| | | | Sort out fs_ops, alloc/free.
* bmake framework for contrib_amdobrien1998-08-2719-2/+2378
|
* Make way for the contrib_amd bmake frame work.obrien1998-08-27187-46553/+0
|
* Use explicitly sized types when formatting cylinder groups.dfr1998-08-271-7/+7
|
* rpcgen our own mount.h, nfs_prot.h, mount_xdr.c, and nfs_prot_x.cobrien1998-08-273-3/+17
| | | | for NFSv3 support
* accidently changed some white spaceobrien1998-08-271-2/+2
|
* Only build the old boot loader on i386 if aout. The new loader willjb1998-08-271-1/+5
| | | | eventually be built if elf.
* Properly create db files vs. dbm files.obrien1998-08-271-33/+18
| | | | Obtained from: NetBSD
* Add CFS options to LINT, though commented out for now.jkh1998-08-273-3/+15
| | | | Submitted by: Robert Baron <rvb@sicily.odyssey.cs.cmu.edu>
* Add VT_CFS type.jkh1998-08-271-2/+2
| | | | Submitted by: Robert Baron <rvb@sicily.odyssey.cs.cmu.edu>
* NULLFS_DIAGNOSTICS and PCVT_SCANSET=2 listed twice.obrien1998-08-273-9/+3
|
* Catch more cases where the CDROM has been mounted.jkh1998-08-272-2/+8
|
* Hope I haven't missed anything or forgotten to credit anybody. (Byasami1998-08-271-189/+351
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the way, most of the things below are "Reviewed by: hoek" as well.) The changes are (roughly in order of appearance): (1) Revamp comments at beginning of file. Major rewrites. Reorder them into more relevant sections. Make clear which ones are user variables and not to be set in ports' Makefiles. Reviewed by: hoek (well, he's the only one who sent any comments) (2) Include ${.CURDIR}/Makefile.local if it exists. This is a local configuration file (ala rc.conf.local and make.conf.local) so please do not commit a file with this name to the repository. Suggested by: dillon (3) MANCOMPRESSED now takes three possible values: "yes", "no" and "maybe". (It used to be a binary variable -- the old behavior is now accomplished by "MANCOMPRESSED=yes". Ports that defined this variable to other values have been corrected.) "yes" means the manpages are installed compressed, "no" means they are not, and "maybe" means the port already respects the value of NOMANCOMPRESS. The default is "yes" for USE_IMAKE ports without NO_INSTALL_MANPAGES, and "no" otherwise. Add "compress-man" target and move manpage {,de}compression there. Reviewed by: hoek etc. and a full build of the ports tree (4) Add LIBDIR="${LIBDIR}" to MAKE_ENV. Makes easier to "fix" ports for /usr/lib/aout mess. Submitted by: ohashi@mickey.ai.kyutech.ac.jp (Takeshi Ohashi) (5) Change ${TMPPLIST} from ${WRKDIR}/PLIST.mktmp to ${WRKDIR}/.PLIST.mktmp. Suggested by: hoek Strongly seconded by: steve (6) Change a couple more relative pathnames to absolute ones. Submitted by: hoek (7) Move checksum into real-extract. (8) Change way rules are chained. Instead of: build: configure ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build we now have build: ${BUILD_COOKIE} ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} configure @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build Other than being more PC (pmake clean), this really speeds up skipping ports already built. For instance, "make package" on a fully packaged games subtree used to take 269 seconds on average, now it's 45 seconds on average. The flip side of this is that it will create more processes when the targets actually chain, but when you're actually compiling things, your make is creating half a bazzilion processes anyway so I don't think it matters. (9) ${TMPPLIST} is now a real dependency. Create "generate-plist" target to generate ${TMPPLIST}. Make sure it's called when needed (usually between do-install and post-install), and that the required files exist. (10) Change some messages so we can tell where "make index" failed. (11) Check if LIB_DEPENDS really generated the required shared lib or not. Seconded by: "Brent J. Nordquist" <bjn@visi.com>
* Add "deinstall" to list of targets. This is only fair since "install" andasami1998-08-261-3/+4
| | | | "reinstall" are already here. :)
* Reviewed by: asami@freebsd.org (Satoshi Asami)dillon1998-08-263-3/+18
| | | | | Give make.conf a make.conf.local capability similar to rc.conf's rc.conf.local capability. Eases large-site administration.
* Don't automatically restart syscalls for the signals that the threadjb1998-08-264-4/+4
| | | | kernel needs.
* Back out most of the last commit. It created problems with sigpause.jb1998-08-263-78/+3
|
* Fix an spl protection botch.gibbs1998-08-261-3/+3
| | | | Submitted by: Gene Stark <stark@FreeBSD.ORG>
* Remove -c restrictions from previous commit.des1998-08-261-13/+1
|
* Fix some OpenBSD/alpha warningsbrian1998-08-267-11/+16
|
* Remove redundant include file.brian1998-08-261-2/+1
|
* Put the IP buffer queues into struct ipcp.brian1998-08-2614-57/+62
| | | | Forgotten by: me
* The protocol must be in network byte order (OpenBSD only).brian1998-08-261-3/+3
|
* Delete trailing space that may have caused problemsgpalmer1998-08-261-2/+2
|
* Add OVERRIDE_CARD to the bktr options listsos1998-08-261-1/+2
|
* Move kdump & ktrace out of i386 specific section.gpalmer1998-08-261-5/+4
|
* o renable pccard_remove_driver (it was used in the skel.c driver)imp1998-08-262-22/+22
| | | | | o update skel.c to lots of stuff that has happened since the last time it was updated.
* priority comparison in maybe_resched() didn't work properly if currentdillon1998-08-261-6/+13
| | | | and chk process were on different scheduler queues. Fixed.
OpenPOWER on IntegriCloud