summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Link ucontext.h to sys/ucontext.hmarcel1999-10-032-37/+2
| | | | Pointed out by: bde
* Revert to 1.15, since, as pointed out by bde, 1.16 is wrong and evil.dcs1999-10-031-5/+5
| | | | Add $FreeBSD$.
* Reinstate the 4th argument to old signal handlers. Don't set itmarcel1999-10-032-4/+4
| | | | when the handler uses siginfo_t.
* Fix style bugs caused by using the wrong file to copy from. That onemarcel1999-10-032-8/+24
| | | | | | | gets fixed later on. Reinstate the mysterious 4th argument to signal handlers and add some comments on that.
* Before we start to mess with the VFS name-cache clean things up a little bit:phk1999-10-0318-269/+146
| | | | Isolate the namecache in its own file, and give it a dedicated malloc type.
* Disable pnp devices before running heuristic probes. This allows us todfr1999-10-031-2/+16
| | | | | 'hide' those devices from those probes so that they don't get probed and then re-probed later when the pnp probe is run.
* Fix style bugsmarcel1999-10-031-4/+2
| | | | Submitted by: bde
* Fix style bugs and orderingmarcel1999-10-031-7/+5
| | | | Submitted by: bde
* Restore -traditional compilationmarcel1999-10-031-3/+1
| | | | Submitted by: bde
* Don't use const and volatile directly. Use the macros. This fixesmarcel1999-10-031-2/+2
| | | | the breakage for K&R sources.
* This commit was generated by cvs2svn to compensate for changes in r51899,obrien1999-10-032-180/+441
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of EGCS 1.1.2obrien1999-10-032-180/+441
| |
* | Fixed "misspelling" of bcmp as memcmp. memcmp doesn't exist in thebde1999-10-038-5/+38
| | | | | | | | | | | | | | | | | | | | kernel, but gcc provides a pessimal builtin for it. Makefile.i386: Added a variable (CONF_CFLAGS) for configuration-specific compiler flags. LINT: Use CONF_CFLAGS to inhibit use of gcc builtins.
* | Fix building non-crypto releases.phk1999-10-031-1/+3
| |
* | Removed redefinitions of CDRIOCBLANK and CDRIOCNEXTWRITEABLEADDR.bde1999-10-032-6/+0
| |
* | Fixed the hack for using "../libgcc/Makefile" in libgcc_r/Makefile.bde1999-10-032-2/+4
| | | | | | | | | | | | ${LIB} was wrong at dependency-parsing time, so dependencies for libgcc_r*.a were wrong. This somehow worked right, except libgcc_r*.a were always out of date.
* | Set the i4b bandwidth - i4b doesn't report it via tcgetattr.brian1999-10-031-0/+1
| | | | | | | | Suggested by: Joe Karthauser <joe@uk.FreeBSD.org>
* | sv_SE collateache1999-10-039-4/+294
| | | | | | | | | | | | | | add one missing dependance PR: 13928 Submitted by: Palle Girgensohn <girgen@partitur.se>
* | ISO8859-5 time definitionache1999-10-035-0/+373
| |
* | ISO8859-5 collateache1999-10-039-0/+675
| | | | | | | | Submitted by: Nikolai Saoukh <nms@ethereal.ru>
* | allow comments in map filesache1999-10-031-0/+1
| |
* | ISO8859-5 localeache1999-10-036-0/+746
| | | | | | | | Submitted by: Nikolai Saoukh <nms@ethereal.ru>
* | add ru_RU->ru_SU alias for 8859-5ache1999-10-031-0/+1
| |
* | add ru_SU.ISO_8859-5 locale dirsache1999-10-032-0/+6
| |
* | This commit was generated by cvs2svn to compensate for changes in r51885,obrien1999-10-021-17/+15
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of EGCS 1.1.2obrien1999-10-021-17/+15
| |
* | * We have /var/tmp, not /usr/tmp. So use that where EGCS used the latter.obrien1999-10-021-4/+8
| | | | | | | | | | | | * In the absence of the env vars TMPDIR, TMP, TEMP (which override this ordering), attempt to create temperary files in /tmp, P_tmpdir (/var/tmp), /usr/tmp, and . until successful.
* | add SA_1FM_AT_EOD option for scsi_sa- this causes a default behaviour ofmjacob1999-10-021-0/+1
| | | | | | | | one filemark at end of media for tapes otherwise neither quirked nor known.
* | Fix includes. I missed this the first time around.mdodd1999-10-021-1/+3
| |
* | In some drivers we use two devices to be able to boot.sos1999-10-022-1/+3
| | | | | | | | | | | | | | | | | | So if si_iosize_max is allready set, dont mess with it.. Also just log the problem with maxphys not being set once. designed by: phk tested by: sos
* | Document SA_1FM_AT_EOD option.mjacob1999-10-023-0/+6
| |
* | Another 1FM@EOD quirk (from mike@sentex.net for a Seagate STT20000),mjacob1999-10-021-11/+9
| | | | | | | | | | | | and add a config option that allows one to default to 1FM@EOD for tapes otherwise unquirked or unknown as to which to prefer. Note that tcopy will be broken for these tapes until tcopy is fixed.
* | Print a warning that includes the mount source when the foregrounddillon1999-10-021-0/+1
| | | | | | | | | | | | | | mount fails prior to going into the background when a background NFS mount is requested. PR: misc/12376
* | o Add $FreeBSD$ as a rcsid instead of in a commentmarcel1999-10-021-31/+28
| | | | | | | | | | | | | | o Remove bitrotted #undef directives o Actually set errno now and order the functions Submitted by: bde
* | Remove the inline versions of sigaddset, sigdelset, sigemptyset,marcel1999-10-021-53/+0
| | | | | | | | | | | | sigfillset and sigismember. Submitted by: bde
* | o Add $FreeBSD$ as a rcsid instead of in a comment.marcel1999-10-021-5/+12
| | | | | | | | | | | | | | o Fix formatting o Return the error if sigprocmask fails instead of undefined data. Submitted by: bde
* | Use the PRVERB() macro instead of 'if (bootverbose) printf()...mdodd1999-10-021-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | Add debuging for all failure cases in aha_cmd(). Always check DATAIN_REG_READY even if we're ready to exit the read loop. The last fix allows the AHA-1640 MCA SCSI adapter to operate correctly and likely fixes problems on a few other oddball adapters. (I suspect my Dell Drive Array in 1540 mode needs this.) Reviewed by: Warner Losh
* | Fixed style bugs in prototype for aout_coredump() (mainly wrapping it withbde1999-10-021-3/+1
| | | | | | | | __BEGIN_DECLS/__END_DECLS to support C++ in 0.001% of the kernel).
* | Update man page to loader.conf(5) days.dcs1999-10-022-46/+28
| |
* | Fixed breakage of userland K&R support in rev.1.39. Kernel inline functionsbde1999-10-023-6/+6
| | | | | | | | with new-style function definitions were exported.
* | Add -C flag to indicate the presence of comments. Files thus processeddcs1999-10-022-1/+11
| | | | | | | | | | will be marked as having comments, which are indicated by two delimiter characters at the beginning of a line.
* | Ignore comment lines in files marked as having them.dcs1999-10-021-1/+10
| |
* | Change path order in makefile so newer fortune files will be built withdcs1999-10-023-6/+12
| | | | | | | | | | | | | | | | the latest fortune (strfile/caesar) sources. Correct a separator type in fortunes2. Add Unix geeks dating instructions (reference card style).
* | Fixed style bugs in prototypes.bde1999-10-021-13/+10
| |
* | Fix a problem relating to si_iosize_max which broke scsi devices.phk1999-10-022-5/+11
| |
* | Fix typo.des1999-10-021-1/+1
| | | | | | | | Pointed out by: Kelly Yancey <kbyanc@posi.net>
* | Removed unnecessary splclock() protection for getmicrotime() andbde1999-10-021-16/+1
| | | | | | | | | | | | | | | | getmicrouptime(). Removed unused includes. Reviewed by: ken
* | ncplib modules: bring up new ncp.ko and nwfs.kobp1999-10-023-1/+88
| |
* | ncplib continued: add appropriate options to LINT.bp1999-10-025-0/+26
| |
* | Import kernel part of ncplib: netncp and nwfsbp1999-10-0238-0/+13112
| | | | | | | | | | Reviewed by: msmith, peter Obtained from: ncplib
OpenPOWER on IntegriCloud