summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Allow excessive backspacing to correctly abort an input (most significantlyhoek1999-12-262-12/+22
| | | | a search string input).
* Expand source comments a little -=> increased readability.hoek1999-12-262-8/+35
|
* This commit was generated by cvs2svn to compensate for changes in r55099,kris1999-12-2513-0/+2145
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import of OpenSSL v0.9.4kris1999-12-2513-0/+2145
|
* Fixed races accessing the RTC. The races apparently causedbde1999-12-255-20/+80
| | | | | | | | | | | | | | | apm_default_resume() to sometimes set a very wrong time. (1) Accesses to the RTC index and data registers were not atomic enough. Interrupts were not masked. This was only good enough until an interrupt handler (rtcintr()) started accessing the RTC in FreeBSD-2.0. (2) Access to the block of time registers in inittodr() was not atomic enough. inittodr() has 244us to read the time registers. Interrupts were not masked. This was only good enough until something (apm) started calling inittodr() after boot time in FreeBSD-2.0. The fix for (2) also makes the timecounter update more atomic, although this is currently unimportant due to the low resolution of the RTC. Problem reported by: mckay
* Add directories: preparation for OpenSSL import.kris1999-12-252-0/+4
|
* Sacrifice, for now, NFS and NETGRAPH on the alpha boot floppyjkh1999-12-255-15/+130
| | | | | so that we can get it back onto 1.44MB boot media again. This does not affect the i386 class build.
* Backout rev1.7, as it broke adventure(6) (const'ing a non-r/o variable).billf1999-12-251-1/+1
| | | | As wpaul notes, I was trying to fix something that wasn't broke.
* Fix the firmware build number output (again).msmith1999-12-251-1/+1
|
* Don't pass u_int32_t pointers to BUS_READ_IVAR since it tends to makedfr1999-12-243-9/+9
| | | | alphas panic.
* * Set the devclass of a device before calling the probe method. This allowsdfr1999-12-241-1/+12
| | | | | device_printf() etc. to print something intelligible. * Allow device_set_devclass(dev, 0) for clearing the devclass.
* Fixed a cast of a pointer to an integer of a possibly different size.bde1999-12-243-8/+8
| | | | | Fixed casts of non-`void *' pointers to uintptr_t. Fixed related style bugs. This file uses perfectly non-KNF formatting for casts.
* Since we build and install gasp(1) in /usr/libexec/${OBJFORMAT}/,green1999-12-241-0/+1
| | | | | and it is a user-run utility, it should be in objformat, so gasp is in the ${PATH} :)
* Removed unnecessary const poisoning (redundant casting) which was addedbde1999-12-241-2/+2
| | | | in rev.1.4.
* Merge from sys/i386/conf/files.i386 rev 1.293.kato1999-12-242-28/+28
|
* Merge from sys/i386/conf/GENERIC rev 1.218 & 1.219.kato1999-12-242-4/+4
|
* Removed -mno-486 from CFLAGS.kato1999-12-241-1/+0
|
* Mandate the inclusion of <ieeefp.h> instead of <floatingpoint.h>. Thesheldonh1999-12-241-1/+1
| | | | | | | | | latter is just wrong. There were many other problems spotted by bde, none of which are addressed here. Reviewed by: bde
* Link la_LN*4 tooache1999-12-241-1/+1
|
* Fix cut&paste errorache1999-12-241-2/+2
|
* Cosmetic fix; get the firmware build code and customisation tag themsmith1999-12-241-1/+1
| | | | | | right way around. Submitted by: "Chris D. Faulhaber" <jedgar@fxp.org>
* Add iso04 fontsache1999-12-245-0/+238
| | | | Submitted by: Ricardas Cepas <rch@writeme.com>
* Add Lithuanian keyboardache1999-12-243-0/+245
| | | | Submitted by: Ricardas Cepas <rch@writeme.com>
* Add lt_LTache1999-12-243-0/+201
| | | | Submitted by: Ricardas Cepas <rch@writeme.com>
* Add 8859-4 and lt_LTache1999-12-247-1/+499
| | | | | | Add missing dependance to cs_CZ Submitted by: Ricardas Cepas <rch@writeme.com>
* Add 8859-4 and lt_LTache1999-12-243-0/+165
| | | | Submitted by: Ricardas Cepas <rch@writeme.com>
* Add 8859-4 and lt_LT entriesache1999-12-242-0/+12
|
* Oops, fix typo in prev. commitache1999-12-241-1/+1
|
* Add Latin2 FreeBSD consolesache1999-12-241-2/+25
| | | | | | Minor correction of comments Submitted by: Latin2 console from Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* Add ACS support to 8859-2 fontsache1999-12-246-295/+198
| | | | | | | | Remove stale 8859-2 font Fix Russian INDEX entries Add more languages to FONT fields Submitted by: fonts from Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* Use 'i' for ACS lantern (as ncurses expect it)ache1999-12-241-7/+7
|
* New man page. This will need modifications RSN.grog1999-12-241-0/+282
|
* Creating weak symbols doesn't work correctly when building an aout libc.jasone1999-12-244-16/+8
| | | | | | | | | | | | Doing the "right thing" here is difficult, so create two ENTRY points for each function (for example, __setjmp and setjmp are equivalent). This isn't pretty, but it works for both aout and ELF. libc symbol naming needs an overhaul in order to properly support function wrapping, specifically in the case of a real libpthread, and these duplicate entry points should be fixed as part of that overhaul. Pointed out by: bde
* Update config rules for making {linux|svr4}_assym.hmarcel1999-12-232-20/+20
| | | | Assembler symbols are now made using genassym(1).
* Don't bother fork()ing after closing a ctty if ppp is about tobrian1999-12-231-0/+10
| | | | terminate anyway.
* Understand double-quotes anywhere on a command line in the samebrian1999-12-233-18/+14
| | | | | way that a shell does. The previous way ppp did it just didn't make any sense.
* Correct warning about unindented commands when the unindented commandbrian1999-12-231-27/+34
| | | | is actually a new label with a comment at the end of the line.
* Use genassym(1) and <sys/assym.h> to generate assembler symbols.marcel1999-12-232-28/+9
|
* Use genassym(1) and <sys/assym.h> to generate assembler symbols.marcel1999-12-233-44/+13
|
* o Define `offsetof' when not already defined,marcel1999-12-231-5/+10
| | | | | | | o Define ASSYM(sym, v) as the primary macro to use, o Define ASSYM_SELF and ASSYM_OFFSET in terms of ASSYM, Psychological manipulation by: bde <grin>
* Don't build caesar as a tool. fortune(6) doesn't depend on itmarcel1999-12-231-3/+3
| | | | | anymore. Update comments and variable names as well to wipe out any traces that may confuse people in the future.
* Use tr(1) instead of caesar(6) to perform the rotation. This removesmarcel1999-12-231-2/+1
| | | | | | | | the dependency on caesar which therefore doesn't need to be built by bootstrap-tools. Suggested by: des Previously mentioned by: Peter Jeremy <peter.jeremy@alcatel.com.au>
* Fix problem reported by Matt Dillon. Occasionally, very small receivedwpaul1999-12-231-1/+14
| | | | | | | | | | frames would be handled incorrectly due to bad usage of m_pullup() in the case where the frame wraps from the end of the receive buffer back the beginning. Also, when manually extending small packets to pad them to the minimum frame length during transmission, zero out the pad area to make some really paranoid people happy.
* Fix zero-padding for printf formats which include a precision orsheldonh1999-12-231-2/+8
| | | | | | | | | width. This is a vendor-supplied patch. Requested by: bde Submitted by: Aharon Robbins <arnold@skeeve.com>
* Removed vestiges of BAD144 support.bde1999-12-231-1/+2
|
* Removed vestiges of BAD144 support.bde1999-12-232-4/+1
| | | | Removed -mno-486 from CFLAGS since it is no longer supported by gcc.
* Fixed bitrot in synopsis. The prototype for panic() was moved tobde1999-12-231-2/+1
| | | | <sys/param.h>, but the #includes weren't adjusted here.
* Fixed wrong function types (the device_add_child() family returns abde1999-12-231-2/+2
| | | | device_t, not an int).
* Removed unused include of <sys/buf.h> from synopsis. This include isbde1999-12-232-3/+0
| | | | | | | needed to access the internals of buffers but not necessarily to use the VOP. <sys/buf.h> recently grew a bogus dependency on <sys/systm.h> for the declaration of spl*, and I prefer to fix the synopsis breakage by removing a wart instead of adding one.
* Fixed bitrot in synopsis. The prototype for VOP_ISLOCKED() changedbde1999-12-231-1/+1
| | | | | recently, except of course in the documentation. Other parts of this man page are several years out of date.
OpenPOWER on IntegriCloud