summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Foo. Maybe I should get Peter to hook ispell up in commit_prep.pl.obrien1999-09-142-2/+2
|
* Add the NIS domain to the tweakable knobs.obrien1999-09-142-0/+4
|
* Align sockaddrs passed to/from the routing socket as supposed by kernel.ru1999-09-131-5/+7
| | | | | | PR: 12847 Spotted by: Key Teck Sin <ktsin@acm.org> Reviewed by: wollman
* Apparently, it's not console=serial to set the serial console,jkh1999-09-132-2/+2
| | | | | | | it's serial=comconsole. I wish it were easier to figure this stuff out. :) Submitted by: jfieber
* Fix debut version to 3.3, not 4.0.iwasaki1999-09-111-1/+1
|
* Handle CAPABILITIESCHANGE event.iwasaki1999-09-111-0/+2
| | | | Document USERSTANDBYREQ and CAPABILITIESCHANGE events to apmd manpage.
* Document the fact that pkg_add/delete passes INSTALL/DEINSTALLmax1999-09-111-0/+5
| | | | respectively to rscript.
* Cosmetic:brian1999-09-087-456/+7
| | | | alias_cmd -> nat_cmd after a repo-copy
* Provide another installation option for GNOME so we have the more "classicjkh1999-09-084-26/+32
| | | | GNOME" desktop that Debian does as an option.
* We don't need a queue for *CP data - these are IP-only queues.brian1999-09-071-1/+1
|
* Introduce a forth IP packet queue. Urgent packets withbrian1999-09-076-78/+188
| | | | | | | | | ip_tos == IPTOS_LOWDELAY now get precidence over urgent packets with ip_tos != IPTOS_LOWDELAY and non-urgent packets with ip_tos == IPTOS_LOWDELAY. Enhance the ``set urgent'' syntax to allow for urgent UDP packets as well as urgent TCP packets.
* Make the ``Problem with IP header length'' error a bit more verbosebrian1999-09-062-2/+4
|
* $FreeBSD$ -> __DATE__brian1999-09-062-3/+1
| | | | This is probably more appropriate that $Date$ anyway
* Unifdef -DPASSWD_IGNORE_COMMENTS. This wasn't really optional andpeter1999-09-062-7/+2
| | | | we have enough pseudo-options already.
* Only do dhclient once; it has its own internal retry which is more thanjkh1999-09-061-8/+10
| | | | | long enough (and doing it multiple times results in a dialog which waits AGES to complete).
* Tidy $Log$ debrispeter1999-09-063-15/+0
|
* When logging warning messages, there are now three scenarios:brian1999-09-064-5/+24
| | | | | | | | o If a prompt is executing the command, only display the warning to that prompt o If a prompt is executing a ``load'' command, display the warning to all prompts *and* syslog o Otherwise, display the warning to all prompts *and* syslog.
* Tidy up $Log$ debrispeter1999-09-065-49/+0
|
* $Date$ -> $FreeBSD$peter1999-09-061-1/+1
|
* This commit adds driver support for PCI fast ethernet NICs based onwpaul1999-09-062-0/+2
| | | | | | | | | | | | | | | | the Davicom DM9100 and DM9102 chipsets, including the Jaton Corporation XPressNet. Datasheet is available from www.davicom8.com. The DM910x chips are still more tulip clones. The API is reproduced pretty faithfully, unfortunately the performance is pretty bad. The transmitter seems to have a lot of problems DMAing multi-fragment packets. The only way to make it work reliably is to coalesce transmitted packets into a single contiguous buffer. The Linux driver (written by Davicom) actually does something similar to this. I can't recomment this NIC as anything more than a "connectivity solution." This driver uses newbus and miibus and is supported on both i386 and alpha platforms.
* This commit adds driver support for the Silicon Integrated Systemswpaul1999-09-052-0/+2
| | | | | | | | | | | | SiS 900 and SiS 7016 PCI fast ethernet chipsets. Full manuals for the SiS chips can be found at www.sis.com.tw. This is a fairly simple chipset. The receiver uses a 128-bit multicast hash table and single perfect entry for the station address. Transmit and receive DMA and FIFO thresholds are easily tuneable. Documentation is pretty decent and performance is not bad, even on my crufty 486. This driver uses newbus and miibus and is supported on both the i386 and alpha architectures.
* $Header$ cookiespeter1999-09-051-1/+1
|
* Update to XFree86 release 3.3.5jkh1999-09-045-105/+105
|
* o Catch up with pnp changes - kget no longer saves pnp data.jkh1999-09-046-65/+8
| | | | o Catch up with ncurses updates - some internal function names have changed.
* remove #ifdef FreeBSD -> <machine/soundcard.h> special case as we have itpeter1999-09-041-4/+0
| | | | in the standard location now.
* Update licence.markm1999-09-042-16/+2
|
* o Split the two IPCP queues into three - one for FSM databrian1999-09-0416-62/+251
| | | | | | | | | | | | (LCP/CCP/IPCP), one for urgent IP traffic and one for everything else. o Add the ``set urgent'' command for adjusting the list of urgent port numbers. The default urgent ports are 21, 22, 23, 513, 514, 543 and 544 (Ports 80 and 81 have been removed from the default priority list). o Increase the buffered packet threshold from 20 to 30. o Report the number of packets in the IP output queue and the list of urgent ports under ``show ipcp''.
* When sending radius authentication requests:brian1999-09-031-1/+46
| | | | | | | | | | | Supply RAD_NAS_IDENTIFIER if we have a `hostname` and RAD_IP_ADDRESS if that hostname resolves. Supply RAD_NAS_PORT using the ttyslot() of the tty that we're authenticating on if it's a tty device. Partially submitted by: Andriy I Pilipenko <bamby@marka.net.ua> PR: 12225
* It's "router_flags" not "routerflags"jkh1999-09-022-2/+2
| | | | | Submitted by: kasey@ambernetworks.com PR: 13534
* Oh crud, did I ever screw the pooch! Rather than sync this with -stable,jkh1999-09-0229-176/+495
| | | | | | | | | | I backed-out the changes in -current and didn't touch stable at all (I thought I had my patch order reversed, not what actually happened). AIEEE! I can't even blame the crack for this one since I broke my crack pipe a few weeks ago. I think sleep deprivation gets the blame for this one. Medal for noticing this one goes to: Jim Bloom <bloom@acm.org>
* Re-add the libmytinfo/libncurses stuff - removing it breaks staticchris1999-09-011-2/+2
| | | | | | linkage. Pointed out by: bde
* The libraries `libmytinfo' and `libncurses' are not required by thischris1999-09-011-2/+2
| | | | program.
* Fix stupid disorder in previous commit. This was my own error, notsheldonh1999-09-011-1/+1
| | | | the mistake of the PR's originator.
* The -f option stole the -d option's option string colon in the getoptsheldonh1999-09-011-1/+1
| | | | | | | optstring. PR: 13521 Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
* unifdef -Uvaxphk1999-09-011-148/+0
|
* Use the appropriate macro for double quotes rather than using doublejkh1999-09-014-20/+47
| | | | | | | quotes. Submitted by: Alexey Zelkin <phantom@cris.net> PR: 13436
* MFC: Catch 3.2-stable sysinstall up to 4.0-current level functionality,jkh1999-09-0129-494/+175
| | | | | | | bringing in DHCP support. The only thing I left out were Poul-Henning's newfs changes since I'm not sure if he's brought the rest of that support into -stable yet. If it turns out that this is the case, I'll MFC those changes too.
* Ppp is started on vty2, not vty3brian1999-09-011-1/+1
|
* Back out previous commit. I mistook passing commentary from bde forsheldonh1999-08-312-17/+6
| | | | | | review. Requested by: bde
* #ifdef out section of code dealing with integer timers,jlemon1999-08-311-0/+6
| | | | they aren't here any more.
* Make vnconfig's device argument not require a leading "/dev/", ala "ccdconfig".mtaylor1999-08-302-7/+19
| | | | | Cleanup a few "-Wall -O" warnings. Make "usage()" agree with man page.
* Only do a full pwd_mkdb for deletions; other operations may use the -usheldonh1999-08-301-2/+6
| | | | | | | option as an optimization. PR: 13346 Submitted by: Neil Blakey-Milner <nbm@rucus.ru.ac.za>
* Only issue a warning for the first occurrence of a UID > USHRT_MAX andsheldonh1999-08-302-6/+17
| | | | | | | the first occurrence of a GID > USHRT_MAX. PR: 13344 Reviewed by: bde
* Remove some $Log$ debrispeter1999-08-291-15/+0
|
* Add $FreeBSD$ lines to man pages that are missing them to make itmpp1999-08-2814-3/+28
| | | | | | | easier for translation teams. PR: docs/13418 Submitted by: Alexey Zelkin <phantom@cris.net>
* add MAINTAINER to userland part of i4bhm1999-08-281-0/+1
|
* Always set the MBR value. When you leave it uninitialized, it seemsjkh1999-08-282-20/+12
| | | | like libdisk does bad things. :)
* $Header$ -> $FreeBSD$peter1999-08-2814-15/+44
|
* $Id$ -> $FreeBSD$peter1999-08-28992-1016/+1019
|
* $Id$ -> $FreeBSD$peter1999-08-2822-22/+22
|
OpenPOWER on IntegriCloud