Commit Graph

5579 Commits

Author SHA1 Message Date
lukem 2ba24b706f remove now-unnecessary SPARCINSTALLBOOT 2002-05-07 12:13:54 +00:00
onoe e932e8f432 Add some CF cards: D-Link DCF-650W, Symbol Wireless Networker,
Linksys Instant Wireless
2002-05-07 09:56:32 +00:00
eeh 25dfe267a1 Don't add -DBIGPIC to APICFLAGS. 2002-05-07 02:06:32 +00:00
eeh 90c1726789 Turn on 32-bit relocations for sparc64 PIC code. 2002-05-07 01:45:45 +00:00
jdolecek 6662805edf Add pointer to /usr/share/examples/fstab/ to FILES section.
Remove mount_*(8) xrefs, leave just mount(8).
2002-05-04 19:50:36 +00:00
jdolecek 074863cac2 Move the sample fstab files to /usr/share/examples/fstab/. Duplicates
or very similar configs removed.
2002-05-04 19:43:57 +00:00
kleink 98807c1129 Add PREPMKBOOTIMAGE. 2002-05-03 20:38:42 +00:00
lukem d0b659b09f installboot.old nuked, so give man page the same treatment 2002-05-03 15:40:12 +00:00
lukem 48ee444a69 program nuked, so give man page the same treatment 2002-05-03 15:39:22 +00:00
lukem d918d8f74f Move the METALOG from ${_SRC_TOP_OBJ_} to ${DESTDIR}.
There were too many synchronisation problems with using the former;
including situations such as a "make clean" performed between two
installs to the same DESTDIR would result in a truncated METALOG and
the resultant sets would be missing stuff such as include files that
don't get reinstalled if they haven't changed, even with !UPDATE.
2002-05-03 08:58:45 +00:00
simonb e8fbd2c7f5 Make the ELF2ECOFF assignment an "?=" assignment so it won't override the
setting in bsd.own.mk.
2002-05-02 13:13:53 +00:00
sommerfeld 36dc09c47d make(1) specifies, regarding :: targets:
Sources for a target do not accumulate over dependency lines
	when this operator is used.

An unstated implication of this is that when parallel builds are done,
each separate instance of the target can be scheduled independantly.
As a result, the linksinstall target with commands could be executed
too early during a parallel build since they didn't actually have a
dependancy on "realinstall".

To fix this, correct the linksinstall:: realinstall dependancy by
eliminating the command-less linksinstall target, and moving the
dependancy to the other linksinstall target.
2002-04-30 14:29:01 +00:00
wiz 61f5aedc2a sh3e[bl] uses new toolchain, so remove an .elsif that doesn't make sense
anymore.
2002-04-29 19:27:07 +00:00
lukem 3d13a59112 - deprecate ip6forwarding in favour of ip6mode
- various grammar fixes
2002-04-29 10:27:14 +00:00
lukem 8323badb7a deprecate $sshd_conf_dir (and hardcode as "/etc/ssh").
$sshd_conf_dir wasn't as flexible as liked (it didn't work for ssh(1),
host keys or known_hosts).
2002-04-29 05:56:25 +00:00
atatat 66ffa38431 Provide some documentation on the EPASSTHROUGH new world order. 2002-04-28 14:13:38 +00:00
groo d11fdcc492 Complete the switch to NEW_TOOLCHAIN for sh3e[lb]. 2002-04-26 19:16:04 +00:00
lukem 248bbf896e Document NETBSDSRCDIR & UNPRIVED.
Reword BSDOBJDIR and BSDSRCDIR descriptions.
2002-04-26 16:24:06 +00:00
lukem 82172c42f6 Implement NETBSDSRCDIR, which is the top level of the NetBSD source tree.
Defaults to the directory determined by the _SRC_TOP_ logic (if != ""),
and the BSDSRCDIR.

