summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ``mv'' -> ``mv -f''wosch1996-05-0736-124/+158
| | | | | ``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root
* Simplify probe. Removed the DELAY() as it's not needed.nate1996-05-071-3/+1
|
* Removed one of the un-documented CTRL pokes, and replace it with a onenate1996-05-071-0/+4
| | | | | | | second delay. My ps/2 mouse is now found reliably on my ThinkPad (it didn't before) and still works on my NEC Versa. Submitted by: Richard Wiwatowski <rjwiwat@adelaide.on.net>
* Make sure you include <sys/devconf.h> if you have devconf code. :(nate1996-05-071-1/+2
|
* Added code to avoid keyboard 'hangs' during the probe.nate1996-05-071-2/+7
| | | | Submitted by: Richard Wiwatowski <rjwiwat@adelaide.on.net>
* Added Richard Wiwatowski <rjwiwat@adelaide.on.net> for his work on thenate1996-05-071-1/+2
| | | | psm mouse driver.
* Added devconf() support.nate1996-05-071-14/+41
| | | | Obtained from: Richard Wiwatowski <rjwiwat@adelaide.on.net>
* Re-wrote psm_poll_status() to use the ioport supplied in the kernelnate1996-05-071-17/+16
| | | | | | | | config file instead of hard-coding it in the driver. No functional differences. This is based on the code Richard Wiwatowski <rjwiwat@adelaide.on.net> sent to the mailing list.
* phkmalloc doesn't like the call to xdr_free() in ypxfr_get_master().wpaul1996-05-071-3/+3
| | | | Nuke it.
* In use_yp(), call _yp_check() to make ultra, super-duper sure that NISwpaul1996-05-071-2/+3
| | | | | | | is available before trying to go hunting for a domain name. This fixes the following problem: you have +::::::::: in /etc/master.passwd but NIS isn't running (no ypbind, no domain name set) -- passwd and chpass will still try to change an NIS password instead of the local one.
* Grrrr... yet another variation on Murphy's Law: the best way to findwpaul1996-05-071-1/+0
| | | | | | | | | | | bugs in your code is to put it in the -stable branch. (Corollary: the day you discover the bug is the day the Internet decides to route your telnet session to the repository box via Zimbabwe.) Remove one bogus free(result) (from _havemaster()) that slipped by me. Flagged by: phkmalloc Pointed out to me by: Stefan Esser
* Last typo fixed (network came up for a few minutes).nate1996-05-071-0/+1
|
* Augh, more typos.nate1996-05-071-5/+5
| | | | (I hate *Sprint*, since the network is down it's hard to test things well.)
* Whoops, brain-o's with the previous commit. Fix up quite a few typos.nate1996-05-071-17/+14
|
* Localize timeache1996-05-071-0/+10
|
* Localize timeache1996-05-072-0/+20
|
* - KNF'ifynate1996-05-071-87/+57
| | | | | | | - Prepend PSM_ to some defines to avoid any possible name-space problems - Use some already defined constants instead of magic #'s where appropriate. [ No functional changes (yet) ]
* Replace non-POSIX speed setting by POSIX oneache1996-05-071-2/+3
|
* Dohw! Turn on yp_mkdb in the Makefile.wpaul1996-05-071-3/+3
|
* Add $Id$gpalmer1996-05-071-0/+1
|
* Several locations in sys/netinet/ip_fw.c are lacking or incorrectlyphk1996-05-061-14/+18
| | | | | | | use spl() functions. Reviewed by: phk Submitted by: Alex Nash <alex@zen.nash.org>
* Add three new route flags to help determine what sort of addresswollman1996-05-063-11/+48
| | | | | | | | | | | | | | | | | | | | | | the destination represents. For IP: - Iff it is a host route, RTF_LOCAL and RTF_BROADCAST indicate local (belongs to this host) and broadcast addresses, respectively. - For all routes, RTF_MULTICAST is set if the destination is multicast. The RTF_BROADCAST flag is used by ip_output() to eliminate a call to in_broadcast() in a common case; this gives about 1% in our packet-generation experiments. All three flags might be used (although they aren't now) to determine whether a packet can be forwarded; a given host route can represent a forwardable address if: (rt->rt_flags & (RTF_HOST | RTF_LOCAL | RTF_BROADCAST | RTF_MULTICAST)) == RTF_HOST Obviously, one still has to do all the work if a host route is not present, but this code allows one to cache the results of such a lookup if rtalloc1() is called without masking RTF_PRCLONING.
* An old typo MCLBYTES/CLBYTES became more obvious bogus now.phk1996-05-061-3/+3
| | | | Submitted by: wollman
* Update qcamdriver to 1.1-release distribution.pst1996-05-063-42/+46
| | | | | - move the cdevsw structure back up front (sigh) - use __linux__ instead of LINUX
* We DON'T ship bash by default, why is it the default shell?gclarkii1996-05-061-3/+3
| | | | | | We also don't ship tcsh or ksh by default. Correct these two things to make sh the default and increase csh and sh to be higher priority.
* Pull a bunch of fixes from the 4.4BSD-Lite2 branch. It's reallyjoerg1996-05-0512-206/+421
| | | | | | | | | | | | surprising how many trivial errors there have been... :-) Some more cleanup is needed, but i'd like to separate the Lite2 changes from other work, that's why this goes into a different commit. People with serial printers should see whether i have broken the stty- style printcap options (i hope not). Inspired by: Sergey Shkonda <serg@bcs1.bcs.zaporizhzhe.ua>
* Bring in some changes to make the FTP installation warn you if it can'tjkh1996-05-054-32/+30
| | | | find the requested release on a given site.
* Fix my botched 4.4Lite2 import, and revert these files to their HEADjoerg1996-05-052-17/+16
| | | | versions.
* Finally commit the changes that make getty(8) no longer depend on thejoerg1996-05-0510-356/+804
| | | | | | | | | | | | COMPAT_43 cruft. This is supposedly the last core utility that has been using it! (So now, one should be able to remove this option from the config files. Be aware that the last officially released xterm however still requires it.) The getty has been running now for several weeks on my modem line, so i feel safe about it. Obtained from: mostly from the NetBSD vendor-branch
* Avoid potential trademark conflictpeter1996-05-051-2/+2
|
* Change the logic of the interrupt/poll loop. It no longer loops untilpeter1996-05-052-8/+30
| | | | | | | | | | it empties all of the 256 byte incoming fifo, as it can spend more time processing one port than intended, especially if data is streaming in at 115.2K. The port fifo will be emptied and dumped into the tty system and left until next time. I've been running this for quite some time on one of my systems here. Also, if the tty layer is blocked or full it lets the hardware assert the flow control rather than loosing the data.
* Change the compiled-in polling parameters to a sysctl setting.peter1996-05-052-14/+22
|
* This commit was generated by cvs2svn to compensate for changes in r15637,joerg1996-05-059-46/+728
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor-branch import of the 4.4BSD-Lite2 code for lpr. There arejoerg1996-05-0516-137/+964
| | | | | | | | | | | | | | | | several bugfixes in it that are worth considering. Don't be alarmed about the import conflicts... Obtained from: 4.4BSD-Lite2
* | uninitialized auto variable shmseg is used in ...joerg1996-05-051-2/+2
| | | | | | | | | | | | Closes PR #kern/1174 Submitted by: enami@ba2.so-net.or.jp
* | Sync libc_r with libc changes..peter1996-05-056-15/+15
| |
* | Add support to enable libc to be compiled in ELF format. (#ifdef __ELF__)peter1996-05-0533-281/+340
| | | | | | | | | | | | | | | | | | | | | | In a nutshell, this macroizes the local/global symbol scoping rules that are different in a.out and ELF. It also makes the i386 assembler stubs conform to i386 PIC calling conventions - the a.out ld.so didn't object, but the ELF one needs it as it implements PIC jumps via PLT's as well as calls. The a.out rtld only worked because it was accidently snooping the grandparent calling function's return address off the stack.. This also affects the libc_r code a little, because of cpp macro nesting.
* | rm the files first before uudecoding, because the modes in the beginpeter1996-05-051-1/+3
| | | | | | | | line doesnt permit writes by the owner.. (oops!)
* | Oops, add stallion utils to i386 part of Makefilepeter1996-05-051-5/+5
| |
* | Add DDB_UNATTENDED to opt_ddb.h where it belongs.pst1996-05-051-1/+2
| |
* | Add Greg Ungerer <gerg@stallion.oz.au> for his Stallion serial card driver.peter1996-05-041-1/+2
| |
* | Update the comments at the top of these things to fit reality. Sup hasn'tjkh1996-05-045-19/+30
| | | | | | | | | | been a package which you need to add on for awhile now. :-) Also mention hooks in /etc/make.conf for `make update' fans.
* | Correct an editing bogon I introduced earlier.jkh1996-05-041-3/+4
| |
* | Add /usr/libdata/stallion for holding the download firmware images.peter1996-05-041-1/+3
| | | | | | | | | | | | These binary files most definately do not come under /usr/share's "architecture independent text files" rule... even though these same images would be used on other processors with pci architectures.
* | Add $Id$peter1996-05-041-0/+2
| |
* | Some trivial updates to the information in here, A good deal of thispeter1996-05-041-2/+28
| | | | | | | | is out of date, as it deals with patching the driver into the kernel.
* | Add $Id$peter1996-05-041-7/+11
| | | | | | | | | | | | | | Compile for FreeBSD-2.2 Fix some compile warnings about function declarations -current's VM include files have changed lately, this needed to be updated. Use correct major number.
* | Add $Id$peter1996-05-041-6/+7
| | | | | | | | | | | | Compile for FreeBSD-2.2 (it compiles for 2.0.5, 2.1 and 2.2) Use -current include file locations Use -current pciintr calling conventions
* | Add $Id$peter1996-05-042-0/+4
| |
* | Add stl and stli drivers for the Stallion cards.peter1996-05-042-2/+6
| |
OpenPOWER on IntegriCloud