summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Document log_in_vain.imp1999-08-131-1/+7
| | | | | Forgotten by: imp Reminded by: Andreas Klemm
* In <199908042059.PAA14626@free.pcs>, Jonathan Lemon wrote:nik1999-08-121-7/+2
| | | | | | | | | | | | | | | | | > The route(4) manpage says: > > User processes can obtain information about the routing entry to a spe- > cific destination by using a RTM_GET message, or by reading the /dev/kmem > device, or by issuing a getkerninfo(2) system call. > > IMHO, the above sentence should probably be altered by replacing the > first comma with a period, and throwing away the rest of it. No one's objected, so I've made this change. This sort of fixes docs/12220, by removing the reference to the undocumented getkerninfo(2) call. So I'll close the PR as well. PR: docs/12220
* transparant -> transparentnik1999-08-121-2/+2
| | | | | PR: docs/8472 Submitted by: Craig Leres <leres@ee.lbl.gov>
* Add support for the Am79C978. (AMD PCHome/PCI Ethernet adapter)mdodd1999-08-101-1/+4
| | | | | | | See: http://www.amd.com/products/npd/overview/homenetworking/intro.html PR: kern/12275 Submitted by: Robert Watson <robert@cyrus.watson.org>
* Add an example of an isdnd.rc that works with ppp.brian1999-08-091-0/+75
|
* Add an example of an isdn profile.brian1999-08-091-0/+85
|
* Fix a few typos and misspellings, grabbed from PR#8472chris1999-08-091-8/+8
|
* Remove reference to nonexistant man page `da(9)'chris1999-08-091-3/+2
|
* Update to reflect recent changes.grog1999-08-071-76/+30
|
* updating isdn4bsd to beta version 0.83hm1999-08-062-54/+304
|
* Remove empty "SEE ALSO" section.jkoshy1999-08-061-2/+1
| | | | | PR: docs/12990 Submitted by: Chris Costello <chris@calldei.com>
* Typowosch1999-08-031-2/+2
| | | | Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* Add ports-ftp.asami1999-08-022-2/+4
|
* English fixes: consistent spacing after periods, "userland", not "user land",hoek1999-08-021-17/+18
| | | | | | other typos, ~four grammar gnits, an ironic case of incorrect parallelization, bad capitalization, an incorrect use of the infamous slash ('/'), and an unclear sentence.
* Bruce noted that the use of err(), fixed to errx() in the last commit,hoek1999-08-021-3/+6
| | | | | | | | did not specify an exit code. This implies the use of either a hand- rolled err() (Bruce's suggestion) or a random error code (my suggestion), both of which are against the style guidelines. This commit specifies the correct error code (implicitly). This also changes the error message to be a little more helpful.
* Add variable INSTALLFLAGS_EDIT used to remove arbitrary INSTALLFLAGS.hoek1999-07-313-9/+28
| | | | | | | | | | | | | | | Specifically intended for removing -fschg ("INSTALLFLAGS_EDIT=:S/schg/uchg/") this makes the NOFSCHG flag redundant. NOFSCHG will still be honoured by bsd.lib.mk but is valid for buildworld only. NOFSCHG is still implemented in the old way (ie. _not_ ".if NOFSCHG then { INSTALLFLAGS_EDIT+=:S/schg/,/ }" to emphasize the fact that NOFSCHG is only supported in a limited fashion and for buildworld. The interface and implementation are such that future use of flags such as sappnd can also be easily removed or altered (perhaps to uappnd). This commit brought to you by the letters B, D, and E, and the numbers six, one, thirteen, and three.
* Use errx() instead of err() in example code calling err() after strtol().hoek1999-07-311-2/+2
|
* Remove troff formatting directive from the first line of the man page,mpp1999-07-312-4/+2
| | | | | | since it is no longer needed. Pointed out by bde before I had a chance to fix it
* Convert a table of function keys into mdoc format so that theympp1999-07-302-56/+90
| | | | format properly. Previously the table came out all garbled up.
* Fix some typos.mpp1999-07-302-8/+8
|
* Use the .At macro to reference versions of AT&T UNIX.mpp1999-07-301-2/+3
|
* Alter the behavior of sys/kern/subr_bus.c:device_print_child()mdodd1999-07-292-8/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - device_print_child() either lets the BUS_PRINT_CHILD method produce the entire device announcement message or it prints "foo0: not found\n" Alter sys/kern/subr_bus.c:bus_generic_print_child() to take on the previous behavior of device_print_child() (printing the "foo0: <FooDevice 1.1>" bit of the announce message.) Provide bus_print_child_header() and bus_print_child_footer() to actually print the output for bus_generic_print_child(). These functions should be used whenever possible (unless you can just use bus_generic_print_child()) The BUS_PRINT_CHILD method now returns int instead of void. Modify everything else that defines or uses a BUS_PRINT_CHILD method to comply with the above changes. - Devices are 'on' a bus, not 'at' it. - If a custom BUS_PRINT_CHILD method does the same thing as bus_generic_print_child(), use bus_generic_print_child() - Use device_get_nameunit() instead of both device_get_name() and device_get_unit() - All BUS_PRINT_CHILD methods return the number of characters output. Reviewed by: dfr, peter
* Explicitly list the i/o addresses of the serial ports.nik1999-07-281-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | Prompted by docs/12343, in which people seemed to get a little confused. The original text in the file said: [...] # By default we use COM1 as our serial console port *if* we're going to use # a serial port as our console at all. (0x3E8 = COM2) # #BOOT_COMCONSOLE_PORT= 0x3F8 [...] From what I can make out, some people have assumed that means that if they just uncomment the BOOT_COMCONSOLE_PORT then it will use COM2: These same people then assume that "0x3F8" on that line is a typo for "0x3E8". What it actually means is that if you uncomment the line then the default stays as "Ox3F8" (COM1:), and that you have to uncomment the line, *and* change the value of the variable in order to use COM2:. So I've made that a little bit clearer. I've also listed the hex values for COM1: thru COM4:, snarfed from sys/isa/isareg.h. PR: docs/12343 Submitted by: Bill Grunfelder <wjgrun@dippy.cyberwar.com>
* Show how to use the new filter capabilitiesbrian1999-07-271-1/+89
| | | | Mostly submitted by: Peter Jeremy <jeremyp@gsmx07.alcatel.com.au>
* Remove the quotes from the kernel configuration "options" lines, tonik1999-07-271-6/+6
| | | | | | | reflect actual usage. PR: docs/12652 Submitted by: Chris Costello <chris@calldei.com>
* Fixed disordering in previous commit.bde1999-07-271-4/+5
| | | | Fixed overflow at column 80 in rev.1.96.
* Add a default ppp.conf (mode 600).brian1999-07-261-1/+25
| | | | | | | | | | | | Originally submitted by: Wayne Self <wself@cdrom.com> Allow a ppp startup option in rc.conf. Adjust sysinstall so that it appends to the end of ppp.conf and uses the generated profile to start ppp in auto mode on boot. Submitted by: Josef L. Karthauser <joe@uk.FreeBSD.org>
* Typo: assember -> assemblerkris1999-07-262-4/+4
|
* This commit adds device driver support for Adaptec Duralink PCI fastwpaul1999-07-253-2/+325
| | | | | | | | | | | | | | | | | | | | | ethernet controllers based on the AIC-6915 "Starfire" controller chip. There are single port, dual port and quad port cards, plus one 100baseFX card. All are 64-bit PCI devices, except one single port model. The Starfire would be a very nice chip were it not for the fact that receive buffers have to be longword aligned. This requires buffer copying in order to achieve proper payload alignment on the alpha. Payload alignment is enforced on both the alpha and x86 platforms. The Starfire has several different DMA descriptor formats and transfer mechanisms. This driver uses frame descriptors for transmission which can address up to 14 packet fragments, and a single fragment descriptor for receive. It also uses the producer/consumer model and completion queues for both transmit and receive. The transmit ring has 128 descriptors and the receive ring has 256. This driver supports both FreeBSD/i386 and FreeBSD/alpha, and uses newbus so that it can be compiled as a loadable kernel module. Support for BPF and hardware multicast filtering is included.
* Document dhcp flags.jkh1999-07-161-7/+12
| | | | Submitted by: "Sean O'Connell" <sean@stat.Duke.EDU>
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-1246-0/+66
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-1223-0/+46
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Use .Xr to xref pccardd(8).mpp1999-07-121-3/+7
|
* Correct typon_hibma1999-07-123-6/+6
| | | | | PR: 9638 Submitted by: Mauro Allegrini <allegrini@usa.net>
* Add portlint(1) and sort "SEE ALSO"'s.obrien1999-07-121-5/+7
|
* - FreeBSD.ORG => FreeBSD.orghoek1999-07-121-16/+16
| | | | | | - Don't discourage people from using "make readmes" - Document WRKDIRPREFIX.
* This commit adds driver support for the SysKonnect SK-984x serieswpaul1999-07-093-2/+321
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gigabit ethernet adapters. This includes two single port cards (single mode and multimode fiber) and two dual port cards (also single mode and multimode fiber). SysKonnect is currently the only vendor with a dual port gigabit ethernet NIC. The ports on dual port adapters are treated as separate network interfaces. Thus, if you have an SK-9844 dual port SX card, you should have both sk0 and sk1 interfaces attached. Dual port cards are implemented using two XMAC II chips connected to a single SysKonnect GEnesis controller. Hence, dual port cards are really one PCI device, as opposed to two separate PCI devices connected through a PCI to PCI bridge. Note that SysKonnect's drivers use the two ports for failover purposes rather that as two separate interfaces, plus they don't support jumbo frames. This applies to their Linux driver too. :) Support is provided for hardware multicast filtering, BPF and jumbo frames. The SysKonnect cards support TCP checksum offload however this feature is not currently enabled (hopefully it will be once we get checksum offload support). There are still a few things that need to be implemeted, like the ability to communicate with the on-board LM80 voltage/temperature monitor, but I wanted to get the driver under CVS control and into -current so people could bang on it. A big thanks for SysKonnect for making all their programming info for these cards (and for their FDDI and token ring cards) available without NDA (see www.syskonnect.com).
* Properly document /etc/defaults/rc.conf and rc_conf_files.jkh1999-07-091-13/+30
| | | | Submitted by: Sheldon Hearn <sheldonh@uunet.co.za>
* - Fix Belgian keyboard map (be.iso.kbd).yokota1999-07-074-18/+160
| | | | | | - Add Belgian keyboard map with dead keys (be.iso.acc.kbd). Tested and corrections submitted by: "Renaud Fivet" <rfi@ntc.be>
* Added pccard_conf parameter.hosokawa1999-07-071-1/+4
|
* Rename bpfilter to bpf.des1999-07-061-2/+2
|
* List avaiable function keys.yokota1999-07-062-2/+80
|
* Added $pccardd_flags.hosokawa1999-07-061-1/+7
|
* Clarify static_routes variable's meaningnik1999-07-051-7/+7
| | | | | | PR: docs/12302 Submitted by: Don Croyle <croyle@gelemna.ft-wayne.in.us> Reviewed by: nik
* Reflect recent changes in syscons and vga.yokota1999-07-054-226/+268
|
* Flesh out VOP_ADVLOCK.9 with a description of the available flagskris1999-06-302-51/+84
| | | | | | Sync vnode.9 with the definitions in <sys/vnode.h> Reviewed by: Doug Rabson
* Do nothing for the etc-examples target when SHARED=symlinks, since we'llsheldonh1999-06-271-1/+3
| | | | | | end up trying to install into the source directory. Reported by: bde
* * Tidy up a few things and fix some more warnings.dfr1999-06-275-31/+34
| | | | | * Change the devsw declaration to standard form and add missing fields * Change the filename from cdev_mod.ko to cdev.ko
* Fix some typos and do some minor mdoc cleanup.mpp1999-06-276-15/+16
|
* Add Pro/100+ (i82559) to the list of supported products.mph1999-06-252-10/+12
| | | | Approved by: dg
OpenPOWER on IntegriCloud