aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add manpage links ypchpass.1, ypchfn.1, ypchsh.1Wolfram Schneider1997-09-131-0/+3
| | | | Notes: svn path=/head/; revision=29322
* Some tweaks to get this to cope with ELF where the address space startsPeter Wemm1997-09-131-8/+18
| | | | | | | | | | | | | higher up in memory (0x0800000 upwards) rather than near zero (0x1000 for our qmagic a.out format). The method that mount_mfs uses to allocate the memory within data size rlimits for the ram disk is entirely too much of a kludge for my liking. I mean, if it's run as root, surely it makes sense to just raise the resource limits to infinity or something, and if it's a non-root user mount (do these work? with mfs?) it could just fail if it's outside limits. Notes: svn path=/head/; revision=29321
* Don't redirect "mount -t -o nfs" to nullBrian Somers1997-09-131-2/+2
| | | | Notes: svn path=/head/; revision=29319
* add an initialization file for the default editor "ee"Jonathan M. Bresler1997-09-121-0/+1
| | | | | | | | | | | configure ee to use emacs key-bindings do not expand tabs into spaces dont truncate lines at the right margin Submitted by: Aled Morris <aledm@routers.co.uk> Reviewed by: jkh Notes: svn path=/head/; revision=29318
* If a host in an export line in /etc/exports (or within a netgroup onJonathan Lemon1997-09-122-14/+36
| | | | | | | | | | | an export line) is unresolvable, make a note of it via syslog and skip that individual host instead of skipping the entire line. PR: 1981, 815 Perused by: joerg Notes: svn path=/head/; revision=29317
* Do not consider VM_PROT_OVERRIDE_WRITE to be part of the protectionJonathan Lemon1997-09-121-2/+3
| | | | | | | | | | | entry when handling a fault. This is set by procfs whenever it wants to write to a page, as a means of overriding `r-x COW' entries, but causes failures in the `rwx' case. Submitted by: bde Notes: svn path=/head/; revision=29316
* This command doesn't need to be setuid root, it's only askingJordan K. Hubbard1997-09-121-3/+1
| | | | | | | | | for potential trouble. Reviewed by: security officers. Noted by: OpenBSD Notes: svn path=/head/; revision=29315
* Fix typo in comment.Daniel O'Callaghan1997-09-121-1/+1
| | | | Notes: svn path=/head/; revision=29314
* Support Intel EtherExpress Pro 10+Mike Smith1997-09-122-8/+20
| | | | | | | | PR: kern/4335 Reviewed by: Stephen Roznowski (sjr@home.net) Notes: svn path=/head/; revision=29313
* Revert back to 1.28.Satoshi Asami1997-09-121-3/+1
| | | | Notes: svn path=/head/; revision=29312
* Document newly added -d option and fix usage stringAndrey A. Chernov1997-09-122-4/+7
| | | | Notes: svn path=/head/; revision=29311
* The "-d" option dumps out the entire process list on a per controllingAndrey A. Chernov1997-09-121-11/+40
| | | | | | | | tty basis, instead of just the top level process. Submitted by: terry Notes: svn path=/head/; revision=29310
* Fix offset bug in partition display that made partitions of typeJordan K. Hubbard1997-09-113-27/+126
| | | | | | | | | `linux_swap' hose the output. Also add a (T)ype command for changing the type of a partition. Notes: svn path=/head/; revision=29307
* malloc() the rx and tx descriptors seperately rather than as part of thePeter Wemm1997-09-114-4/+34
| | | | | | | | | | | | | | | | | | | | | large (over 4KB) softc struct. The descriptor array is accessed by busmaster dma and must be physically contiguous in memory. malloc() of a block greater than a page is only virtually contiguous, and not necessarily physically contigious. contigmalloc() could do this, but that is a bit on the overkill side. I'm not sure of the origins of the problem report and diagnosis, I learned of the problem via mail forwarded from Jim Shankland <jas@flyingfox.com>. Jim said that Matt Thomas's workaround was to reduce the number of transmit descriptors from 128 to 32, but I was concerned that it might cost performance. Anyway, this change is my fault, not Jim's. :-) Reviewed by: davidg Notes: svn path=/head/; revision=29306
* Fix typo in my prev. commitAndrey A. Chernov1997-09-111-2/+2
| | | | Notes: svn path=/head/; revision=29305
* D'oh! It works better if you remember to cvs add the file first! ;)Jordan K. Hubbard1997-09-111-0/+692
| | | | Notes: svn path=/head/; revision=29304
* OK, it's time to introduce the rc.conf(5) man page and kick theJordan K. Hubbard1997-09-112-374/+3
| | | | | | | | | now-obsolete sysconfig(5) man page out. If you add new rc.conf variables, folks, please try to remember to keep the man page up to date. Thanks! PR: 4398 Notes: svn path=/head/; revision=29301
* Reviewed by: msmith, alexDaniel O'Callaghan1997-09-119-81/+288
| | | | | | | Cosmetic changes to the loading of firewall rules and lkm. Notes: svn path=/head/; revision=29300
* Disable tetrisPeter Wemm1997-09-111-2/+2
| | | | Notes: svn path=/head/; revision=29297
* Get rid of missing-prototype-warningBrian Somers1997-09-101-1/+2
| | | | Notes: svn path=/head/; revision=29296
* PRED1 => TY_PRED1 (oops)Brian Somers1997-09-101-2/+2
| | | | Notes: svn path=/head/; revision=29295
* o Initialize the PRED1 input queue when weBrian Somers1997-09-103-7/+10
| | | | | | | | | | | | | | | receive the ResetAck, NOT when we send the ResetReq (as per the rfc). o SILENTLY ignore CCPs that arrive *before* the network phase (as per the rfc). o Check that we've actually negotiated PRED1 before sending PRED1 output. This bug has been around for a *VERY* long time ! We shouldn't need to explicitly disable PRED1 now :-) Notes: svn path=/head/; revision=29294
* Don't repeat checks done at general level.Poul-Henning Kamp1997-09-102-16/+6
| | | | Notes: svn path=/head/; revision=29293
* Treat "reservation conflict" status similar to "busy".Stefan Eßer1997-09-101-4/+6
| | | | Notes: svn path=/head/; revision=29292
* Remove a couple of stubborn NetBSD #if's.Poul-Henning Kamp1997-09-104-30/+4
| | | | Notes: svn path=/head/; revision=29291
* 3 lines of code and updates to a number of comments.Poul-Henning Kamp1997-09-104-18/+51
| | | | | | | | Reviewed by: phk Submitted by: Terry Lambert <tlambert@primenet.com> Notes: svn path=/head/; revision=29290
* The patch is needed in order to not throw away unmodifiedPoul-Henning Kamp1997-09-101-4/+7
| | | | | | | | | | | local filesystem metadata at the first brelse call when the block device vnode has v_tag set to VT_NFS. Reviewed by: phk Submitted by: Tor Egge <tegge@idi.ntnu.no> Notes: svn path=/head/; revision=29289
* unifdef -U__NetBSD__ -D__FreeBSD__Poul-Henning Kamp1997-09-1018-154/+18
| | | | Notes: svn path=/head/; revision=29288
* Update the comment and remove checks now done centrally.Poul-Henning Kamp1997-09-101-16/+16
| | | | Notes: svn path=/head/; revision=29287
* Fix a type in a comment and remove some checks now done centrally.Poul-Henning Kamp1997-09-102-20/+4
| | | | Notes: svn path=/head/; revision=29286
* This stuff is now done centrally.Poul-Henning Kamp1997-09-102-30/+2
| | | | Notes: svn path=/head/; revision=29285
* Remove some stuff from lookup which is now handled centrally.Poul-Henning Kamp1997-09-102-22/+0
| | | | Notes: svn path=/head/; revision=29284
* Synchronize with sys/i386/isa/wd.c revision 1.137.KATO Takenori1997-09-101-3/+7
| | | | Notes: svn path=/head/; revision=29283
* Update # of ports.Jordan K. Hubbard1997-09-101-1/+1
| | | | Notes: svn path=/head/; revision=29282
* By popular request, change the default suggested value for CFLAGSJordan K. Hubbard1997-09-103-9/+12
| | | | | | | | and also note that COPTFLAGS is _just_ for the kernel and CFLAGS just for userland. Notes: svn path=/head/; revision=29281
* Do not ever try to coredump adapter memory regions.Joerg Wunsch1997-09-106-10/+76
| | | | | | | | | | | | PR: 4486 Submitted by: tegge@idi.ntnu.no (Tor Egge) Implement a function is_adapter_memory() in order to determine what should nto be dumped at all. Currently, only populated with the ``ISA memory hole''. Adapter regions of other busses should be added. Notes: svn path=/head/; revision=29280
* Update to XFree86 3.3.1Jordan K. Hubbard1997-09-106-291/+291
| | | | Notes: svn path=/head/; revision=29278
* Duh, calculate the compression ration correctly. (fixed point artithmaticPeter Wemm1997-09-101-5/+5
| | | | | | | | with 8 "fractional" bits needs to be divided (not multiplied) by 256.0 to get a floating point representation) Notes: svn path=/head/; revision=29277
* Synchronize with sys/i386/isa/if_ed.c revision 1.121.KATO Takenori1997-09-101-2/+2
| | | | Notes: svn path=/head/; revision=29276
* Synchronize with sys/i386/i386/userconfig.c revision 1.92.KATO Takenori1997-09-101-17/+204
| | | | Notes: svn path=/head/; revision=29275
* Synchronize with sys/i386/conf/files.i386 revision 1.175.KATO Takenori1997-09-102-4/+6
| | | | Notes: svn path=/head/; revision=29274
* Add example for IPFIREWALL_DEFAULT_TO_ACCEPTPeter Wemm1997-09-102-2/+8
| | | | Notes: svn path=/head/; revision=29272
* Mention the IPFIREWALL_DEFAULT_TO_ACCEPT option and it's effect onPeter Wemm1997-09-101-2/+14
| | | | | | | rule 65535 Notes: svn path=/head/; revision=29271
* Fix typo (65434 -> 65534)Peter Wemm1997-09-101-1/+1
| | | | Notes: svn path=/head/; revision=29270
* Mention IPFIREWALL_DEFAULT_TO_ACCEPT and it's effect on rule 65535.Peter Wemm1997-09-101-3/+6
| | | | Notes: svn path=/head/; revision=29269
* Allow a compile-time override of the ipfw deny rule. For a 'firewall'Peter Wemm1997-09-105-12/+45
| | | | | | | | | | | | | you don't want this (and the documentation explains why), but if you use ipfw as an as-needed casual filter as needed which normally runs as 'allow all' then having the kernel and /sbin/ipfw get out of sync is a *MAJOR* pain in the behind. PR: 4141 Submitted by: Heikki Suonsivu <hsu@mail.clinet.fi> Notes: svn path=/head/; revision=29268
* Cosmetic: Remove unused variables and build on OpenBSD.Brian Somers1997-09-107-42/+44
| | | | Notes: svn path=/head/; revision=29265
* Correct and explain the PAP/CHAP examples.Brian Somers1997-09-101-37/+28
| | | | Notes: svn path=/head/; revision=29262
* Change the address for the low end of what we permit from c0000 downDavid Greenman1997-09-102-4/+4
| | | | | | | | to a0000 so that people can put their cards in the middle of their video memory if they want. :-) Notes: svn path=/head/; revision=29261
* Allow dial to work in non-interactive mode.Brian Somers1997-09-091-3/+1
| | | | Notes: svn path=/head/; revision=29259