summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add rcsid. Remove unused #includes. Spelling.charnier1998-07-061-8/+7
|
* Add rcsid, remove unused #includes, spelling.charnier1998-07-061-12/+12
|
* Remove unused #include. Add usage().charnier1998-07-062-12/+15
|
* Correct use of .Nm. Spelling. Add rcsid, remove unused #includes, use err(3).charnier1998-07-062-20/+18
|
* Add rcsid. remove unused #includes. Getopt returns -1 not EOF. Add usage().charnier1998-07-061-23/+27
| | | | Cosmetics in err(3) string.
* Lowercase 1st char. in err(3) strings.charnier1998-07-061-2/+2
|
* remoce unused #include.charnier1998-07-061-2/+1
|
* Correct .Nm use. Add rcsid. Use min for minutes instead of mn.charnier1998-07-062-36/+38
|
* Update man page to allow adding address_family when -l is used (this is a no opcharnier1998-07-062-62/+54
| | | | | for now). Correct use of .Nm. Short usage string (see man page for full list). Spelling. Use err(3).
* Correct use of .Nm, use .Bx Free for FreeBSD. Add rcsid, remove unusedcharnier1998-07-064-238/+218
| | | | #includes. Spelling. Use err(3) and add usage().
* Add the ability to suspend as well as hibernate to the system. Thisimp1998-07-068-46/+157
| | | | | | | is the kernel part of my commits, the userlevel stuff will be done in a separate commit. Add the ability to suspend as well as hibernate to syscons. Create a new virtual key like hibernate for suspend. Update apm_bios.h to define more apm bios goodies.
* Don't expect the new code to be used without the right option file beingjulian1998-07-061-1/+2
| | | | included.
* Fix braino in switching to TAILQ macro.julian1998-07-062-4/+4
|
* Forgot to register the IPFIREWALL_FORWARD option.julian1998-07-061-1/+2
|
* Document `-I' and `-R' options to `pkg_info'.jkoshy1998-07-061-0/+5
| | | | PR: 7155
* Support for IPFW based transparent forwarding.julian1998-07-0610-33/+344
| | | | | | | | | | | | | | Any packet that can be matched by a ipfw rule can be redirected transparently to another port or machine. Redirection to another port mostly makes sense with tcp, where a session can be set up between a proxy and an unsuspecting client. Redirection to another machine requires that the other machine also be expecting to receive the forwarded packets, as their headers will not have been modified. /sbin/ipfw must be recompiled!!! Reviewed by: Peter Wemm <peter@freebsd.org> Submitted by: Chrisy Luke <chrisy@flix.net>
* DEVFS completely bypasses the cdevsw and bdevsw tables now.julian1998-07-053-232/+804
| | | | | | | | Each devfs node has (and has had fro a while) a pointer directly to the correct cdefsw entry so just use it instead of doing the lookup. There are several other places in the kernel that still use the tables however, so they can't go away yet..
* fix braino from yesterdays' megacommitjulian1998-07-051-2/+2
| | | | | | Not sure of the result of it.. (may or may not effect anything) but it's fixed now. (found by: comparing what cvsup sent back to me with what I tested..)
* Add support for kernel gdb.dfr1998-07-055-40/+829
|
* Use byte/word access in badaddr if relevant.dfr1998-07-051-3/+12
|
* Support channel B as well as channel A.dfr1998-07-052-35/+76
|
* Add basic support for 2117x pci chipsets. Currently only pyxis (21174)dfr1998-07-053-0/+491
| | | | | is supported. Older chipsets will be easy to support later but right now, I just want to boot my 164LX scratch machine :-).
* Add macros for byte/word sized load and store instructions.dfr1998-07-051-0/+76
|
* Add declaration of the NetBSD/alpha bootinfo.dfr1998-07-052-0/+118
|
* First steps at supporting EB164 (AlphaPC 164, 164LX, 164SX).dfr1998-07-052-3/+135
|
* Define bio_imask to allow the ncr driver to compile. The idea of passingdfr1998-07-051-1/+3
| | | | | | mask address around when registering interrupts is wrong IMHO. We should use a priority level like IPL_BIO and the lower levels can then translate it into a mask if they want.
* Make the prom console work as a real device as well as a console.dfr1998-07-052-43/+64
|
* Make sure hold_count for level 2 maps is maintained properly.dfr1998-07-051-24/+10
| | | | Simplify pmap_mapdev (its still totally wrong for the alpha).
* Don't truncate the return value of mmap to sizeof(int).dfr1998-07-051-2/+2
|
* Minor tidying.dfr1998-07-051-11/+7
|
* Use u_int32_t in NQFHHASH instead of u_long.dfr1998-07-051-2/+2
|
* Remove the two single step breakpoints in the reverse order of setting todfr1998-07-051-5/+5
| | | | ensure that single stepping a branch to the next instruction works.
* Add symtab parameter to X_db_symbol_values.dfr1998-07-051-2/+3
|
* Support 'g' format for printing 8 byte values.dfr1998-07-051-1/+5
|
* There is no such thing any more as "struct bdevsw".julian1998-07-0445-496/+819
| | | | | | | | | | | | | | | | | | There is only cdevsw (which should be renamed in a later edit to deventry or something). cdevsw contains the union of what were in both bdevsw an cdevsw entries. The bdevsw[] table stiff exists and is a second pointer to the cdevsw entry of the device. it's major is in d_bmaj rather than d_maj. some cleanup still to happen (e.g. dsopen now gets two pointers to the same cdevsw struct instead of one to a bdevsw and one to a cdevsw). rawread()/rawwrite() went away as part of this though it's not strictly the same patch, just that it involves all the same lines in the drivers. cdroms no longer have write() entries (they did have rawwrite (?)). tapes no longer have support for bdev operations. Reviewed by: Eivind Eklund and Mike Smith Changes suggested by eivind.
* Fix spelling error.jdp1998-07-041-2/+2
|
* Don't disable ^D in interactive mode.brian1998-07-041-2/+4
| | | | Wished for by: pkh
* Don't require context when there's only one linkbrian1998-07-041-6/+8
| | | | for ``open lcp''
* VOP_STRATEGY grows an (struct vnode *) argumentjulian1998-07-0435-166/+88
| | | | | | as the value in b_vp is often not really what you want. (and needs to be frobbed). more cleanups will follow this. Reviewed by: Bruce Evans <bde@freebsd.org>
* Hmm, braino in last commit.phk1998-07-042-8/+10
|
* Change the sign on a race-condition, so that instead of ending up severalphk1998-07-042-16/+36
| | | | | tens of milliseconds out in the future we end up the right place with a subweeniesecond error.
* Remove '???' because it generates an annoying message aboutsteve1998-07-041-2/+2
| | | | | | | a trigraph being encountered when included. PR: 7123 Submitted by: Greg Lehey <grog@lemis.com>
* MF22: check for null pointer.jkh1998-07-041-2/+6
|
* Make things clearer.brian1998-07-042-14/+98
| | | | Submitted (some time ago) by: Ted Mittelstaedt <tedm@portsoft.com>
* Version 2.0-beta becomes 2.0 :-)brian1998-07-041-3/+3
|
* Fix some strange errors of shutting transmitter up when startsemenu1998-07-043-1182/+1153
| | | | | | | transmition after software reset with no link estabilished yet. Fix TX DMA stop method (queue last packet to stop). PR: i386/6578
* 6668/divert -> 8668/divert. IRC uses 6668.brian1998-07-041-2/+2
|
* Suggest port 8668 rather than 6668 for natd.brian1998-07-042-2/+2
| | | | 6668 is IRC.
* Fix bug from last commit: don't SEGV when reading as part of a pipe.hoek1998-07-041-1/+1
|
* Don't use a struct buf (malloc'd) without first initialising all the fieldsjulian1998-07-041-1/+5
| | | | | to some known value! (probable cause of soft updates exploding with vn devices)
OpenPOWER on IntegriCloud