aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Rely on ../Makefile.inc to set the object format in CFLAGS and theBruce Evans1998-12-301-7/+4
| | | | | | | | | default for BINDIR. Fixed some style bugs in previous aout enforcement. Notes: svn path=/head/; revision=42176
* Various changes to support OSF1 emulation:Doug Rabson1998-12-3010-40/+69
| | | | | | | | | | | | | | * Move the user stack from VM_MAXUSER_ADDRESS to a place below the 32bit boundary (needed to support 32bit OSF programs). This should also save one pagetable per process. * Add cvtqlsv to the set of instructions handled by the floating point software completion code. * Disable all floating point exceptions by default. * A minor change to execve to allow the OSF1 image activator to support dynamic loading. Notes: svn path=/head/; revision=42175
* Enforce building with -aout, since building with OBJFORMAT=elf doesn'tBruce Evans1998-12-301-3/+3
| | | | | | | work. Notes: svn path=/head/; revision=42174
* Enforce building with -aout, since building with OBJFORMAT=elf doesn'tBruce Evans1998-12-301-8/+3
| | | | | | | | | | | work. Rely on ../Makefile.inc to set the the default for BINDIR. Removed comments about installing links to bootxx and xxboot. Notes: svn path=/head/; revision=42173
* Rely on ../Makefile.inc to set the default for BINDIR.Bruce Evans1998-12-301-2/+1
| | | | Notes: svn path=/head/; revision=42172
* Rely on ../Makefile.inc to set the object format in CFLAGS and theBruce Evans1998-12-301-14/+5
| | | | | | | | | | | | | | | | default for BINDIR. The default BINDIR of /usr/mdec can't be overridden yet because libdisk still uses /usr/mdec and installing in /boot might clobber the new boot blocks. Don't install links to bootxx or xxboot. Install boot1 and boot2 in 1 step. Don't delete the boot.help source file on installing it when ${COPY} is null. Notes: svn path=/head/; revision=42171
* Add -aout to CFLAGS centrally.Bruce Evans1998-12-301-1/+3
| | | | | | | Set the default for BINDIR (to /usr/mdec) centrally. Notes: svn path=/head/; revision=42170
* Add entry for rusiian FAQ.Dmitrij Tejblum1998-12-301-1/+5
| | | | Notes: svn path=/head/; revision=42169
* We don't specify "vector mumble" anymorePoul-Henning Kamp1998-12-303-45/+45
| | | | | | | Submitted by: Boris Staeblow <balu@dva.in-berlin.de> Notes: svn path=/head/; revision=42168
* spppcontrol already lives in /sbinPoul-Henning Kamp1998-12-301-2/+1
| | | | Notes: svn path=/head/; revision=42167
* Sync with sys/i386/isa/sio.c revision 1.220.KATO Takenori1998-12-302-316/+2
| | | | Notes: svn path=/head/; revision=42166
* Sync with sys/i386/isa/pcaudio.c revision 1.45.KATO Takenori1998-12-301-7/+39
| | | | Notes: svn path=/head/; revision=42165
* Sync with sys/i386/isa/fd.c revision 1.130.KATO Takenori1998-12-302-164/+4
| | | | Notes: svn path=/head/; revision=42164
* Sync with sys/i386/conf/options.i386 revision up to 1.100.KATO Takenori1998-12-302-44/+76
| | | | Notes: svn path=/head/; revision=42163
* Sync with sys/i386/conf/majors.i386 revision up to 1.58.KATO Takenori1998-12-301-3/+4
| | | | Notes: svn path=/head/; revision=42162
* Sync with sys/i386/conf/files.i386 revision up to 1.215.KATO Takenori1998-12-302-156/+50
| | | | Notes: svn path=/head/; revision=42161
* Sync with sys/i386/conf/devices.i386 revision 1.15.KATO Takenori1998-12-301-2/+2
| | | | Notes: svn path=/head/; revision=42160
* SMP stuff has been merged into GENERIC98 file.KATO Takenori1998-12-301-246/+0
| | | | Notes: svn path=/head/; revision=42159
* Removed GENERICupgrade file.KATO Takenori1998-12-301-203/+0
| | | | Notes: svn path=/head/; revision=42158
* Sync with sys/i386/conf/GENERIC revision up to 1.140.KATO Takenori1998-12-302-10/+22
| | | | Notes: svn path=/head/; revision=42157
* remove non-existant references, correct spelling errors.Bill Fumerola1998-12-304-4/+4
| | | | | | | | | PR: docs/7963, docs/7790 Submitted by: Stefan Eggers seggers@semyam.dinoco.de Norihiro Kumagai kuma@jp.freebsd.org Notes: svn path=/head/; revision=42156
* Silence -Wtrigraph.Tim Vanderhoek1998-12-3010-27/+27
| | | | | | | Submitted by: Bradley Dunn <bradley@dunn.org> (pr: kern/8817) Notes: svn path=/head/; revision=42155
* Ensure a terminating null when processing hostname strings fromChris Timmons1998-12-291-4/+7
| | | | | | | | arbitrary sources. Obtained from: OpenBSD Notes: svn path=/head/; revision=42154
* Don't free swap in swap_pager_getpages(): this code probably cause theDmitrij Tejblum1998-12-291-23/+1
| | | | | | | | | | | | | | "dying daemons" problem. (I thought this code was introduced in rev.1.80, but it just relaxed the condition.) Also, kill related "suggest more swap space" warning (also introduced in 1.80). It was confusing, to say the least... Requested by: msmith Not objected by: dg Notes: svn path=/head/; revision=42153
* Directories aren't executable.Tim Vanderhoek1998-12-291-2/+2
| | | | | | | | Submitted by: Dennis Glatting <dennis.glatting@software-munitions.com> (misc/9147) Notes: svn path=/head/; revision=42152
* Misplaced comma.Tim Vanderhoek1998-12-291-2/+2
| | | | Notes: svn path=/head/; revision=42151
* Slightly clarify wording of "Example".Tim Vanderhoek1998-12-291-2/+2
| | | | Notes: svn path=/head/; revision=42149
* Accept "!*" as a valid all-programs tag line as documented.Chris Timmons1998-12-291-2/+2
| | | | | | | | PR: 8447 Submitted by: Gaspar Chilingarov <nightmar@lemming.acc.am> Notes: svn path=/head/; revision=42148
* Fix the tl_start() routine; sometimes the tl_tx_tail pointer was notBill Paul1998-12-291-3/+3
| | | | | | | being updated correctly. Notes: svn path=/head/; revision=42146
* follow up to:Poul-Henning Kamp1998-12-291-3/+1
| | | | | | | Pre 3.0 branch cleanup casualty #1: DSI_SOFT_MODEM support. Notes: svn path=/head/; revision=42145
* Here is a patch to make mountd work.Doug Rabson1998-12-292-42/+42
| | | | | | | | | | | | It just replace u_long with u_int32_t and shouldn't affect on i386. Without this patch, - unaligned accesses occur - permission denied randomly Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp> Notes: svn path=/head/; revision=42144
* Add -I${.CURDIR} since it #includes logo.c from the source dir and breaksPeter Wemm1998-12-291-2/+2
| | | | | | | | | when building with an obj dir. Reported by: Quite a few people.. :-/ Notes: svn path=/head/; revision=42143
* gzip the kern.flp kernel, don't kzip it.Jordan K. Hubbard1998-12-291-2/+6
| | | | Notes: svn path=/head/; revision=42142
* Add fxp0. It seems to be Alpha-OK, although I don't have a card to test.Gary Palmer1998-12-292-2/+4
| | | | Notes: svn path=/head/; revision=42141
* Remove bogus reference to mkfilters(1)Bill Fumerola1998-12-291-1/+1
| | | | | | | | PR: docs/7790 Submitted by: Stefan Eggers seggers@semyam.dinoco.de Notes: svn path=/head/; revision=42140
* Remove bogus reference.Bill Fumerola1998-12-291-1/+1
| | | | | | | | PR: docs/8430 Submitted by: jkb Notes: svn path=/head/; revision=42138
* reserve 110 for ses (SCSI Environmental Services) driverMatt Jacob1998-12-291-1/+2
| | | | Notes: svn path=/head/; revision=42137
* Reserve cdev 110 for SCSI Environmental Services driverJordan K. Hubbard1998-12-292-2/+4
| | | | | | | Requested by: mjacob Notes: svn path=/head/; revision=42136
* Improved DDB_UNATTENDED behaviour. From the submitter:Mike Smith1998-12-286-13/+27
| | | | | | | | | | | | | | | | | | | | | | | | | There's something that's been bugging me for a while, so I decided to fix it. FreeBSD now will DTRT WRT DDB and DDB_UNATTENDED (!debugger_on_panic), at least in my opinion. The behavior change is such that: 1. Nothing changes when debugger_on_panic != 0. 2. When DDB_UNATTENDED (!debugger_on_panic), if a panic occurs, the machine will reboot. Also, if a trap occurs, the machine will panic and reboot, unlike how it broke to DDB before. HOWEVER, a trap inside DDB will not cause a panic, allowing full use of DDB without having to worry about the machine being stuck at a DDB prompt if something goes wrong during the day. Patches for this behavior follow my signature, and it would be a boon to anyone (like me) who uses DDB_UNATTENDED, but actually wants the machine to panic on a trap (otherwise, what's the use, if the machine causes a fatal trap rather than a true panic, of debugger_on_panic?). The changes cause no adverse behavior, but do involve two symbols becoming global Submitted by: Brian Feldman <green@unixhelp.org> Notes: svn path=/head/; revision=42135
* oops- I must have had a mangeld EntriesMatt Jacob1998-12-281-1/+1
| | | | Notes: svn path=/head/; revision=42134
* No more isdn directory, ergo, shouldn't be on the list of subdirectories, etc..Matt Jacob1998-12-281-1/+1
| | | | Notes: svn path=/head/; revision=42133
* clarify headers;ansifyMatt Jacob1998-12-282-120/+44
| | | | Notes: svn path=/head/; revision=42132
* clarify headers;move uninit to outer layer;remove watchdogMatt Jacob1998-12-289-136/+173
| | | | Notes: svn path=/head/; revision=42131
* Force ARCHIVE Vipers to be FIXEDMatt Jacob1998-12-281-1/+5
| | | | Notes: svn path=/head/; revision=42130
* Rename smbtx to intsmb (IntelSMB interface), the future PIIX4 SMBusNicolas Souchu1998-12-281-22/+21
| | | | | | | interface driver. Notes: svn path=/head/; revision=42129
* Dip my toes into the fire and zap the leftover lkm hooks.. It seems theyPeter Wemm1998-12-282-26/+4
| | | | | | | | | try and recurse if the lkm dir exists for some reason but there isn't any Makefile there. (eg: stray files prevented cvs update -P from removing the empty dirs) Notes: svn path=/head/; revision=42128
* Update for pseudo-device support tweaks..Peter Wemm1998-12-281-6/+12
| | | | Notes: svn path=/head/; revision=42127
* Put the i4b stuff under the `i386 only' section until someone fixes upGary Palmer1998-12-281-2/+2
| | | | | | | the build problems on the Alpha. Notes: svn path=/head/; revision=42126
* Tweaks as a result of having vinum statically buildable in a kernel.Peter Wemm1998-12-284-10/+10
| | | | Notes: svn path=/head/; revision=42125
* Config glue for 'pseudo-device vinum'Peter Wemm1998-12-282-3/+18
| | | | Notes: svn path=/head/; revision=42124