summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Split up the code so that a single directory can be searched, tojdp1996-01-133-163/+234
| | | | | | | support some changes in the dynamic linker. (This code is shared by the dynamic linker.) Reviewed by: nate@freebsd.org
* This file doesn't belong in the source tree. If anywhere, it shouldwollman1996-01-121-65/+0
| | | | be in CVSROOT, or in some directory local to freefall.
* Kill another old TODO file. Can we agree that this sort of documentationwollman1996-01-121-166/+0
| | | | doesn't belong in the root of the source tree?
* Fixed handling of Feb 29 in resettodr().bde1996-01-125-25/+55
|
* Rename the `retens' command into `retension', to follow existing de-factojoerg1996-01-121-1/+1
| | | | standards.
* Make a little more effort to avoid touching certain generated files ifpeter1996-01-126-11/+84
| | | | they were not changed. This makes 'make depend' more useful.
* oops. I forgot to add the "[-U username]" option to the usage string.peter1996-01-121-2/+2
|
* Update pointer to yppush.wpaul1996-01-121-2/+2
| | | | (And now, on to rpc.yppasswdd...)
* This commit was generated by cvs2svn to compensate for changes in r13394,wpaul1996-01-124-0/+925
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import the new yppush.wpaul1996-01-124-0/+925
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This program does what the old one did, PLUS: - Supports parallel jobs (like the SunOS yppush) - Does everything in one proces instead of fork()ing off children processes as callback listeners (this is done using async socket I/O). - Can be used to transmit maps to user-specified hosts. - Has a much more verbose verbose option. - Reuses existing code from ypserv and ypxfr. - Uses some rpcgen-erated code as well. - Isn't fattening. :) Note that this is going in /usr/sbin rather than /usr/bin like the old one. yppush is an administrative command it it's anything.
* | Toss the old yppush into the attic.wpaul1996-01-123-584/+0
| |
* | Remove yppush; it's about to be replaced.wpaul1996-01-121-2/+2
| |
* | A new cleaned up Makefile.phk1996-01-111-66/+66
| |
* | Another '-' needed for make release.phk1996-01-112-4/+4
| |
* | Final cleanup for now. -Wall is now silent. A couple of bogons found.phk1996-01-1132-53/+294
| |
* | Make the new realinstall target a little less draconian so that make releasephk1996-01-112-6/+6
| | | | | | | | doesn't fall over.
* | Take a different approach to the SPIORDY race condition. Simply cleargibbs1996-01-112-4/+20
| | | | | | | | | | | | | | | | SPIORDY just before we ack on the bus so that there is no chance to see SPIORDY for the same byte twice. Make some small modifications so that the Linux aic7xxx driver can use our sequencer and register definition files verbatum.
* | My freshly aborted 'make world' has pointed out that the wait.h includepeter1996-01-111-2/+2
| | | | | | | | file is <sys/wait.h>, not <wait.h> as was recently committed.
* | Whoops. cvsinit was creating a modules file in CVSROOT with anpeter1996-01-111-2/+3
| | | | | | | | | | | | explicit (and wrong) /usr/local/bin/mkmodules path. We install in /usr/bin. Noticed by: Faried Nawaz <fn@pain.csrv.uidaho.edu>
* | Install ld.so in a way that is safe even on a running system.jdp1996-01-112-4/+26
| |
* | Localize it.ache1996-01-101-2/+5
| |
* | A random bunch of cleanup changes.phk1996-01-1014-36/+47
| |
* | Add empty /var/log/slip.log creation to distribution: target whereache1996-01-101-1/+3
| | | | | | | | | | other empty logs created. Pointed by Bruce.
* | Add back initialization of "ncrp[unit]" since ncrcontrol relies on it.se1996-01-101-2/+3
| |
* | - Fix error reporting when checking order number via NIS: we return zerowpaul1996-01-101-14/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on a failure, but if we're checking a corrupt map we could also get back a zero from ypserv without really encountering any actual error. Flag this condition and generate an meaningful error message. - Fix transmission of ypxfr_clear to ypserv: error checking was wrong and we sending YPXFR_YPERR as an error status instead of YPXFR_CLEAR. - To help avoid a race condition (or at least reduce the likelyhood of it occuring), use rename() to move a newly transfered map into place instead of unlink()ing the old one first and then renaming. Da man page sez that rename should do the unlink() for us. This prevents ypserv from returning 'no such map in domain' when asked to query a map which ypxfr has just unlink()ed but not yet replaced.
* | More changes brought about by testing of yppush (which is almost finished):wpaul1996-01-102-18/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In yp_server.c: - Modify ypproc_xfr_2_svc() so that it sends both a return status and a yppush callback (if necessary: normally ypxfr is supposed to send the callback once it's done transfering a map, but if we can't get ypxfr off the ground for some reason, we have to send it here instead) and do it in the right order: have to send the reply to the ypproc_xfr request first, then send callback. This requires us to cheat a bit: you're supposed to just return() and let the RPC dispatcher send the reply for you, but we wouldn't be able to send the callback message if we did that, so we have to call svc_sendreply() ourselves, then send the callback, and then return NULL so that the RPC dispatcher won't call svc_sendreply() itself. - Also modify ypproc_xfr_2_svc() so that it doesn't invoke ypxfr with the -f flag: this overrides the order number checks, which prevents us from ever refusing maps that aren't newer than then ones we already have. In yp_access.c: - Fix a typo in the TCP_WRAPPER support code (which is #ifdef'ed out by default): a close paren somehow vanished into the ether.
* | Fix small bug with negative item_no.jkh1996-01-101-1/+1
| |
* | Correct the strspn() man page so that it no longer referencesmpp1996-01-101-1/+1
| | | | | | | | | | | | itself as strcspn(). Obtained from: NetBSD-bugs mailing list (PR# 1905)
* | Correct the path used to invoke "pr" if the "-l" option to diff ismpp1996-01-101-3/+3
| | | | | | | | | | | | | | specified. Also invoke "pr" with "-F" instead of the invalid "-f" option. Obtained from: NetBSD-bugs mailing list (PR# 1896)
* | Remember to make the kernels dir.phk1996-01-101-1/+2
| |
* | Don't make the fs-image in /dev :-)phk1996-01-102-2/+2
| |
* | Add the 3C595 as a supported device for vx0. Delete the rest of the lineats1996-01-093-9/+9
| | | | | | | | for the vx0 device, it is not needed as for all other pci devices.
* | Add the pci-numbers for the 3c595 10/100Mb card to the driver.ats1996-01-091-0/+2
| |
* | fixed some printf format mismatches and some lines exceeding 80 col'sgraichen1996-01-091-16/+20
| | | | | | | | (thanks to bruce)
* | Add back nncr and ncrp for now. ncrcontrol relies on them.se1996-01-091-4/+7
| | | | | | | | | | | | | | | | | | (To be replaced by sysctl accesses some time ...) Remove a backward jump from the NCR script, which allowed a SCSI target to receive any number of NOP messages it desired. If a target indeed does such a silly thing, make it fail at the next instruction, instead of causing a timeout a few seconds later.
* | Don't bother setting the DSCommand register. Adaptec's own BIOS doesn't.gibbs1996-01-091-4/+1
| |
* | Change the inb and outb routines slightly. It seems that waiting forgibbs1996-01-091-13/+5
| | | | | | | | SPIORDY after polling REQINIT is a bad idea.
* | Obtained from: David Mazieres (OpenBSD)graichen1996-01-091-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | added "#define PRECISE_SYMLINKS" to the amd config header - this solves a problem with the amd "-type:=direct" mounts and /bin/sh giving a "readlink failed" if you cd'ed to a "-type:=direct" mounted directory i got this from david mazieres as a result of giving him our (mostly doug rabsons) fixes for the amd "-type:=direct" mounts and telling them (also some NetBSD people were interested) about my only problem running these fixes (which is now solved too :-)
* | Obtained from: NetBSD (PR#1906)graichen1996-01-091-4/+4
| | | | | | | | removed date formatting glitch in newsyslog
* | Fix logic bug (!= should be ==) in recent P2P/multicast kludge.dg1996-01-091-2/+2
| | | | | | | | | | Reviewed by: Bill Fenner <fenner@parc.xerox.com> Submitted by: Dave Marquardt <marquard@austin.ibm.com>
* | Second attempt to correct the leap year handling.tg1996-01-091-1/+2
| |
* | Somebody stumbled over the :? here.. :-)jkh1996-01-091-1/+1
| |
* | Fix the 'extraneous newline' problem a little more sensibly: just takingwpaul1996-01-091-1/+4
| | | | | | | | | | | | | | it out fixes my problem but hoses the GUS MAX probe messages. Check what device we have and print things appropriately for each. Pointed out by: Jim Lowe <james@miller.cs.uwm.edu>
* | clean up si_dprintf a bit so that it uses vararg argument parsing that doespeter1996-01-092-12/+34
| | | | | | | | not cause warnings, and uses printf() to do a vprintf()-like output.
* | Moved doFS into shell-script so we can be more smart about it.phk1996-01-083-185/+331
| | | | | | | | | | make two boot floppies, one without help files for 4MB systems. Mine's loading one now. :-) -O2 may be needed.
* | Fix a bug where having a process listening to both a INADDR_ANY and aguido1996-01-081-2/+8
| | | | | | | | | | | | | | | | | | local address, that was assigned with ifconfig alias and netmask 0xffffffff, would receive duplictae udp packets. This behaviour can easily be seen by having named run, and using the alias address as the name server. This solution is not the pretiest one, but after talk with Garreth, it is seen as the most easy one.
* | Replace ugly year/month calculations in resettodr to more cleanache1996-01-085-70/+60
| | | | | | | | | | | | variants, idea taken from NetBSD clock.c. At least year calculation was wrong, pointed by Bruce. Use different strategy to store year for BIOS without RTC_CENTURY
* | MTRETENS for the wt driver. This patch got lost withjoerg1996-01-082-39/+14
| | | | | | | | my previous commit.
* | Add `retens', the user frontend for MTRETENS.joerg1996-01-082-0/+4
| |
* | Implement the MTRETENS command.joerg1996-01-082-6/+8
| |
OpenPOWER on IntegriCloud