summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Oops, remove some chaff from previous commit.dg1995-04-091-6/+0
|
* Updated netstat to grok 4.4 QUEUE macros now being used to like the PCBsdg1995-04-092-10/+12
| | | | together.
* Add missing header referenceache1995-04-091-0/+1
|
* From Matt Thomas: Added support for 100Mb cards (such as the DEC DE-500-XAdg1995-04-093-273/+702
| | | | and SMC 9332).
* Add etc/sysconfig to list of files stuck on the cpio floppy. I thoughtjkh1995-04-091-2/+2
| | | | we did this already?!?
* Remove preservation of myname and defaultrouter files - they're deprecatedjkh1995-04-091-15/+1
| | | | anyway.
* Non-blocking lockache1995-04-091-13/+20
| | | | | Remove old salt cause possible endless loop Submitted by: <wosch@cs.tu-berlin.de>
* Upgrade to RFC1700 (IANA)ache1995-04-091-161/+1637
|
* Implemented PCB hashing. Includes new functions in_pcbinshash, in_pcbrehash,dg1995-04-0916-132/+231
| | | | and in_pcblookuphash.
* Added a few more entries to the list of prime numbers.dg1995-04-091-4/+4
|
* Remove unneded substitutesache1995-04-082-20/+4
|
* Move default address of lnc0 to 0x300. Luigi Rizzo said that his cardphk1995-04-085-10/+10
| | | | cannot even go below 0x300...
* Implement a simple hook (or hack?) to allow graphics device consolejoerg1995-04-088-12/+75
| | | | | | | | | | | | | drivers to protect DDB from being invoked while the console is in process-controlled (i.e., graphics) mode. Implement the logic to use this hook from within pcvt. (I'm sure Søren will do the syscons part RSN). I've still got one occasion where the system stalled, but my attempts to trigger the situation artificially resulted int the expected behaviour. It's hard to track bugs without the console and DDB available. :-/
* Don't choke if secure bits are not available.phk1995-04-081-2/+4
|
* pcvt is proud enough to have a man page. :)joerg1995-04-081-1/+3
|
* Added Makefile for example files. They are now installed innate1995-04-081-0/+17
| | | | /usr/share/examples/cvs for use by the cvsinit script.
* Added /usr/share/examples/cvs for use by cvsinit.nate1995-04-081-1/+3
|
* Update controls & remainsache1995-04-081-2/+3
|
* Remove digrams to not confuse sortingache1995-04-082-6/+28
|
* Add ident (commented out)ache1995-04-081-0/+1
|
* Fix official name of 113/tcp serviceache1995-04-081-2/+2
| | | | Obtained from: SunOS /etc/services
* pca: change IO_PPI to IO_TIMER1 due to syscons conflictache1995-04-083-6/+6
|
* Upgrade pcvt to 3.20 b24.joerg1995-04-0814-160/+283
|
* Some long-waiting fixes for the COFF module. They silence compilerjoerg1995-04-081-19/+43
| | | | | | warnings and are cosmetic only. Poul once requested them, but neither Sean nor Søren commented on them, so i commit it now before it's getting lost some day.
* Update pcvt to 3.20 b24joerg1995-04-0814-158/+148
|
* Add lnc0 ethernet driver.jkh1995-04-081-1/+2
|
* Fix the bug which removes all empty dirs from distribution. Sorry Jordan...phk1995-04-081-4/+3
|
* Added zp0 and eg0 to interface menu. Dropped all the "at 0xfoo" comments.phk1995-04-081-8/+10
|
* Added Dean Huxley <dean@fsa.ca>.phk1995-04-081-1/+2
|
* Driver for 3c505 boards. Uses the onboard firmware, which is not a goodphk1995-04-082-0/+961
| | | | | | way to do it. Doesn't support DMA or high speeds. Contributed by: Dean Huxley <dean@fsa.ca> via NetBSD
* Added the "eg0" interface driver for the 3Com "3c505" or "etherlink/+"phk1995-04-087-9/+18
| | | | | | | | card. This is the braindamaged card with the 80186 CPU on it. It is slow, probably not very good after all, but hey, if you have one lying around doing nothing anyway... Added the "zp0" driver to GENERIC.
* Submitted by: J.T. Conklin <jtc@wimsey.com>bde1995-04-076-10/+56
| | | | | | | Second part of update to fdlibm 5.2: speed up argument reduction for trig functions in the case pi/4 < |x| < 3pi/4. Remove unused static constants ("one").
* Submitted by: J.T. Conklin <jtc@wimsey.com>bde1995-04-072-4/+4
| | | | | First part of update to fdlibm 5.2: fix jn(n, x) and jnf(n, x). jn(-1, x) was too large by a factor of 3.
* Fixed a big typo pointed out by phk.jfieber1995-04-071-2/+2
|
* Reviewed by: ache and wollman (long ago)bde1995-04-072-52/+11
| | | | | | | | | | | | | | | | | | isctype.c: o The tolower() and toupper() functions duplicated too much code and were out of date (surprise). This didn't matter because it was difficult to call them. o Change formatting to be more like that in <ctype.h> (with extra parentheses as in the macros). Perhaps this file should be machine generated or everything should be handled like __tolower() so that no code is repeated. nomacros.c: o Instead of looking at _USE_CTYPE_INLINE_ to see what <ctype.h> has done, set _EXTERNALIZE_CTYPE_INLINES_ to tell <ctype.h> what to do, so that we don't have anything left to do. Note that code is now generated even if inlines are used by default. This allows users to switch to non-inline versions.
* Reviewed by: ache and wollman (long ago)bde1995-04-072-104/+168
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix numerous ANSI conformance bugs and other nits. ctype.h: o There were no prototypes behind the macros (conformance bug). o isascii() didn't have enough parentheses (plain bug). o tolower() and toupper were always static inline (conformance bug? You could undef them and take their address, but this gave different addresses in different modules. You couldn't undef them and declare them (correctly) again). <stdio.h>'s treatment of putc() shows one way to handle this problem, but it only works because the putc() macro is allowed to reevaluate its args. I used a hack controlled by _EXTERNALIZE_CTYPE_INLINES_ to get <ctype.h> to generate the code (the previous hack involving _ANSI_LIBRARY_ goes away). This has the advantage that the core of the functions is only written down once and the disadvantage that another layer of functions is required. The extra layer goes away if inline functions are used, leaving only the problem of understanding why there are functions named toupper(), __toupper and ___toupper() as well as a macro named toupper. o Nothing seems to define _USE_CTYPE_LIBRARY_. Eliminate it o Let the user set _USE_CTYPE_INLINE_ and _DONT_USE_CTYPE_INLINE_ for full control over inlining. o The args for the inline functions didn't have enough underscores (conformance bug). o The formatting and ordering was inconsistent (style bug). o TODO: fix conformance bugs brought by including <runetype.h>.
* Move inline args out of user namespace.ache1995-04-072-40/+40
| | | | Obtained from: 1.x
* Because -lcompat defines the same symbols as -lgnuregex and the weaknessnate1995-04-073-8/+65
| | | | | | | | | of the linker to enforce linking of modules in command line order it is not possible to link gdb shared with -lcompat. *HACK ALERT* Removed -lcompat from LDADD and bring in the necessary functions out of libcompat as a source module until the linker can be fixed.
* Back out my change to enforce command line linker order due tonate1995-04-071-11/+8
| | | | | | | | underlying bugs which are caused by mixing static/shared libraries with this change in place. The shlib code is not capable of supporting this feature in it's present state and will need significant modifications in order to do so.
* Various changes:phk1995-04-073-20/+26
| | | | | tip removed from cpio.flp (!) crunch chokes on it after the latest changes. source for secure & eBones moved into securedist.
* Added Nobuhiro Yasutomi and Akito Fujita, deleted me (Satoshi, notasami1995-04-061-2/+3
| | | | Michael :) from "Additional Contributors" list.
* Obtained from: 1.1.5 (originally by jtc)bde1995-04-061-1/+2
| | | | | | | Fix printf("%g", 0.0) - print "0", not "0.". The previous fixes in this area had one non-cosmetic (non-)change that caused this bug. Bruce
* The skeletal framework for the FreeBSD help system. Point a WWWjfieber1995-04-063-0/+164
| | | | | | browser at index.html to see how it works. Ultimately what currently lives in the tutorials section will become the User and Admin manual sections.
* Manpage not installedache1995-04-061-1/+3
|
* Add port IO_PPI for pca per Bruce suggestionache1995-04-063-6/+6
|
* Print "on isa" for devices with port==0 per Bruce suggestionache1995-04-062-4/+4
|
* Output the CPU features line during the probe on a seperate line, forrgrimes1995-04-062-6/+6
| | | | | | folks with lots of features the output use to wrap and look ugle. Reviewed by: phk
* Correct recalibrate/seek code at attach time so that we do not getrgrimes1995-04-064-19/+50
| | | | | | | all the ``fdc0: ready for output in input'' messages when probing for ft devices. Submitted by: Steve Gerakines <steve2@genesis.tiac.net>
* The negative expire times shown by netstat are confusing and ugly.jkh1995-04-061-5/+7
| | | | | | Destination Gateway Flags Refs Use Netif Expire 199.182.75.128 link#1 UC 0 0 ed0 -842660 Submitted by: John Capo <jc@irbs.com>
* It has always bugged me that ps and w did not display su with tcshjkh1995-04-061-1/+2
| | | | | | | | | | | properly. I know, tcsh is not a "Real Shell". jc p2 :0.0 Tue04PM - -u (tcsh) ^^^ 7173 p2 S+ 0:01.33 -u (tcsh) ^^^ Submitted by: John Capo <jc@irbs.com>
OpenPOWER on IntegriCloud