Commit Graph

7974 Commits

Author SHA1 Message Date
wiz e2652e8189 Descend into man8.hp700. 2004-08-12 15:53:32 +00:00
wiz 10a8873653 Comment out mkboot(8) reference; use \*[Gt] instead of >; two grammar
improvements; use Nm instead of Xr to ourselves.
2004-08-12 14:43:33 +00:00
chs cdbff23301 add a boot.8 manpage for hp700. from openbsd. 2004-08-07 22:05:08 +00:00
chs 44c95f81ec turn on -O2 for hppa. 2004-08-07 21:43:18 +00:00
chs 2129a366ed turn on lint and profiling for hppa. 2004-08-07 21:42:52 +00:00
wiz 2e4c394a79 Quote a minus for PostScript output and fix a typo. 2004-08-07 10:03:29 +00:00
mycroft 20dd5ad0e7 Allow docs elsewhere in tree to be built with "make" after installation. 2004-08-06 16:35:41 +00:00
mycroft 436580ddb6 Update the list of missing stuff. 2004-08-06 16:31:43 +00:00
lukem 34daff1e0a the NETGEAR GA311 is supported by re(4) 2004-08-06 13:24:38 +00:00
bjh21 1663173577 Document various things I missed last time. Thanks to Jochen Kunz for
pointing them out.
2004-08-05 22:33:33 +00:00
lukem 600b0d8d67 Implement LIBDPLIBS, which is a list of the tuples:
libname  path-to-srcdir-of-libname

