summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* symorder appears to have been designed to run on executable filespeter1995-10-281-8/+12
| | | | | | | | | | | | | | | | only, as it payes no attention to the relocation table (which references the symbols). As a result, running "symorder -c" to clean up the visibility of a LKM ".o" file (as is done in the new bsd.kmod.mk) totally screws up the relocation table, making the LKM file unloadable. (ld: bogus relocation record) This is a pretty crude fix - I've changed symorder so that when running in "cleanup" mode, it disables the reordering which was screwing up the relocation table. I'm sure there is a better fix, but I didn't have the energy. Feel free to fix this hack, probably by renumbering the symbol indexes in the relocation table.
* Fix -h option:ache1995-10-281-2/+2
| | | | sense symlink even it is unresolved
* At the risk of starting a commit-war, attempt to fix once and for all, thepeter1995-10-281-2/+4
| | | | | | | | | | | "make distrib-dirs" target. Neither of Andrey's two attempts have worked for me with the [ -h ..] test both with && and ||. I've changed it to a full if [ -h ...]; then \ rm ... ; \ fi ; \ construct. It's much clearer what's meant to happen, and it works! :-)
* Call vfs_unbusy() before error returns from sysctl_vnode(). This fixesbde1995-10-282-6/+14
| | | | | | | | PR 795. Set the size before one error return from sysctl_vnode() the same as before the other. The caller might want to know about the amount successfully read although the current caller doesn't.
* Close docs/43 manpage for keysu is missingpst1995-10-281-1/+1
|
* Temp. disable following modules:ache1995-10-282-8/+16
| | | | | | atapi coff ibcs2 ipfw linux syscons wcd (until they will be fixed) It allows to build/install other modules from top
* Back out bogus "fix" which was commited over right fix without any check.ache1995-10-281-1/+1
|
* Submitted by: Mike Mitchelljulian1995-10-271-0/+348
| | | | | | | oops. forgot this file then went to bed.. sorry
* Some last few tweaks - now the sample home page comes up properly byjkh1995-10-271-27/+17
| | | | default.
* Change the script-driven custom distribution selection mechanism. This isjkh1995-10-271-1/+2
| | | | a bit simpler.
* misc typosadam1995-10-273-7/+7
|
* - #if defined(TF_NEEDSYN) && defined(TF_NEEDSYN)adam1995-10-271-2/+2
| | | | + #if defined(TF_NEEDSYN) && defined(TF_NEEDFIN)
* Correct ip protocol in error message, when binding the tcp port.adam1995-10-271-1/+1
|
* Submitted by: john hayjulian1995-10-277-30/+39
| | | | | | | patches to merge the two IPX packages to work with each other and to not break make-world :) IPXrouted should be working now, (or at least compiling) :)
* Submitted by: john hayjulian1995-10-271-2/+2
| | | | add a link in /usr/include to /sys/netipx
* Retrofit Apache server setup to use "Powered by FreeBSD" logo at the bottomjkh1995-10-271-3/+6
| | | | of the sample page it sets up.
* Add the power logo to the root floppy.jkh1995-10-271-0/+121
|
* Be more aggressive about writing out configuration files.jkh1995-10-275-27/+7
|
* Last minute nits.jkh1995-10-272-4/+4
|
* Clean up some last bogons with the WEB server setup (now that I'm farjkh1995-10-273-11/+13
| | | | enough along to worry about such things!).
* Fix the bug I introduced with /etc/sysconfig not being updatedjkh1995-10-273-16/+42
| | | | | | properly. Make some cosmetic doc changes here and there in response to user feedback.
* Recognize the aic7880 and 3940 Ultra.gibbs1995-10-261-5/+25
| | | | | | | | If RAMENB is set in devconfig, walk the external SCBs. Some Intel Xpress motherboards set this bit. For external SCBs for the 3940. It doesn't set RAMPS or RAMENB, but does have the ram.
* Properly deal with the Ultra series of adapters. We should now understandgibbs1995-10-262-85/+108
| | | | | | | | | | the new seeprom format and negotiate up to 20MHz sync if set in SCSI-Select. Reduce the complexity of the timeout code by running it at splhigh(). Fix a bug that caused rescheduled timeouts at 0 clock ticks in the future causing an infinite loop. Obtained from: Timeout bug noticed by David Greenman and wcarchive.
* Set SCSIGO generically before we determine the phase instead of doing itgibbs1995-10-261-12/+11
| | | | | | | | | | | | in each phase routine. Saves a few instructions. Be more careful in how we deal with SXFRCTL0. Or in the control bits of interest instead of using mvi. The kernel driver will set the ULTRAEN bit of SXFRCTL0 if we are using Ultra (20MHz) mode and we don't want to clobber it. In sdtr_to_rate divide by two if we are in ultra mode to get the correct setting since its a 20MHz instead of 10MHz scale.
* Add setlocale LC_TIMEache1995-10-261-0/+3
|
* Add setlocale LC_TIMEache1995-10-261-1/+4
|
* Add setlocale LC_TIMEache1995-10-261-0/+7
|
* Remove unneded ctype.hache1995-10-261-1/+0
|
* Add setlocale LC_CTYPEache1995-10-261-0/+3
|
* Add setlocale LC_CTYPEache1995-10-261-0/+3
|
* fix a reference in "SEE ALSO" (modunload(8) mistakenly referencestorstenb1995-10-261-2/+2
| | | | itself instead of modload(8))
* Reviewed by: julian and Mike Mitcheljulian1995-10-2621-0/+4265
| | | | | | | | | | Submitted by: john Hay (John.Hay@csir.co.za) John's IPXrouted.. this has not yet been seen to run correctly with Mike's IPX/SPX code (he has his own) bringing them both in is the first step in merging the two packages for 2.2
* Reviewed by: julian and jhay@mikom.csir.co.zajulian1995-10-2663-51/+7477
| | | | | | | | | | | | | | | | | | | | | Submitted by: Mike Mitchell, supervisor@alb.asctmd.com This is a bulk mport of Mike's IPX/SPX protocol stacks and all the related gunf that goes with it.. it is not guaranteed to work 100% correctly at this time but as we had several people trying to work on it I figured it would be better to get it checked in so they could all get teh same thing to work on.. Mikes been using it for a year or so but on 2.0 more changes and stuff will be merged in from other developers now that this is in. Mike Mitchell, Network Engineer AMTECH Systems Corporation, Technology and Manufacturing 8600 Jefferson Street, Albuquerque, New Mexico 87113 (505) 856-8000 supervisor@alb.asctmd.com
* Add preliminary support for netgroup.byuser and netgroup.byhosts maps.wpaul1995-10-261-1/+24
| | | | | (I have to make another pass through here soon; awk doesn't handle lines broken up with '\', which can sometimes appear in netgroup maps.)
* Add revnetgroup.wpaul1995-10-261-1/+1
|
* This commit was generated by cvs2svn to compensate for changes in r11814,wpaul1995-10-266-0/+951
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import the first cut of my (finally finished) revnetgroup program. Thiswpaul1995-10-266-0/+951
| | | | | | | | | | | | | program parses the /etc/netgroup file into netgroup.byuser and netgroup.byhost format for NIS. I used hash tables to store the initial netgroup data in memory and to construct the 'reverse' netgroup output. It seems just as fast as the SunOS revnetgroup, which is surprising considering this is my first attempt at using hash tables in a real application. :) Note that I canibalized a large chunk of getnetgrent.c to save myself from having to write my own netgroup parsing functions.
* Add setlocale LC_ALLache1995-10-261-0/+6
|
* Change locale to LC_ALL, there is no bitmaskache1995-10-262-2/+2
|
* Add setlocale LC_ALLache1995-10-261-0/+7
|
* Change local to LC_ALL, there is no bitmaskache1995-10-261-2/+3
|
* Change locale to LC_ALL, there no bitmaskache1995-10-261-2/+3
|
* Add test for symlink presence before remove itache1995-10-261-2/+2
|
* Changed "tools" to "build-tools".phk1995-10-261-3/+3
| | | | Suggested by: Peter Wemm
* Sync up for this snapshot.jkh1995-10-263-22/+25
|
* Import my laptop's installation configuration file, just as a working example.jkh1995-10-261-0/+53
|
* o Fix installUpgrade to start the holographic shell as well.jkh1995-10-268-16/+31
| | | | | | | o Lots of documentation fixes. o Rename FTP active to "FTP" and explain passive mode better. o Make tcpip screen a bit more friendly. o Literally dozens of nits.
* From Matt Thomas:dg1995-10-262-4/+6
| | | | | | | | "I screwed the initialization of the burstsize. Right now it will default to 0 (which can cause corruption problems on high latency PCI buses). It should be set to 8 longwords to avoid problems with certain PCI chipsets." Submitted by: Matt Thomas <matt@lkg.dec.com>
* Convert manpage to -mandoc macros.nate1995-10-261-130/+307
| | | | | | Submitted by: Gary Palmer <gary@palmer.demon.co.uk> Minor cleanup by me in the English.
* Convert to proper English in the same manner as the sliplogin manpage.nate1995-10-261-12/+11
|
OpenPOWER on IntegriCloud