summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use .Ar instead of .ar. Correct incorrect use of .Sm (detected by Paul (pst)).charnier1998-06-041-4/+5
|
* Don't use beforedepend; just put generated headers in SRCS. ldgram.hbde1998-06-041-4/+3
| | | | | | | was already put in SRCS by the general yacc rules. Putting ldemul-list.h in SRCS fixes races in `make -jN' when .depend hasn't been made. Don't forget to clean ldemul-list.h.
* Typos.charnier1998-06-041-3/+3
|
* Don't forget to pretend that `make -n -jN' makes the targets that itbde1998-06-041-1/+2
| | | | | | | | | | | | | | | | | | | | | says it pretends to make. This bug was apparently harmless except for normal cases involving .ORDER statements when it made debugging of -jN using -n very confusing. E.g., for: .ORDER: beforedepend .depend depend: beforedepend .depend where beforedepend depends on something so that it is not initially up to date, `make [-n] -j2 depend' causes `make' to wait for itself to make beforedepend. This works fine without -n. The job to make beforedepend has normally been started, and beforedepend is marked as made when the job completes. However, with -n, the pseudo-job for making beforedepend has normally completed, and in any case there was no chance of beforedepend being marked as made. `make' actually exited almost immediately with status 0 instead of waiting forever.
* Removed special rules for lex- and yacc- generated files. The generalbde1998-06-041-12/+1
| | | | | rules work identically, except that they actually work if the yacc- generated header somehow becomes out of date.
* Fix my last commit which got caught in the cvs/cvsup cycle.jb1998-06-031-3/+2
| | | | | I'm told that I botched the tabs too. I'm not sure they are fixed now because I find that rather tedious.
* Use gethostname(3) to obtain the local host name, as opposed to uname(3).joerg1998-06-031-5/+4
| | | | Otherwise the length of the name is limited to 32 characters only.
* Missing DPADD's.peter1998-06-031-1/+4
|
* Add missing DPADD's.peter1998-06-0311-11/+42
|
* Add the DPT driver here. It's kinda ironic that it got enabled in -stablejkh1998-06-032-2/+16
| | | | | first. :) PR: 6848
* Force success of the probe (after doing it as before except in onebde1998-06-033-12/+15
| | | | | | | | | | | | | | miscconfigured case) if the port is the console. This fixes several bugs: - if all sioprobe()s failed, then the console driver followed null pointers in cdevsw[]. - if the sioprobe() for the console failed but another sioprobe() succeeded, then init hung early when the console couldn't be opened. - it was silly for the console to not be there after printing boot messages on it. Bugs introduced by this are hopefully no worse than old ones caused by forcing the success of the `cn' level probe.
* signal() returns SIG_ERR on error, not int.jb1998-06-031-4/+4
| | | | time() requires a time_t pointer, not a long.
* Fixed a printf() arg botch in the previous commit.bde1998-06-033-21/+18
| | | | | | | | | Only complain about an irq mismatch in the probe if the configured irq doesn't become active, and then print the bitmap of irqs that became active (including clock irqs) instead of just the first (not including clock irqs). Bugs reported by: msmith
* No longer need the architecture specific include from libc now thatjb1998-06-031-7/+0
| | | | NetBSD syscalls are defined in sys.mk if they are being used.
* Uh, the NetBSD syscall define spam for alpha has to go after /etc/make.confjb1998-06-031-1/+6
| | | | so that it works all the time.
* Sync with sys/i386/i386/machdep.c revision 1.298.kato1998-06-032-4/+42
|
* If using NetBSD syscalls the rtprio syscall doesn't exist, so justjb1998-06-031-1/+7
| | | | don't try to use it to set special priorities.
* In the case of alpha (only), more than just libc needs to know thatjb1998-06-031-1/+2
| | | | | NetBSD syscalls are being used, so spam all compiles with the define that indicates this.
* Ifdefed the netisr support.bde1998-06-032-4/+42
| | | | | PR: 6760 Reviewed by: joerg
* Correct wrong claim about `telldir()' cookie lifetimes.jkoshy1998-06-031-16/+11
| | | | | PR: 4043 Submitted by: Joe Orthoefer <j_orthoefer@tia.net>
* Spelling corrections.jkoshy1998-06-035-11/+11
| | | | | PR: 6829 Submitted by: Josh Gilliam <josh@quick.net>
* Correct description of -crtscts.jkoshy1998-06-031-2/+2
| | | | | PR: 6836 Submitted by: Andrew <andrew@ugh.net.au>
* Correct typo.jkoshy1998-06-031-2/+2
| | | | | PR: 6844 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
* If vm86 services are available, use these to perform the APM BIOSmsmith1998-06-039-37/+183
| | | | | | probe and intialisation. This will ultimately remove the grubby (but functional) hack that copies a real-mode function into low memory early in locore.s.
* PR: 6831danny1998-06-023-9/+9
| | | | | Submitted by: zerium@webindex.no MF22: remove '.' after weekday abbreviation.
* Increment __FreeBSD_version because the semctl() prototype changedjdp1998-06-021-2/+2
| | | | in <sys/sem.h>.
* Don't build perl in build-tools: if NOPERL is defined.jhay1998-06-021-2/+9
|
* PR: bin/6828thepish1998-06-021-30/+53
| | | | | | | Submitted by: njs3@doc.ic.ac.uk Obtained from: NetBSD Implement embedded variable expansion
* ".. x11amp appears to be calling shmctl(id, IPC_RMID, 0) and the emulationjkh1998-06-022-18/+26
| | | | | | | | layer does not like the null shmid_ds buffer pointer. The emulation layer returned an error without ever calling FreeBSD's shmctl, so the segments were not being deleted when the reference count went to zero." Submitted by: Kevin Street <street@iname.com>
* Treat an EOPNOTSUPP from fchflags() as a non-fatal case. Only warn aboutpeter1998-06-022-10/+25
| | | | | | | | | | | | | | it if flags were explicitly specified on the command line. Do not warn if we were merely trying to preserve flags or remove UF_NODUMP. NFS does not support flags. I'm not sure that this is ideal, but it should do for now. Installing a plain file onto a NFS server must work, we used to silently ignore the attempt. Doing a binary install looses the flags anyway since cpio doens't preserve them with the cdrom/network images. XXX make world should not use flags or chown/chgrp in the obj/tmp area. This is based on a suggestion from Ken Merry <ken@plutotech.com>.
* Fix brain-fart. "usr.bin/reinstall" should be "sbin/ldconfig".peter1998-06-021-2/+2
| | | | | | No comment. *-<:-) Submitted by: "Pierre Y. Dampure" <pierre.dampure@k2c.co.uk>
* Cut through the discussions and settle the issue: Everything in /var/runphk1998-06-021-2/+2
| | | | | | | is blown away at boot. If sudo or other programs needs directories, they had better make them in /usr/local/etc/rc.d/mumble.sh PR: 4138 5619 6793
* Cleanup and remove some dead code from the initialization.dyson1998-06-021-15/+5
|
* Correct sleep priority.dyson1998-06-024-8/+8
|
* Add a reference to the original softupdates paperjulian1998-06-021-0/+2
|
* Add a reference to the Ganger/Patt paperjulian1998-06-023-0/+9
|
* o Return error when the controller can't accept commands.eivind1998-06-025-19/+18
| | | | | | | o Make driver less chatty on boot (only announce version under bootverbose) Submitted by: Simon Shapiro <shimon@simon-shapiro.org>
* Set PAGE_SIZE for _SC_PAGESIZE sysconf().dufault1998-06-012-0/+2
|
* Add a trivial mechanism for returning a useful default value if one ismsmith1998-06-011-1/+4
| | | | | | | | | available and the kernel MIB setting is zero. Return the result from getpagesize() if the p1003_1b.pagesize MIB value is zero. Suggested by: Joerg Schilling <schilling@fokus.gmd.de>
* Allow devfs to support the 'uk' devicejulian1998-06-011-3/+27
| | | | Submitted by: Micha Class <michael_class@hp.com>
* add libcipher, and update comments about libdes, libkdb, libkrb etcpeter1998-06-011-4/+5
| | | | which do exist but are in the secure dist rather than the base.
* Look for kzhead.o and kztail.o in /usr/lib/aout.jhay1998-06-011-3/+3
|
* ldconfig is used at the end of installworld.peter1998-06-011-1/+3
|
* SUBDIR += rtld-aoutpeter1998-06-011-2/+5
|
* SUBDIR += lddpeter1998-06-011-2/+2
|
* SUBDIR += ldconfigpeter1998-06-011-2/+2
|
* These files were moved elsewhere (sbin/ldconfig, libexec/rtld-aout,peter1998-06-0120-5936/+0
| | | | usr.bin/ldd) as they stand alone and are under bsd-style license.
* Look for files in their new locations.peter1998-06-011-11/+7
|
* Build ldconfig in /sbin environment directly, rather than under the gnu ldpeter1998-06-011-6/+4
| | | | directory. The rcs files were repository copied.
* ldd standalone build, after repository copy.peter1998-06-011-2/+1
|
OpenPOWER on IntegriCloud