For each tuple;
     *	LIBDO.libname contains the .OBJDIR of the library `libname', and
	if it is not set it is determined from the srcdir and added to
	MAKEOVERRIDES (the latter is to allow for build time optimization).
     *	LDADD gets  -L${LIBDO.libname} -llibname    added.
     *	DPADD gets  ${LIBDO.libname}/liblibname.so  added.
2004-08-04 08:00:27 +00:00
lukem a606b4af8b Revert most of previous, and move the LIB<libname>?= assignments
back to bsd.prog.mk from bsd.own.mk.

pkgsrc uses <bsd.own.mk>, and setting LIB<libname> in it causes
problems with various package builds.
This should fix PR #26542 submitted by Jim Bernard.

(I'll be implementing the DPADD for shared libraries in a different
manner that generally won't depend upon ${LIB<libname>}.)
2004-08-04 05:32:47 +00:00
dsainty 915ce3f9ef Insure -> Ensure 2004-08-02 08:50:14 +00:00
rumble e6e2e32ac1 Mention SC1100 support and chipset bugs. 2004-07-30 23:12:16 +00:00
wiz 83d61f406a De-__P, fix a typo. 2004-07-30 17:14:52 +00:00
jmmv 10415be889 Add 2004 to copyright date, as there have been significant changes lately. 2004-07-30 15:18:44 +00:00
jmmv a8f1cb84ac Document the ("recently" added) getwschar, putwschar, scroll, getborder and
setborder accessops.  Document the new replaceattr emulop.

While here, add a paragraph explaining the purpose of each emulop (just as
done in accessops).  I believe I got them right, but a review could be good.
2004-07-30 15:17:26 +00:00
jmmv adda7c4307 Document the WSDISPLAY_BORDER_COLOR, WSDISPLAY_CHARFUNCS,
WSDISPLAY_CUSTOM_BORDER, WSDISPLAY_CUSTOM_OUTPUT and WSDISPLAY_DEFAULTSCREENS
kernel options.

Also document the WSDISPLAYIO_{GET,PUT}WSCHAR ioctls.
2004-07-30 14:00:18 +00:00
lukem d57516168e Move the LIB<libname>?= assignments from bsd.prog.mk to bsd.own.mk so
that they may be used by non PROGs (e.g., LIBs).

Improve some comments.
2004-07-30 04:18:48 +00:00
jmmv 2a08d54a9a Implement border color customization in wscons(4), only available for vga(4)
at the moment.

This includes the addition of two new wsdisplay ioctls, WSDISPLAY_{G,S}BORDER,
one to get the actual color and one to set it, respectively.  Possible colors
match those defined by ANSI (and listed in wsdisplayvar.h).

It also adds two accessops to the underlying graphics device, getborder and
setborder, which mach their ioctl counterparts.

Two kernel options are added: WSDISPLAY_CUSTOM_BORDER, which enables the
ioctls described above (to customize the border color from userland after
boot), and WSDISPLAY_BORDER_COLOR, which sets the color at boot time.
The former is enabled by default on the GENERIC kernel, but not on INSTALL
(among others).  The later is always commented out, leaving the usual black
border as a default.

wsconsctl is modified to allow accessing this value easily.  For example,
'wsconsctl -d -w border=blue'.
2004-07-29 22:29:35 +00:00
thorpej 52aef894d6 Assign STOBJS the value of OBJS, and use that when referring to static
library objects, rather than using OBJS to refer to them.  This gives us
a separate variable to refer to static library objects that does not affect
profile library objects (which has POBJS) or shared library objects (which
has SOBJS).
2004-07-29 03:14:04 +00:00
jmmv 92f81ea7d3 Implement support to dynamically change wscons console and kernel colors.
Two new ioctls are added to the wsdisplay device, named WSDISPLAY_GMSGATTRS
and WSDISPLAY_SMSGATTRS, used to retrieve the actual values and set them,
respectively (the name, if you are wondering, comes from "message attributes").

A new emulop is added to the underlying display driver (only vga, for now)
which sets the new attribute for the whole screen, without having to clear
it.  This is optional, which means that this also works with other drivers
that don't have this new operation.

Five new kernel options have been added, although only documented in
i386 kernels (for now):
- WSDISPLAY_CUSTOM_OUTPUT, which enables the ioctls described above to
  change the colors dynamically from userland.  This is enabled by default
  in the GENERIC kernel (as well as others) but disabled on all INSTALL*
  kernels (as this feature is useless there).
- WS_DEFAULT_COLATTR, WS_DEFAULT_MONOATTR, WS_DEFAULT_BG and WS_DEFAULT_FG,
  which specify the default colors for the console at boot time.  These have
  the same meaning as the (already existing) WS_KERNEL_* variables.

wsconsctl is modified to add msg.default.{attrs,bg,fg} and
msg.kernel.{attrs,bg,fg} to the display part, so that colors can be changed
after boot.

Tested on NetBSD/i386 with vga (and vga in mono mode), and on NetBSD/mac68k.
No objections in tech-kern@.
2004-07-28 12:34:02 +00:00
wiz 11fcc8f947 New sentence, new line; use Aq Pa for header file inclusion;
no parentheses at eol.
2004-07-27 14:24:18 +00:00
wiz 0343a4abb9 Do not put parentheses on their own line; bump date for previous. 2004-07-27 12:45:35 +00:00
yamt 23ee682b3d PFIL_NEWIF -> PFIL_IFNET. 2004-07-27 12:25:36 +00:00
yamt ff5b999530 document recent changes.
provided by Peter Postma.  PR/26068
mdoc tweaks by me.
2004-07-25 23:10:49 +00:00
mrg 2839ebd42d Hauke Fath's port of the openbsd SUNW,spif driver from PR#26061.
the driver was originally written by Jason L. Wright.

XXX: i haven't tested this on sparc64 at all...
2004-07-25 09:32:37 +00:00
mrg 4e68049874 install spif(4). 2004-07-24 19:42:49 +00:00
wiz 6342bdaf2f Mention COMPAT_NETBSD32 applies to amd64 too.
Noted by Nicolas Joly in PR 26393.
2004-07-22 15:12:23 +00:00
wiz 769a05ea90 New sentence, new line; use more markup; next release
will be 3.0; sort sections; use \*[Lt]\*[Gt] instead of <> for HTML output.
2004-07-22 15:10:01 +00:00
atatat d2dd73eec2 More better description of current state of sendmail stuff in more
places.  This is intended to make some people a tad happier.
2004-07-22 03:44:12 +00:00
tshiozak 39597367e4 add locale.alias(5) manpage. 2004-07-21 19:49:21 +00:00
tshiozak 3407ed183f add the default locale.alias. 2004-07-21 19:02:17 +00:00
wiz c60f137c23 Uncomment xrefs to elf(5) and ld.elf_so(1) now that we have the man pages. 2004-07-21 11:08:54 +00:00
heas d341ae4496 Fix typo in the text I added in the previous.
Thanks wiz.
2004-07-21 00:14:28 +00:00
heas a3f3869414 Add WSDISPLAYIO_[GS]MODE type _DUMBFB - mapped fb (no registers)
Add WSDISPLAYIO_LINEBYTES ioctl - # bytes/row

Used by ffb driver and XFree wsfb driver module - From OpenBSD
2004-07-20 20:28:20 +00:00
heas f3921bd4aa typo; date -> data 2004-07-20 14:34:27 +00:00
wiz 841c5d51f8 Add ptm(4). Christos thinks it's minimal but ok :) 2004-07-20 09:04:47 +00:00
xtraeme 5727d6c2d9 + SIP 2004-07-16 01:07:02 +00:00
wiz 20aac67434 Bump date for previous. 2004-07-15 10:47:43 +00:00
wiz cb255f199c Bump date for previous; mark up path with Pa. 2004-07-15 10:45:33 +00:00
atatat 89fc8be761 Change the default settings for sendmail.
(1) The stock sendmail.cf will only listen on the loopback interface.
(2) The stock submit.cf specifally connects to "localhost." which
    should be less susceptible to being confused or looking confused.
(3) The smtp listener starts by default, if needed.  The setting in
    /etc/default/rc.conf is still "no", but rc.d/sendmail detects the
    default setting and will change it to yes if need is determined.

Need is defined as "nothing else seems to have been changed about the
mail configuration but we'd like locally originated and locally
destined mail to be delivered".  If you change, eg, mailer.conf to
point to postfix or some other MTA, sendmail will not start.
2004-07-15 03:47:18 +00:00
atatat 5f89bdd921 Make the directory into which crash dumps are saved into something
that can be controlled via rc.conf.  The default is, of course,
/var/crash.
2004-07-15 03:29:55 +00:00
sekiya 0a541ba0ea Enable "loadable module" dlopen() scheme. Necessary to crossbuild the XFree86
server on platforms that are not supported by the Metrolink module loader
(i.e., MIPS).

Enabled for sgimips in bsd.x11.mk.
2004-07-13 09:29:45 +00:00
wiz ae14ac53a8 Mark up EST, and bump date for previous. 2004-07-11 09:54:40 +00:00
cube e287e9e65c Document EST_FREQ_USERWRITE. 2004-07-11 09:45:04 +00:00
wiz 5d64ce31b3 Mention geodeide(4). Bump date. 2004-07-09 23:17:08 +00:00
bouyer 8e03c54653 Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller.
Tested by Ian Zagorskih (ianzag at megasignal.com).
2004-07-09 18:38:37 +00:00
mycroft 7c8b7720b2 Add a missing .PHONY. 2004-07-06 12:07:34 +00:00
fredb dcc20fe368 Add mention of Norwegian, Portuguese, and Spanish built-in keymaps. 2004-07-06 04:00:23 +00:00