summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* M_AWAIT changed to M_ASLEEPdillon1998-12-231-3/+3
|
* Documentation update for new M_AWAIT flag to kernel malloc, plus revampdillon1998-12-231-12/+50
| | | | the descriptions of the flags and return value.
* update asleep/await sectionsdillon1998-12-231-31/+46
|
* Add manual page describing kernel buffer management system (i.e.dillon1998-12-222-2/+126
| | | | kern/vfs_bio.c).
* Grammer / Consistancy updatedillon1998-12-221-10/+11
| | | | Submitted by: Eivind Eklund <eivind@yes.no>
* Add examples how to use the terminal emulation code in /boot/loader toabial1998-12-225-0/+244
| | | | create nice startup menus. Improvements are warmly welcome. :-)
* For whatever reason, i've thrown away this change yesterday instead ofjoerg1998-12-221-2/+3
| | | | | | committing it: include rdp.4. Pointed out by: bde
* Add manpages for dummynet and bridgingluigi1998-12-213-1/+249
|
* This commit was generated by cvs2svn to compensate for changes in r41980,joerg1998-12-211-0/+181
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * This is my first cut on a driver for the RealTek RTL 8002 pocketjoerg1998-12-211-0/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | ethernet driver. The BUGS section is still impressive, but the driver seems to work for me now. Disclaimer: i haven't been able to test this under -current so far (but it compiles, and the notebook it's intended for can now be updated to -current more easy than before). Don't be afraid of the many #ifdefs on __FreeBSD_version in the imported file; i want them in the repository on the vendor-branch so other people can also manually integrate it into older systems. I'll clean it up on the -current branch in a followup commit. The vendor-banch version right now supports systems back to 2.2R. This driver should be layered upon ppc(4), but i currently have no idea how to do this. Eventually i'll further develop the driver to also support the more modern RTL 8012 success, which seems to be present in a number of cheap pocket ethernet adapters these days. Right now, i doubt it will run with the 8012 without any changes. Finally a big Thanks! to RealTek for promptly providing me with documentation and with the source code for the 8012 pocket driver upon request. I wish all vendors were that cooperative!.
* update HISTORY sectiondillon1998-12-211-2/+5
|
* Add manual page for experimental kernel asleep() and await() routinesdillon1998-12-212-3/+94
|
* Clarify that "/usr/share" is used for architecture independent filesjkoshy1998-12-211-2/+2
| | | | | | | and need not be restricted to ASCII text files. PR: docs/9124 Submitted by: Mattias Pantzare <pantzer@ludd.luth.se>
* Moved security page from man 1 to man 7dillon1998-12-202-2/+476
|
* Moving security page to section 7dillon1998-12-202-476/+2
|
* Add quick overview of basic firewalling practicesdillon1998-12-201-1/+25
|
* Add information on how to deal with DOS attacksdillon1998-12-201-3/+97
|
* FIxed unsorting of cross references in previous commit.bde1998-12-201-2/+2
|
* Fixed unsorting of MAN1 in previous commit.bde1998-12-201-3/+2
|
* Commit initial man page for 'security'... an introduction to securitydillon1998-12-193-3/+360
| | | | | | | mechanisms. It is a little light on detail but still a pretty good overview. I suggest that for specific detail (such as, for example, how to setup kerberos), that additional security-DETAILNAME man pages be written and refered to.
* Fix spelling nits.jkoshy1998-12-181-5/+5
| | | | | PR: docs/9115 Submitted by: Kris Kennaway <kkennawa@physics.adelaide.edu.au>
* Move some compile flags from the kernel makefile to bsd.kern.mk so thatdfr1998-12-171-1/+9
| | | | | | kernel modules are built with the right flags. Suggested by: Andrew Gallatin <gallatin@cs.duke.edu>
* Add portal exampledillon1998-12-152-0/+67
| | | | PR: misc/8796
* Add -Wunused to kernel build flags.archie1998-12-141-3/+3
| | | | Reviewed by: cvs-committers@freebsd.org
* Added support for DIS 8859-15 based locales using patchdillon1998-12-145-1/+194
| | | | | | from Kaleb. Obtained from: Kaleb Keithley <kaleb@ics.com>
* Reviewed by: freebsd-currentdillon1998-12-122-13/+34
| | | | | Update manual pages for rc(8) and rc.conf(5) based on recent changes to rc.local and rc.conf[.local].
* Clarify rc's handling of rc.localdillon1998-12-121-2/+6
|
* (0) Fast INDEX generation. Only print out the directory name andasami1998-12-122-75/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | don't recurse in "make describe". The new INDEX target in ports/Makefile invokes a perl script to recurse and convert them into package names. While I'm here, change the name of targets and move them around a little bit for the sake of consistency. It is also probably worth noting here that the meaning of the "build dependency" list in INDEX has been changed slightly changed. The old list was "build depends and its build depends" -- not particularly useful if you had things like autoconf, which run-depend on gm4 (you install all the things listed here and you'll get an autoconf that won't run). It is now "build depends and its run depends" -- you install everything listed here, and you'll be able to build the port. Submitted by: steve (0') Fast README.html generation. It uses ports/INDEX to find dependencies instead of embarking on to a recursive loop. Submitted by: steve (1) Remove NO_WRKDIR and NO_EXTRACT. Their functionality are easily replacable with NO_WRKSUBDIR=t and EXTRACT_ONLY= (nothing on right side), and they get in the way of read-only port trees. (2) Surround first few variable definitions with ".if !defined()". This will make cross-compilation easier and also speed up make processes. (3) Call sysctl with absolute path. Prefer the one in /sbin over the one in /usr/sbin. (4) Add four new variables PKGINSTALL?= ${PKGDIR}/INSTALL PKGDEINSTALL?= ${PKGDIR}/DEINSTALL PKGREQ?= ${PKGDIR}/REQ PKGMESSAGE?= ${PKGDIR}/MESSAGE and use them in PKG_ARGS. Frobbing with PKG_ARGS directly is strongly discouraged. (5) Change PKG_SUFX to ".tar" (instead of ".tgz") if PKG_NOCOMPRESS is defined. This is intended only for our own use. (6) Add more sites to MASTER_SITE_GNU. Submitted by: billf (7) Override MANUAL_PACKAGE_BUILD if PARALLEL_PACKAGE_BUILD is defined. This is intended only for our own use. (8) Add new target "ignorelist" which will print out the package name if the port is not going to be built on this machine. This is intended only for our own use. (9) Make mtree a little quieter.
* Add working client and server sample applications.phk1998-12-111-8/+240
| | | | Submitted by: Mike Spengler <mks@circe.networkcs.com>
* Sample modules for KLD.dfr1998-12-1117-0/+1713
| | | | | PR: misc/8621 Submitted by: Rajesh Vaidheeswarran <rv@fore.com>
* Remove debugging printfs.gibbs1998-12-101-3/+1
|
* Use quotes around the first_line variable so C comments and other thingsbillf1998-12-082-3/+3
| | | | | | | | that are misinterpreted by echo(1) aren't. PR: docs/8757 Submitted By: Takeshi OHASHI <ohashi@mickey.ai.kyutech.ac.jp> Sergei Laskavy <laskavy@gambit.msk.su>
* Un-revert typo fix (fauled -> failed). This is what I get for notwpaul1998-12-072-4/+4
| | | | | | keeping my local RCS files in sync with the rest of the world. Caught red-handed by: bde
* if_rl.c: make a small tweak to properly handle the Accton MPX 5030/5038wpaul1998-12-072-8/+10
| | | | | | | | as a RealTek 8139 if_rlreg.h: use bus_space_read_X() in CSR_READ_X() macros instead of directly calling inb()/outb() etc... rl.4 + RELNOTES.TXT: mention that SMC EtherEZ PCI 1211-TX is supported by the RealTek driver
* Backed out previous commit. It was for bug for bug compatibility withbde1998-12-061-3/+2
| | | | | | 2.2's .mk files. Fixed spelling and placement of '$Id$'.
* Removed bitrotted code for setting OBJFORMAT.bde1998-12-062-12/+2
|
* Fix typos (dexktop, ot)rnordier1998-12-052-6/+6
|
* Fix typo (fauled)rnordier1998-12-0514-28/+28
|
* An early Christmas present: add driver support for a whole bunch ofwpaul1998-12-049-5/+1311
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PCI fast ethernet adapters, plus man pages. if_pn.c: Netgear FA310TX model D1, LinkSys LNE100TX, Matrox FastNIC 10/100, various other PNIC devices if_mx.c: NDC Communications SOHOware SFA100 (Macronix 98713A), various other boards based on the Macronix 98713, 98713A, 98715, 98715A and 98725 chips if_vr.c: D-Link DFE530-TX, other boards based on the VIA Rhine and Rhine II chips (note: the D-Link and certain other cards that actually use a Rhine II chip still return the PCI device ID of the Rhine I. I don't know why, and it doesn't really matter since the driver treats both chips the same anyway.) if_wb.c: Trendware TE100-PCIE and various other cards based on the Winbond W89C840F chip (the Trendware card is identical to the sample boards Winbond sent me, so who knows how many clones there are running around) All drivers include support for ifmedia, BPF and hardware multicast filtering. Also updated GENERIC, LINT, RELNOTES.TXT, userconfig and sysinstall device list. I also have a driver for the ASIX AX88140A in the works.
* Fix typo ('strait' -> 'straight').jkoshy1998-12-041-4/+4
| | | | | PR: docs/8956 Submitted by: Kaneda Hiloshi <vanitas@ma3.seikyou.ne.jp>
* Fix bugs in mdoc.samples(7): clean up references, quote usage of macros,jkoshy1998-12-031-19/+25
| | | | | | | | correct typos. PR: docs/9942 Submitted by: vanitas@ma3.seikyou.ne.jp Reviewed by: jkoshy
* slstats(8) --> slstat(8)billf1998-12-021-1/+1
| | | | | PR: docs/8107 Submitted by: Matthew Fuller <fullermd@futuresouth.com>
* Macro "Re" stands for "Reference End", not "Reference Start"billf1998-12-011-2/+2
| | | | | | PR: docs/8727 Reviewed by: jdp Submitted by: Kazuo Horikawa <horikawa@jp.FreeBSD.org>
* Formatting bug. What should have been "Veritas(tm)" was coming outbillf1998-11-301-2/+5
| | | | | | | "Veritastm". PR: docs/8733 Submitted by: Stefan Eggers <seggers@semyam.dinoco.de>
* Refer to "da" rather than "sd" device.rnordier1998-11-301-3/+3
|
* Add a manual page for man(7).jkoshy1998-11-262-3/+346
| | | | Thanks-to: Joerg Wunsch for sending me a sample page for inspiration.
* Change USE_QT to use version 1.41. I know this is a little premature,asami1998-11-251-2/+2
| | | | but I'd like as many people to test this before the release.
* (1) Remove LOOP_VAR and LOOP_OPTIONS. It's a hack and just too many thingsasami1998-11-201-94/+53
| | | | | | | | | | | | | | | break one way or another. With it goes the package-loop and the describe loop. (2) Add new variable MASTERDIR to make it easier to share files between ports. bsd.port.mk will find things like ${PKGDIR} underneath ${MASTERDIR} (which defaults to ${.CURDIR}). (3) Do not allow MD5_FILE to be renamed. Funny things can happen if you do that. (4) Use a few more absolute paths in the bsd.port.pre.mk part. I can't use absolute paths for sysctl because it moved recently.
* Mention in the man page that the Accton 1207D adapter is supported.wpaul1998-11-182-4/+6
|
* Add LIBPAM, LIBRADIUS, and LIBTACPLUS.jdp1998-11-181-1/+4
|
OpenPOWER on IntegriCloud