NETBSDSRCDIR has been provided for use by the various NetBSD source
Makefiles to find the top of the NetBSD source tree, and isn't
affected by the inheritance properties of _SRC_TOP_, nor does it
have the magic BSDOBJDIR baggage that BSDSRCDIR is stuck with.
2002-04-26 15:02:02 +00:00
lukem 46569c985e Revert part of previous; don't set _SRC_TOP_ to BSDSRCDIR if it can't be
determined, since BSDSRCDIR's default of /usr/src might not exist and the
calculation of _SRC_TOP_OBJ_ would then generate a warning :-(.
_SRC_TOP_ can now == "" if make(1) (or a parent make(1)) was started
outside of the NetBSD source tree.

Now, if _SRC_TOP_ != "",  BSDSRCDIR defaults to ${_SRC_TOP_} and
BSDOBJDIR defaults to the objdir of ${BSDSRCDIR}.

Failsafe defaults for BSDSRCDIR (/usr/src) and BSDOBJDIR (/usr/obj)
are provided later in the file.

This should result in a usable BSDSRCDIR default (i.e, _SRC_TOP_ if
running from within the source tree), with safe fallbacks as appropriate
(/usr/src, as always), meaning that BSDSRCDIR should be able to be used
instead of _SRC_TOP_ in the source tree, although I need to carefully
test this.  *aaaiiiieeee!!!*.  (Now I understand some of Todd's pain :)
2002-04-26 14:27:23 +00:00
wiz 23b4e81d1c Sort sections. 2002-04-26 02:28:32 +00:00
wiz 7454d828a0 Sort SEE ALSO, and update date for aac addition. 2002-04-26 02:26:46 +00:00
ad 77e08f053a Add a driver for Adaptec FSA RAID controllers, as often found in Dell
servers. Based on the FreeBSD/OpenBSD versions.
2002-04-26 02:05:07 +00:00
lukem 39a9178088 - Improve wscons.conf(5)
- Add support for "setvar", which allows setting of arbitrary wsconsctl(8)
  variables.  Per email on tech-userlevel from Julio Merino <jmmv@hispabsd.org>
2002-04-26 00:06:53 +00:00
kleink d4fbf896be Note eso(4) attachment. 2002-04-25 00:59:25 +00:00
kleink 7d15aed65e Attach joy(4) at eso(4). 2002-04-25 00:57:47 +00:00
lukem 2c1cfc8e8c - in <bsd.files.mk>, don't clear FILES after using it, as that prevents
make -V FILES
  from being useful (and given that every other variable can be
  extracted using make -V, the behaviour was unusually inconsistent
  given that the original reason for clearing it doesn't seem to be
  relevant anymore)
- use <bsd.prog.mk> instead of directly including <bsd.files.mk>
  (and possibly <bsd.man.mk> or <bsd.own.mk>)
- remove obsolete NOPROG
2002-04-24 08:18:45 +00:00
bouyer 357e8d94bd Fix copyright notice. 2002-04-23 20:10:28 +00:00
wiz 9e12203110 Fix typo. 2002-04-23 20:01:54 +00:00
wiz 2d35a565b6 Fix Dd, sort SEE ALSO. 2002-04-23 19:59:39 +00:00
bouyer 410d0594cd Add a man page for esiop. While I'm there remove references to ncr(4). 2002-04-23 19:38:57 +00:00
wiz 162a640859 Fix a typo and drop a space. 2002-04-23 12:07:47 +00:00
augustss c17732b6e5 Add skeleton man pages for acpi drivers. 2002-04-23 12:01:16 +00:00
lukem 756722c3c1 Overhaul how _SRC_TOP_ is determined, ensuring that it will be set to
${BSDSRCDIR} if make(1) is running outside of the NetBSD source tree.
This should solve various issues, including building xsrc which uses
${BSDSRCDIR}/distrib/sets/maketars.
2002-04-23 07:20:22 +00:00
bjh21 93fb47689e Sun Workshop C 5.0 objects to generating object files with suffixes other than
.o.  Work around this by generating host object files with a .lo.o suffix and
then renaming to .lo.
2002-04-23 00:15:45 +00:00
wiz 2eb0022dc2 Sort sections. 2002-04-22 21:10:55 +00:00
ad 9a09578e25 Add a driver for ICP-Vortex GDT and Intel Storage RAID controllers. Parts
taken from OpenBSD. Test hardware kindly provided by Intel. This still needs
management bits, and doesn't support older controllers, but that shouldn't
be hard to fix.
2002-04-22 21:05:19 +00:00
enami d60499e75b Fix sample code:
- Put single space around binary operator or after a comma.
- Lineup case label with switch().
- ANSIfy.
- Use \e to print \.
- Deref the pointer to get a value.
2002-04-22 08:44:05 +00:00
itojun 49d6a0d5af document MKxxx/NOxxx naming rule. 2002-04-19 03:08:05 +00:00
dillo c0e4591901 regenerate (nuke wrong pms(4) reference) 2002-04-19 01:38:33 +00:00
dillo 0278f5dfcc Add special case: /dev/pms should refer to opms(4) (if it existed), not
to pms(4).  Noted by Thomas Klausner.
2002-04-19 01:34:41 +00:00
wiz e6eba7ad82 regen (opms removal) 2002-04-18 15:45:23 +00:00
dillo 9e86aef083 Escape empty rcs id so it doesn't get expanded in the awk script. 2002-04-18 13:33:01 +00:00
wiz 002e5a7e4a regen (pms0 removal) 2002-04-18 13:29:53 +00:00
wiz 209ec59377 regen (opms(4) removal) 2002-04-18 12:59:06 +00:00
bouyer d1f3cfb2c3 Document SIOP_SYMLED option. 2002-04-18 12:54:56 +00:00
wiz c6dc851f64 Remove opms(4) and its device, /dev/pms0, from the i386 port, because
it has been obsoleted by pms(4).

Reviewed by fvdl and christos.
2002-04-18 12:54:09 +00:00
lukem 9b40da66ac improve /etc/rc.conf.d/* documentation, as per reminder from matt green. 2002-04-18 12:13:07 +00:00
lukem 0e798bbe1e minor improvements, including consistency in how variables are formatted. 2002-04-18 11:14:33 +00:00
dillo d9b6f49377 Fix PR 13923:
Rewrite MAKEDEV2manpage.pl in AWK and sh.
Add makedevs target to create MAKEDEV.8 man pages

Reviewed by Thomas Klausner.
2002-04-17 23:42:27 +00:00