summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* add PC-Card melody beep(PC Card bus, kludge version)sanpei2000-10-281-0/+2
| | | | Original idea from: PAO3
* Use EX_USAGE in an example, as the SAME manual page describes aalex2000-10-281-1/+1
| | | | | | | few lines higher. PR: 22371 Submitted by: andrew@ugh.net.au
* Add some more information to the AUTHORS section.asmodai2000-10-282-4/+14
| | | | Remove unnecessary duplication of asr after the .Nm macro.
* Typo fix.mpp2000-10-271-1/+1
|
* update man page to reflect new supportmjacob2000-10-271-3/+4
|
* Use FreeBSD.org, not freebsd.org, as has been the precedent.asmodai2000-10-275-5/+5
|
* Please welcome the asr manpage [no, not alt.sysadmin.recovery], butasmodai2000-10-273-1/+166
| | | | | | the Adaptec SCSI RAID cards. Submitted by: msmith, scottl, Mark Salyzyn
* Add in MLINKS for all of the various mutex functions to mutex.9jhb2000-10-261-0/+9
|
* - Document MUTEX_DECLARE and MTX_COLDjhb2000-10-261-5/+42
| | | | - Clean up some minor nits
* Add a note that the spl() API is deprecated in favor of mutexes.jhb2000-10-263-1/+19
|
* Add a prototype mbuf.9 man page. Probably needs work, but it's a goodnik2000-10-262-1/+408
| | | | | | | start. PR: docs/22053 Submitted by: Yar Tikhiy <yar@comp.chem.msu.su>
* Remove a doubled "in the".nik2000-10-261-1/+1
| | | | | PR: docs/22140 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
* Update to include a link to the referenced papers when PRINTERDEVICE=htmlnik2000-10-264-61/+280
| | | | | PR: docs/22140 Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
* Add a MAINTAINER= line so people know who to blamegshapiro2000-10-262-0/+4
|
* Add copyright to skeleton.julian2000-10-261-6/+29
|
* some more cleanupsjulian2000-10-261-66/+113
| | | | still need to handle non-PNP devices properly.
* Add and install the uscanner manpage.asmodai2000-10-262-0/+126
| | | | | Reviewed by: n_hibma Prodded by: grog
* Update @freebsd.org email addresses to @FreeBSD.org as is theasmodai2000-10-2644-78/+78
| | | | precedent.
* Merge from vendor branch.wollman2000-10-257-64/+244
|
* This commit was generated by cvs2svn to compensate for changes in r67575,wollman2000-10-251-1/+2
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * ../changeswollman2000-10-2510-68/+250
| |
* | Slowly add more functionality as I learn more about newbus etc.julian2000-10-251-22/+93
| |
* | Add the ATA_ENABLE_TAGS optionsos2000-10-251-0/+3
| |
* | Build the ISC library as libisc. This library comes as part of thearchie2000-10-241-0/+1
| | | | | | | | | | | | | | | | | | bind distribution, but until now was not being built as a separate entity. For documentation, see these man pages: assertions(3), eventlib(3), heap(3), logging(3), memcluster(3), tree(3). Reviewed by: jdp
* | Change archie's and my email addresses from Whistle.com to FreeBSD.orgjulian2000-10-2424-47/+47
| |
* | First effort at bringing these up-to-date.julian2000-10-241-288/+277
| | | | | | | | | | | | | | | | | | | | This creates a skeleton ISA device driver. I don't pretend that it's fully correct or even opitimal but it at least creates (and compiles) a 'clean' ISA driver. Hopefully PCI/PCCARD/etc. support will be added when I understand it. Unlike the old version this just creates a module. The old one tried to create a new kernel with the driver to be tested.
* | Correct the description of a few options to reflect that commands and/ormpp2000-10-241-3/+3
| | | | | | | | | | | | | | the results that they actualy use/generate. PR: docs/22267 Submitted by: SUZUKI Koichi <koich@cac.co.jp>
* | Add MASTER_SITE_MOZILLA and MASTER_SITE_XEMACS.knu2000-10-241-0/+2
| |
* | Add some very crude man pages to try to induce folk to work on them.markm2000-10-242-0/+198
| | | | | | | | Agreed to work on them: jasone
* | Fix %cache2000-10-232-2/+2
| |
* | It is bsd.sites.mk one should look for a full list of default sites,knu2000-10-221-1/+13
| | | | | | | | | | | | | | | | | | not bsd.port.mk anymore. Add MASTER_SITE_XFREE, MASTER_SITE_RINGSERVER, MASTER_SITE_TCLTK and MASTER_SITE_RUBY. Document and add MASTER_SORT_REGEX.
* | update URL and copyrightwosch2000-10-201-2/+2
| |
* | Added upcoming FreeBSD 4.2wosch2000-10-201-0/+3
| |
* | Introduce the M_ZERO flag to malloc(9)phk2000-10-201-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of: foo = malloc(sizeof(foo), M_WAIT); bzero(foo, sizeof(foo)); You can now (and please do) use: foo = malloc(sizeof(foo), M_WAIT | M_ZERO); In the future this will enable us to do idle-time pre-zeroing of malloc-space.
* | Remove bogus xref.mpp2000-10-201-1/+0
| | | | | | | | | | PR: docs/22125 Submitted by: Keith Jones <keith@sse0691.bri.hp.com>
* | Scripts should contain a comment block describing what the script does.joe2000-10-191-0/+13
| |
* | Reference Larry Wall's perlstyle man page, and recommend it's use wherejoe2000-10-181-4/+17
| | | | | | | | | | | | | | | | entries in this guide don't override it. Requested by: markm Comment on tabulation style.
* | Use 'unless' instead of 'if (! ... )' where it improves readability.joe2000-10-181-0/+7
| |
* | Opening braces should be at the end of the controlling line. Elsejoe2000-10-181-1/+33
| | | | | | | | | | | | | | and elsif belong on the same line as the closing brace for the previous if or elsif block. Suggested by: des
* | Contract a statement that's too verbose.joe2000-10-181-2/+0
| |
* | There are enough examples of using 'my $var = ...' definitions, so removejoe2000-10-181-7/+0
| | | | | | | | one.
* | All variables should be commented.joe2000-10-181-0/+21
| | | | | | | | | | | | | | Local variables should be separated from function arguments by a blank line. Suggested by: des
* | Make subroutine prototypes mandatory.joe2000-10-181-0/+20
| | | | | | | | | | | | The main code should be wrapped in a MAIN:{ ... } declaration. Suggested by: des
* | Fix the places that I missed last commit: 'vars' not 'var'.joe2000-10-181-2/+2
| |
* | Correction: 'use vars ..' not 'use var'.joe2000-10-171-1/+1
| | | | | | | | Submitted by: des
* | Build and install the perl.style(7) manual page.joe2000-10-171-1/+2
| |
* | Reclarify variable definition blocks.joe2000-10-171-15/+59
| | | | | | | | | | | | | | Ask programmers to use modules where possible instead of reinventing the wheel. Use 'chomp' not 'chop' please. Fixup some mdoc.
* | Fix error in sample code in the man pageroger2000-10-171-1/+1
| |
* | An initial draft of a style guide for perl scripts in the tree.joe2000-10-171-0/+98
| |
* | Add section for building ia64 kernels.dfr2000-10-161-0/+8
| |
OpenPOWER on IntegriCloud