aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add missing DPADD's.Peter Wemm1998-06-0311-11/+42
| | | | Notes: svn path=/head/; revision=36615
* Add the DPT driver here. It's kinda ironic that it got enabled in -stableJordan K. Hubbard1998-06-032-2/+16
| | | | | | | | first. :) PR: 6848 Notes: svn path=/head/; revision=36614
* Force success of the probe (after doing it as before except in oneBruce Evans1998-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. Notes: svn path=/head/; revision=36613
* signal() returns SIG_ERR on error, not int.John Birrell1998-06-031-4/+4
| | | | | | | time() requires a time_t pointer, not a long. Notes: svn path=/head/; revision=36612
* Fixed a printf() arg botch in the previous commit.Bruce Evans1998-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 Notes: svn path=/head/; revision=36611
* No longer need the architecture specific include from libc now thatJohn Birrell1998-06-031-7/+0
| | | | | | | NetBSD syscalls are defined in sys.mk if they are being used. Notes: svn path=/head/; revision=36610
* Uh, the NetBSD syscall define spam for alpha has to go after /etc/make.confJohn Birrell1998-06-031-1/+6
| | | | | | | so that it works all the time. Notes: svn path=/head/; revision=36609
* Sync with sys/i386/i386/machdep.c revision 1.298.KATO Takenori1998-06-032-4/+42
| | | | Notes: svn path=/head/; revision=36608
* If using NetBSD syscalls the rtprio syscall doesn't exist, so justJohn Birrell1998-06-031-1/+7
| | | | | | | don't try to use it to set special priorities. Notes: svn path=/head/; revision=36607
* In the case of alpha (only), more than just libc needs to know thatJohn Birrell1998-06-031-1/+2
| | | | | | | | NetBSD syscalls are being used, so spam all compiles with the define that indicates this. Notes: svn path=/head/; revision=36606
* Ifdefed the netisr support.Bruce Evans1998-06-032-4/+42
| | | | | | | | PR: 6760 Reviewed by: joerg Notes: svn path=/head/; revision=36605
* Correct wrong claim about `telldir()' cookie lifetimes.Joseph Koshy1998-06-031-16/+11
| | | | | | | | PR: 4043 Submitted by: Joe Orthoefer <j_orthoefer@tia.net> Notes: svn path=/head/; revision=36603
* Spelling corrections.Joseph Koshy1998-06-035-11/+11
| | | | | | | | PR: 6829 Submitted by: Josh Gilliam <josh@quick.net> Notes: svn path=/head/; revision=36601
* Correct description of -crtscts.Joseph Koshy1998-06-031-2/+2
| | | | | | | | PR: 6836 Submitted by: Andrew <andrew@ugh.net.au> Notes: svn path=/head/; revision=36599
* Correct typo.Joseph Koshy1998-06-031-2/+2
| | | | | | | | PR: 6844 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com> Notes: svn path=/head/; revision=36597
* If vm86 services are available, use these to perform the APM BIOSMike Smith1998-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. Notes: svn path=/head/; revision=36596
* PR: 6831Daniel O'Callaghan1998-06-023-9/+9
| | | | | | | | Submitted by: zerium@webindex.no MF22: remove '.' after weekday abbreviation. Notes: svn path=/head/; revision=36594
* Increment __FreeBSD_version because the semctl() prototype changedJohn Polstra1998-06-021-2/+2
| | | | | | | in <sys/sem.h>. Notes: svn path=/head/; revision=36592
* Don't build perl in build-tools: if NOPERL is defined.John Hay1998-06-021-2/+9
| | | | Notes: svn path=/head/; revision=36589
* PR: bin/6828Peter Hawkins1998-06-021-30/+53
| | | | | | | | | | Submitted by: njs3@doc.ic.ac.uk Obtained from: NetBSD Implement embedded variable expansion Notes: svn path=/head/; revision=36588
* ".. x11amp appears to be calling shmctl(id, IPC_RMID, 0) and the emulationJordan K. Hubbard1998-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> Notes: svn path=/head/; revision=36587
* Treat an EOPNOTSUPP from fchflags() as a non-fatal case. Only warn aboutPeter Wemm1998-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>. Notes: svn path=/head/; revision=36586
* Fix brain-fart. "usr.bin/reinstall" should be "sbin/ldconfig".Peter Wemm1998-06-021-2/+2
| | | | | | | | | No comment. *-<:-) Submitted by: "Pierre Y. Dampure" <pierre.dampure@k2c.co.uk> Notes: svn path=/head/; revision=36585
* Cut through the discussions and settle the issue: Everything in /var/runPoul-Henning Kamp1998-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 Notes: svn path=/head/; revision=36584
* Cleanup and remove some dead code from the initialization.John Dyson1998-06-021-15/+5
| | | | Notes: svn path=/head/; revision=36583
* Correct sleep priority.John Dyson1998-06-024-8/+8
| | | | Notes: svn path=/head/; revision=36582
* Add a reference to the original softupdates paperJulian Elischer1998-06-021-0/+2
| | | | Notes: svn path=/head/; revision=36581
* Add a reference to the Ganger/Patt paperJulian Elischer1998-06-023-0/+9
| | | | Notes: svn path=/head/; revision=36580
* o Return error when the controller can't accept commands.Eivind Eklund1998-06-025-19/+18
| | | | | | | | | | o Make driver less chatty on boot (only announce version under bootverbose) Submitted by: Simon Shapiro <shimon@simon-shapiro.org> Notes: svn path=/head/; revision=36579
* Set PAGE_SIZE for _SC_PAGESIZE sysconf().Peter Dufault1998-06-012-0/+2
| | | | Notes: svn path=/head/; revision=36578
* Add a trivial mechanism for returning a useful default value if one isMike Smith1998-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> Notes: svn path=/head/; revision=36577
* Allow devfs to support the 'uk' deviceJulian Elischer1998-06-011-3/+27
| | | | | | | Submitted by: Micha Class <michael_class@hp.com> Notes: svn path=/head/; revision=36576
* add libcipher, and update comments about libdes, libkdb, libkrb etcPeter Wemm1998-06-011-4/+5
| | | | | | | which do exist but are in the secure dist rather than the base. Notes: svn path=/head/; revision=36575
* Look for kzhead.o and kztail.o in /usr/lib/aout.John Hay1998-06-011-3/+3
| | | | Notes: svn path=/head/; revision=36574
* ldconfig is used at the end of installworld.Peter Wemm1998-06-011-1/+3
| | | | Notes: svn path=/head/; revision=36573
* SUBDIR += rtld-aoutPeter Wemm1998-06-011-2/+5
| | | | Notes: svn path=/head/; revision=36572
* SUBDIR += lddPeter Wemm1998-06-011-2/+2
| | | | Notes: svn path=/head/; revision=36571
* SUBDIR += ldconfigPeter Wemm1998-06-011-2/+2
| | | | Notes: svn path=/head/; revision=36570
* These files were moved elsewhere (sbin/ldconfig, libexec/rtld-aout,Peter Wemm1998-06-0120-5936/+0
| | | | | | | usr.bin/ldd) as they stand alone and are under bsd-style license. Notes: svn path=/head/; revision=36569
* Look for files in their new locations.Peter Wemm1998-06-011-11/+7
| | | | Notes: svn path=/head/; revision=36568
* Build ldconfig in /sbin environment directly, rather than under the gnu ldPeter Wemm1998-06-011-6/+4
| | | | | | | directory. The rcs files were repository copied. Notes: svn path=/head/; revision=36567
* ldd standalone build, after repository copy.Peter Wemm1998-06-011-2/+1
| | | | Notes: svn path=/head/; revision=36566
* Seperate the Paul Kranenburg a.out rtld stuff into a stand-alone area awayPeter Wemm1998-06-011-5/+3
| | | | | | | | from the gpl ld code. This is part 2 of something that I began in 1996. A repository copy has happened behind cvs's back. Notes: svn path=/head/; revision=36565
* Sync with sys/i386/isa/sio.c revision 1.203.KATO Takenori1998-06-012-46/+56
| | | | Notes: svn path=/head/; revision=36564
* Make sure we go a nfs_fsinfo() in get/putpages before callingPeter Wemm1998-06-012-60/+140
| | | | | | | | | | | readrpc/writerpc, since they assume it's already been done. This could break if the first read/write access to a nfs filesystem was an exec() or mmap() instead of a read(), write() syscall. (or statfs()). nfs_getpages() could return an errno (EOPNOTSUPP) instead of a VM_PAGER_* return code. Some layout tweaks for the get/putpages code. Notes: svn path=/head/; revision=36563
* Fix post-test pre-commit cleanup typo.Peter Wemm1998-06-012-4/+4
| | | | Notes: svn path=/head/; revision=36562
* readlink() returns EINVAL rather than EPERM if called on a non-symlink.Peter Wemm1998-06-012-4/+4
| | | | Notes: svn path=/head/; revision=36561
* Preset the maximum file size before we get to nfs_fsinfo(), based onPeter Wemm1998-06-012-16/+28
| | | | | | | | | | | | | an (over?) conservative assumption about what the client can store in it's buffer cache using a signed 32-bit 512-byte block number index. Otherwise it's possible for some file access when maxfilesize = 0 (eg: /usr is nfs mounted and doing an execve()) Pointed out by: bde XXX It might make sense to do a preemptive nfs_fsinfo() call at mount time. Notes: svn path=/head/; revision=36560
* Trim a domain part for wtmp as same as showed by "netstat -r".Atsushi Murai1998-06-013-4/+47
| | | | | | | | | | | | | | | | Here is a some example for avoiding a confusion. It asssumes a logged host domain is "spec.co.jp". All example is longer than UT_HOSTNAMELEN value. 1) turbo.tama.spec.co.jp: 192.19.0.2 -> trubo.tama 2) turbo.tama.foo.co.jp : 192.19.0.2 -> 192.19.0.2 3) specgw.spec.co.jp : 202.32.13.1 -> specgw Submitted by: Atsushi Murai <amurai@spec.co.jp> Notes: svn path=/head/; revision=36559
* Remove bogus #defines and redefintions for KERNEL, mount, nfs_init, thePeter Wemm1998-06-011-6/+0
| | | | | | | beastie builds just fine without them and gets less warnings. Notes: svn path=/head/; revision=36558