summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* - Revise text, and fix typos and grammatical errors.yokota1999-02-1010-238/+1116
| | | | | | | | | - Add syscons.4. If there still are errors, whether technical or grammatical, they are entirely mine, not the reviewers'. Reviewed by: sos, jkh, archie, Nick Hilliard <nick@iol.ie>
* Remove the lpt(4) page, and fix references in the lp(4) and rdp(4) pages.des1999-02-104-111/+22
| | | | Also fix a language nit in the rdp(4) page.
* Add a prioritization field to the devstat_add_entry() call so thatken1999-02-101-3/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | peripheral drivers can determine where in the devstat(9) list they are inserted. This requires recompilation of libdevstat, systat, vmstat, rpc.rstatd, and any ports that depend on the devstat code, since the size of the devstat structure has changed. The devstat version number has been incremented as well to reflect the change. This sorts devices in the devstat list in "more interesting" to "less interesting" order. So, for instance, da devices are now more important than floppy drives, and so will appear before floppy drives in the default output from systat, iostat, vmstat, etc. The order of devices is, for now, kept in a central table in devicestat.h. If individual drivers were able to make a meaningful decision on what priority they should be at attach time, we could consider splitting the priority information out into the various drivers. For now, though, they have no way of knowing that, so it's easier to put them in an easy to find table. Also, move the checkversion() call in vmstat(8) to a more logical place. Thanks to Bruce and David O'Brien for suggestions, for reviewing this, and for putting up with the long time it has taken me to commit it. Bruce did object somewhat to the central priority table (he would rather the priorities be distributed in each driver), so his objection is duly noted here. Reviewed by: bde, obrien
* Update diskless and templated booting examplesdillon1999-02-0912-90/+259
|
* Copy from vendor branch. This mainly undoes most of the backing out ofbde1999-02-081-54/+54
| | | | | | | | Russian zones/rules in rev.1.12. ache objected mainly to the changes in the Moscow zone names in rev.1.11 and those changes have been backed out in the vendor branch. Reviewed by: ache
* - Add atkbd.4, atkbdc.4, splash.4 and vga.4.yokota1999-02-0713-50/+1304
| | | | - Update pcvt.4 and psm.4 to reflect recent keyboard driver changes.
* Indicate that LKMs are obsolete, just to prevent confusion.jkh1999-02-051-0/+5
|
* add a note about exclusive openmjacob1999-02-051-1/+6
|
* document new featuresmjacob1999-02-052-16/+154
|
* minor tweaksmjacob1999-02-051-4/+10
|
* More nit-picking in the debugging instructions.grog1999-02-051-12/+36
| | | | Get the rc.conf description right.
* Add the perl man pages to the "whatis" building list.markm1999-02-041-0/+2
| | | | RELENG_3 candidate.
* Typo fix. Remove reference to non-existent edit(1).jkoshy1999-02-041-7/+4
| | | | Pointed out by: Sue Blake <sue@welearn.com.au>
* Change description of dump analysis and crash to reflect the twogrog1999-02-041-8/+30
| | | | .gdbinit files.
* Remove commented out definition of FTP_PASSIVE_MODE, it is (and has alwaysasami1999-02-031-6/+1
| | | | | | been) an environment variable and doesn't belong here. Pointed out by: cnh@ems.mindspring.net, sanpei@yy.cs.keio.ac.jp
* Merge from vendor branch. Includes functional updates for:wollman1999-02-027-126/+267
| | | | | | | | | Egypt, Cyprus, Israel, Japan, Australia, Fiji, Brazil, Mexico, Nicaragua PR: 8632 Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata1999b
* Fix some spelling errors.mpp1999-02-015-15/+15
|
* Minor changes in formulation.grog1999-01-311-1/+11
|
* Remove the SVR4 examples. Folks, no binaries are allowed in thejdp1999-01-304-31/+0
| | | | repository. Also no uuencoded files should be added.
* ppbconf.9 removednsouch1999-01-301-2/+2
|
* Improve ppbus(4) microsequencer description. Remove ppbconf.9 which isnsouch1999-01-302-242/+381
| | | | to rapidly depreciated.
* Rewrote the changes in rev.1.53. Don't ignore errors from makeinfo.bde1999-01-301-20/+7
| | | | | Use fancy substitutions instead of a huge if statement to handle the rather delicate quoting.
* Added examples for svr4 /compat trees.newton1999-01-304-0/+31
|
* Slightly relax the requirements fro removing extra braces and parenthesis.julian1999-01-301-4/+19
| | | | Objected to by: bde
* Add two additional cards to the supported adapters list: the Racore 8165wpaul1999-01-292-4/+10
| | | | | | | | | and Racore 8148 adapters are now supported by the ThunderLAN driver. The 8165 is just a plain vanilla 10/100 card; the 8148 is a 'multi- personality' adapter which can support 10baseT, 100baseTX and 100baseFX if you include the proper modules. Also update the tl man page to mention the Racore cards.
* Fixed comment and whitespace lossage in recent commits. The -W flagbde1999-01-291-7/+14
| | | | | | is not implied by -Wall as claimed by gcc.1. Adding it causes a measly 7193 new warnings for LINT, mostly for "unused parameter" and "comparison between signed and unsigned".
* Cleanup bsd.kern.mk after last commit.dillon1999-01-291-14/+4
|
* Add section on debugging configuration problems and panics.grog1999-01-291-0/+204
|
* Update example to match new builtin behavior.jkh1999-01-281-3/+6
| | | | | Submitted by: Daniel C. Sobral <dcs@newsguy.com> PR: 9744
* - Fix errors in some keymap files.yokota1999-01-2847-356/+750
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - The numpad * key should always generate *. - The numpad - is fkey52 and should not generate a control code (0x1f). - The numpad 5 is fkey54, not fkey61. - The numpad 6 is fkey55 and should not generate a control code (0x1e). - Fix Spanish keymap. PR: i386/9532 Submitted by jose@we.lc.ehu.es. - Added Croatian keymap. It is the same as the Slovenian keymap. PR: misc/9706 Pointed out by: Damjan Marion - Addef Finnish keymap. It is the same as the Swedish keymap. PR: bin/9632 Submitted by: Martti Kuparinen - Assign special functions consistently in all keymap files. 101 keyboard 84 keyboard function ------------------------------------------------------------------------ Ctrl-Alt-Delete Ctrl-Alt-Delete reboot Ctrl-Alt-Esc Ctrl-Alt-Esc debug Ctrl-Alt-Space Ctrl-Alt-Space susp ScrollLock ScrollLock slock PrintScreen Shift-(Numpad *)/PrintScreen nscr Ctrl-PrintScreen Shift-Ctrl-(Numpad *)/PrintScreen debug Alt-PrintScreen/SysRq SysRq nop Pause Ctrl-NumLock slock Shift-Pause Shift-Ctrl-NumLock saver Alt-Pause Alt-Ctrl-NumLock susp Ctrl-Pause/Break Ctrl-ScrollLock/Break nop Left W*ndow key NA fkey62 Right W*ndow key NA fkey63 Menu NA fkey64 NOTE: us.unix.kbd and us.emacs.kbd are very much different from the other keymaps, thus, I didn't touch them.
* Turn on -Wall and -Wcast-qualdillon1999-01-271-5/+11
|
* Get rid of tbl stuff, replace with .Blgrog1999-01-271-251/+97
| | | | Take BUGS section from vinum.8
* Clarify documentation of 'ME' softlink.dillon1999-01-261-2/+16
|
* Diskless and templating configuration examplesdillon1999-01-2619-0/+722
|
* Fix typo by rewriting sentence.wollman1999-01-261-8/+10
|
* Added descriptions on new flags introduced in psm.c rev.1.57.yokota1999-01-262-2/+76
|
* Move bsd.port.*mk to under ${PORTSDIR}/Mk (already repository copied).asami1999-01-264-2446/+8
| | | | | | There are only skeletons left here; they merely serve as a backup to include the real versions under ${PORTSDIR}/Mk while we update the ports tree to include them directly.
* Terminate commit for the Intel PIIX4 SMBus support. Already committed filesnsouch1999-01-251-1/+1
| | | | | | are sys/pci/intpm* Submitted by: Takanori Watanabe <takawata@shidahara1.planet.sci.kobe-u.ac.jp>
* Intel PIIX4 Power Management Unit for smbus(4).nsouch1999-01-251-0/+63
| | | | Submitted by: Takanori Watanabe <takawata@shidahara1.planet.sci.kobe-u.ac.jp>
* Fix wrong exit code.rnordier1999-01-231-1/+1
| | | | | PR: 9321 Submitted by: Bob Van Valzah <Bob@whitebarn.com>
* Remove imm.4, merged with vpo.4nsouch1999-01-236-70/+75
| | | | | Fix vpo.4 manpage generation in Makefile Fix bootflags bits description in ppc.4
* Introduce a new variable NEED_LIBNAMES. If it is defined,jdp1999-01-222-4/+4
| | | | | | | <bsd.libnames.mk> is included regardless of the object file format. This is needed to fix the a.out PAM breakage that manifests itself when trying to build login.
* Merge the 1999a revision of the timezone data files. There are a numberwollman1999-01-219-760/+1126
| | | | | | | of important changes to European and South and Central American countries which should be back-ported to 3.x. Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata1999a.tar.gz
* This commit was generated by cvs2svn to compensate for changes in r43009,wollman1999-01-212-12/+39
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Try this import again, this time on the correct (sic) vendor branch.wollman1999-01-2114-778/+1176
| |
* | This commit was generated by cvs2svn to compensate for changes in r43007,wollman1999-01-211-9/+17
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | 1999a revision of timezone data from Arthur Olson and friends.wollman1999-01-2118-2700/+4569
| | | | | | | | | | | | Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata1999a.tar.gz
| * | This commit was manufactured by cvs2svn to create branchcvs2svn1997-08-192-0/+610
| | | | | | | | | | | | 'unlabeled-1.1.1'.
* | | Euro support, part 2.imp1999-01-2118-3/+1066
| | | | | | | | | | | | | | | | | | | | | | | | | | | This should be merged into RELENG_3 and a similar patch may be needed for RELENG_2_2, should that deemed necessary. Make world succeeded with these patches in my tree. Submitted by: "Kaleb S. KEITHLEY" <kaleb@ics.com>
* | | Add the new code for Palestine, with the comment that we don't knowwollman1999-01-211-2/+5
| | | | | | | | | | | | | | | what its correct numeric is. Although Hong Kong (HK) was deleted at about the same time, it remains in wide use so we leave it in.
OpenPOWER on IntegriCloud