summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed NULL pointer dereference that occured when any options weredg1994-08-022-2/+6
| | | | specified.
* Added $Id$dg1994-08-02680-353/+1199
|
* This commit was generated by cvs2svn to compensate for changes in r1814,phk1994-08-025-0/+1049
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * This is the tcl-scripts which will convert gcc-2.6.0 to bmake form, phk1994-08-025-0/+1049
| | | | | | | | | | a patch to gcc from Bruce, and to libg++ by me. I will check in the actual compiler when Jordan has put in the rest of src/gnu.
* | fixed bug where large amounts of unidirectional UDP traffic would filldg1994-08-011-0/+10
| | | | | | | | | | | | | | | | | | the interface output queue and further udp packets would be fragmented and only partially sent - keeping the output queue full and jamming the network, but not actually getting any real work done (because you can't send just 'part' of a udp packet - if you fragment it, you must send the whole thing). The fix involves adding a check to make sure that the output queue has sufficient space for all of the fragments.
* | Fixed bug with Nagel Congestion Avoidance where a tcp connection woulddg1994-08-012-2/+38
| | | | | | | | | | stall unnecessarily - always send an ACK when a packet len of < mss is received.
* | Reduced loopback MTU from 65535 to 65532 because some things like NFSdg1994-08-011-1/+1
| | | | | | | | really like it to be rounded to a longword.
* | Removed all code related to the pagescan daemon, and changed 'act_count'dg1994-08-017-107/+15
| | | | | | | | adjustments to compensate for a world without the pagescan daemon.
* | Allow for output processing routine to handle entire character bufferdg1994-08-011-2/+4
| | | | | | | | | | | | and thus not require a sleep/wakeup. Reviewed by: Submitted by:
* | Fixed a bug that was introduced in the conversion from 1.1.5 to 2.0.dg1994-08-013-18/+42
| |
* | Reviewed by:ats1994-07-302-1/+23
| | | | | | | | | | | | Submitted by: Added a accton man page. Changed the Makefile to install the man page as accton.8.
* | Removed pager declarations. They are NOT optional, and don't need to bedg1994-07-282-8/+0
| | | | | | | | declared.
* | Documented the new CVS template. This really isn't the right place for it,wollman1994-07-241-0/+44
| | | | | | | | | | but I wanted to get this out for review without an interminable debate about where it really should go.
* | Reviewed by: phkphk1994-07-241-1/+1
| | | | | | | | Added libmd.
* | This commit was generated by cvs2svn to compensate for changes in r1802,phk1994-07-2415-0/+1646
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Reviewed by: phkphk1994-07-2415-0/+1646
| | | | | | | Imported libmd. This library contains MD2, MD4 and MD5. These three boggers pop up all over the place all of the time, so I decided we needed a library with them. In general they are used for security checks, so if you use them you want to link them static.
* Reviewed by: phkphk1994-07-241-1/+1
| | | | changed ^G to \007
* Reviewed by: phkphk1994-07-241-5/+5
| | | | Killed a bunch of control chars.
* Reviewed by: phkphk1994-07-241-1/+4
| | | | Added a clean target.
* Reviewed by: phkphk1994-07-241-1/+1
| | | | changed a ctrl-A to \001
* Reviewed by: phkphk1994-07-2421-0/+143
| | | | More binary files killed using uuencode.
* Submitted by: phkphk1994-07-233-1/+21
| | | | | Got rid of a couple of binary files by uuencoding. 49 more to go. BTW: ed(1) seems to have an exit(2) problem, 5 tests fail.
* The FreeBSD bootloader loads the kernel at the a_entry address in thecsgr1994-07-221-0/+11
| | | | | | | kernel a.out file, meaning that this is where the kernel starts. (not at KERNBASE) - KERNBASE is 0xf0000000, while the kernel loads at 0xf0100000 Reviewed by:
* Rewrite nlist to mmap the whole a.out file (at Davidg's suggestion).csgr1994-07-221-36/+47
| | | | | | This means that we don't have to do rounding calculations for page boundaries. (We do all our accesses via the mmapped area now.) Reviewed by:
* Argh! What a boneheaded bug! Finally fix the blank-line-in-packing listjkh1994-07-111-2/+2
| | | | problem! I am pond scum!
* Added code to allocate and deallocate a number of cblocks on open/close ofdg1994-07-061-0/+15
| | | | | | | | | a tty. Note that this might conflict with the collateral use of TS_WOPEN, but for the moment I can find no problems associated with this. (TS_WOPEN will likely go away in the future anyway). This should be looked at again in the future (the potential problem is that the cblock pool may either run out or accumulate too many cblocks).
* The file tmac.r was not shipped on the 4.4 tape, mark this fact.rgrimes1994-07-061-1/+2
|
* all: does not need to depend on ${MAN5}, remove special case clean:rgrimes1994-07-061-9/+5
| | | | | | | and cleandir: targets, simple use a CLEANFILES+= to handle this very simple special case. Add ${COPY} knob to install commands so that files don't disappear out of the obj tree after a make install.
* Mark the fact that we have not imported man8.{hp300,tahoe,vax}. (Therergrimes1994-07-061-1/+2
| | | | was not man8.sparc :-).)
* Mark the fact that we have not imported man4.{hp300,sparc,tahoe,vax}.rgrimes1994-07-061-1/+2
|
* The directory man3f did not come on the tape, mark it XXX MISSING.rgrimes1994-07-061-1/+2
|
* The files connectives and words did not come on the tape, mark themrgrimes1994-07-061-1/+2
| | | | XXX MISSING.
* Disable doc for now since it had a bunch of symbolic links I am notrgrimes1994-07-061-1/+3
| | | | | | | ready to go deal with just yet. Disable man for now it will be fixed shortly, just wanted all the man page converion stuff to be done togeather since that is a major functional change and really belongs in a seperate commit.
* Oh GACK! src-clean doesn't quite work that easily since cleandist rebuilds thejkh1994-06-291-1/+2
| | | | | obj links again and they need to be nuked out one more time after it's finished. Sigh.. Oh well, this code will probably never be run again anyway.
* Put some of Rod's ugly hacks back - a couple of them prevent Yet Another Rebootjkh1994-06-291-1/+12
| | | | after bin/des distribution is extracted, so I figure it's worth it.
* Clean this puppy up quite a bit. Most notably:jkh1994-06-291-80/+53
| | | | | | | 1. Use ${MAKE} everywhere again. Whoops. 2. Replace multiple invocations of gzip ... split ... with one variable. 3. Add src-clean target for making the src tree presentable before making a src tarball out of it.
* $rotdelay is now initialized to "-d 0 -n 1" and no longer changed basedrgrimes1994-06-292-7/+3
| | | | | | | | | | | upon disk type. In far more cases than not this is the optimal setting for any disk drive made after 1990. This now means all installs will have the disks newfs'ed with either: newfs -b 8192 -f 1024 -d 0 -n 1 or newfs -n 4096 -f 512 -d 0 -n 1 depending on what the user chooses for the blocking factor.
* Clean up the installation docs a bit (geeze Loise were they EVER out ofjkh1994-06-282-0/+1157
| | | | | date!!) and rename them to something more eye-catching so people will read them again (considering the previous state of affairs, I'm actually rather glad they didn't!).
* Add --unlink flag to all tar commands, but each for different reasons.jkh1994-06-283-18/+18
| | | | | | | | | | 1. Add to secr and bindists to possibly save the occasional fool who doesn't RTFM and uses the wrong command to extract this (or even someone who's legitimately using this to extract on top of a bindist somewhere *else*). 2. Do the right thing with any symlinks in the src tree. Right now, we're free of the buggers, but just in case.
* Remove Rod's hacks - they're no longer necessary with static tar/gzip andjkh1994-06-281-23/+6
| | | | tar --unlink.
* Add Chris Demetriou's --unlink changes.jkh1994-06-283-0/+40
| | | | | | I know that I said earlier that this should be unconditional behaviour, but I thought about it a little more and concluded that the principle of least surprise dictates that I make it an option.
* Commit Scott's changes to the bad144 stuff - bad144 takes a list of badjkh1994-06-282-3/+3
| | | | | blocks as *multiple* arguments, not one argument (as was incorrectly being passed).
* Fix a simple makefile brain-o; didn't effect 1.1.5A since we don't compilejkh1994-06-281-2/+2
| | | | with CRYPT initially set.
* Fixed spelling errors.wollman1994-06-241-4/+4
|
* 1. Remove a rather strangely gratuitous bit of profanityjkh1994-06-241-3/+11
| | | | 2. Use elvis instead of vi for the editor on the cpio floppy; dmesg is back.
* Add proper links so that - and -sh are catered for.jkh1994-06-242-2/+13
|
* Just talked with James - there's another, better way to go about this.jkh1994-06-241-2/+0
| | | | | | Back out my earlier change. Note that this is just for the 1.1.5R floppies; the 1.1.5A ones still have the work-around method (which works fine and doesn't hurt anything, it's just kludge!).
* This is a kludge. Unless I make a link from sh to - (which would leave a filejkh1994-06-241-0/+2
| | | | | | called `-' lying around on the users system forever) login shells will fail. Just special-case the handling of `-' for now until/unless I find a more palatable solution.
* My last few changes to the release code plus a small termcap filejkh1994-06-242-3/+165
| | | | for the cpio floppy.
* Whoops - missed a couple of intermediate files. Nuke 'em.jkh1994-06-221-2/+2
|
OpenPOWER on IntegriCloud