Commit graph

62840 commits

Author SHA1 Message Date
Poul-Henning Kamp 8e4359286c Improve the example FreeBSD/Beastie poster a bit:
Move Kirks copyright up above the bottom banner.
	Use the right font in the bottom banner.
	Move the bottom banner up so inkjet printers can print it.
2001-08-07 22:09:47 +00:00
Wilko Bulte 7f5a02ce53 Document removal of hardware support from installkernel. Reflects:
obrien      2001/07/21 10:38:46 PDT

  Modified files:
    release/alpha        dokern.sh
  Log:
  Fix the install kernel on a 1.44MB floppy again.
  I had to be aggressively Draconian to succeed.
  I diked out:
  + Multia, NoName, PC/EB 64, Aspen Alpine support.
  + SCSI tape support
  + AMI MegaRAID controller support
  + All parallel bus support (includes PLIP)
  + vx (3c590, 3c595), pcn (AMD Am79C97x PCI 10/100), sf (Adaptec AIC-6915),
    sis (SiS 900/SiS 7016), ste (Sundance ST201 (D-Link DFE-550TX)),
    wb (Winbond W89C840F) support.
2001-08-07 21:10:17 +00:00
Dag-Erling Smørgrav 03f28475f8 Allow the user to specify port ranges against which to match inet sockets.
Suggested by:	roam
2001-08-07 19:59:52 +00:00
Dima Dorfman 3fa96e6678 Move all the prototypes to one place. 2001-08-07 19:27:46 +00:00
Dima Dorfman 26a0ee75c6 Introduce a force option, MD_FORCE, that instructs the driver to
bypass some extra anti-foot-shooting measures.  Currently, its only
effect is to allow detaching a device while it's still open (e.g.,
mounted).  This is useful for testing how the system reacts to a disk
suddenly going away, which can happen with some removeable media.

At this point, the force option is only checked on detach, so it
would've been possible to allow the option to be passed with the
MDIOCDETACH operation.  This was not done to allow the possibility of
having the force flag influence other tests in the future, which may
not necessarily deal with detaching the device.

Reviewed by:	sobomax
Approved by:	phk
2001-08-07 19:23:16 +00:00
John Baldwin 5ebe32c611 Grab Giant arond page faults. ia64 boots again in the simulator now. 2001-08-07 17:31:42 +00:00
Scott Long 1a393b6188 Adding missing () in a KASSERT format string.
Submitted by:	brandt@fokus.gmd.de
2001-08-07 16:48:28 +00:00
Ruslan Ermilov c4d9468ea0 mdoc(7) police:
Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text.
Not only this slows down the mdoc(7) processing significantly, but it also
has an undesired (in this case) effect of disabling hyphenation within the
entire enclosed block.
2001-08-07 15:48:51 +00:00
Nik Clayton 5de15c0508 Add libxslt and its dependencies.
Submitted by:	John Hay
2001-08-07 15:28:20 +00:00
Andrey A. Chernov cf9da17cbb Apply pending /etc/ttys changes before calling editor on it
Approved by:	rwatson
2001-08-07 15:13:42 +00:00
Ruslan Ermilov b10fee5d7b mdoc(7) police: markup/spelling nits. 2001-08-07 14:12:13 +00:00
Ruslan Ermilov eb9fc72525 mdoc(7) police: markup nits. 2001-08-07 13:59:48 +00:00
Ruslan Ermilov 10a70ebafc mdoc(7) police: removed hard sentence breaks. 2001-08-07 13:56:00 +00:00
Ruslan Ermilov 794e35a1a9 s/should must/must/ plus markup nit. 2001-08-07 13:50:36 +00:00
Ruslan Ermilov 489c40dcf5 mdoc(7) police: bump document date for the previous delta. 2001-08-07 13:45:55 +00:00
Ruslan Ermilov 2909f5cf21 mdoc(7) police: sort xrefs. 2001-08-07 13:41:38 +00:00
Ruslan Ermilov df3fa85144 mdoc(7) police: bump document date for the previous delta, fix markup. 2001-08-07 13:40:07 +00:00
Ruslan Ermilov 01f7263205 mdoc(7) police: markup nits. 2001-08-07 13:26:57 +00:00
Ruslan Ermilov de4ee6fc38 mdoc(7) police: we use .Va for sysctl(8) MIB variables. 2001-08-07 13:21:15 +00:00
Ruslan Ermilov 4dcd9028a1 mdoc(7) police:
- Added SYNOPSIS
- Removed HISTORY information from DESCRIPTION
- Removed whitespace at EOL
- Minor markup nits
2001-08-07 13:18:09 +00:00
Ruslan Ermilov 3f75660545 mdoc(7) police: removed hard sentence breaks and trailing whitespaces. 2001-08-07 13:00:43 +00:00
Robert Watson f3ea28cb07 In preparation for MFC of sysinstall changes to edit /etc/ttys in
post-install config, reduce the potential confusion from the existence
of both configTTYs and configTtys by renaming configTTYs to
configEtcTtys.  While this is not a C naming conflict, it was probably
a poor choice of names on my part.
2001-08-07 12:48:17 +00:00
Ruslan Ermilov d0097656de More spelling fixes. 2001-08-07 12:47:57 +00:00
Ruslan Ermilov 44220250d0 mdoc(7) police: sort xrefs. 2001-08-07 12:33:11 +00:00
Yoshihiro Takahashi e993b51722 Merged from sys/dev/syscons/syscons.c revisions 1.370, 1.371 and 1.372. 2001-08-07 12:23:47 +00:00
Ruslan Ermilov f61004566c mdoc(7) police: markup nits. 2001-08-07 12:17:32 +00:00
Ruslan Ermilov 4ad7956eb6 dialog(3) -> dialog_noyes(3). 2001-08-07 12:13:22 +00:00
Yoshihiro Takahashi 094d43411f Merged from sys/dev/syscons/scterm-sc.c revision 1.16. 2001-08-07 12:10:17 +00:00
Kazutaka YOKOTA d959336c3b Don't call wakeup() while we are in DDB. The patch was
developed by bde. I added the same check in one more place
where wakeup() might be called during the DDB session.
Submitted by: bde
2001-08-07 11:51:26 +00:00
Stephen McKay bfc03b187c Spelling. 2001-08-07 11:09:17 +00:00
Thomas Gellekum 9e6e8e9f89 Fix warnings resulting from `-Wredundant-decls -Wstrict-prototypes'. 2001-08-07 11:09:15 +00:00
Mark Murray a298b38237 Fix some fractured english. The translators can ignore this. 2001-08-07 09:14:51 +00:00
Doug Barton e4a9231de9 Hopefully squish the problem of mm creating sendmail files in
the source tree once and for all.

Pointed out by: A cast of thousands

Reviewed by:	asmodai
2001-08-07 06:22:12 +00:00
Jason Evans 920ae52d67 Document sx_try_[sx]lock(). 2001-08-07 04:29:53 +00:00
Mike Barcroft b5b9b43078 Constify, staticize, and set WARNS=2.
MFC after:	3 days
2001-08-06 23:20:06 +00:00
Brooks Davis 88f7a9cf86 Add PCI ID for Cisco Aironet 350 Series cards. The patch differs
slightly from the submitted one.

PR:		kern/29415
Submitted by:	Bob Fleck <rfleck@cigital.com>
2001-08-06 23:14:16 +00:00
Mike Barcroft a4616748ab o Correctly define rcsid.
o Add consts where appropriate.
o Rename some variables that were shadowing global declarations.
o Remove register storage-classes.
o Make errmsg a const, so we can just set error messages instead
  of using sprintf/strcpy.
o Set WARNS=2

Reviewed by:	bde, des
2001-08-06 22:01:31 +00:00
Kris Kennaway 1e1bbe0f97 Recognise @option directives instead of falling through to the default
"unknown command" clause.

PR:	29262
2001-08-06 20:09:26 +00:00
Scott Long d047ecf50b Make AAC_COMPAT_LINUX optional once again.
Submitted by:	julian
2001-08-06 19:40:47 +00:00
Hajimu UMEMOTO 232bdaf61f printed current sequence number of the SA. accordingly, changed
into sadb_x_sa2_sequence from sadb_x_sa2_reserved3 in the sadb_x_sa2
structure.  Also the output of setkey is changed.  sequence number
of the sadb is replaced to the end of the output.

Obtained from:	KAME
2001-08-06 19:40:01 +00:00
Hajimu UMEMOTO e51e1807bd do not play too much trick with evaluation order. from netbsd
Obtained from:	KAME
2001-08-06 19:34:41 +00:00
Hajimu UMEMOTO 910e7df8bb fixed to make a response in key_spdadd(). reported by <R.P.Koster@kpn.com>
Obtained from:	KAME
2001-08-06 19:32:47 +00:00
Hajimu UMEMOTO b8f2e55112 merged key_cmpsaidx_*.
Obtained from:	KAME
2001-08-06 19:31:13 +00:00
Scott Long 4c3ccf193f blah, fix missing commas in 'SEE ALSO' section. 2001-08-06 19:21:27 +00:00
Scott Long 5d9a15cb78 After confering with sheldonh, it was decided that the tuning section should
be renamed back to 'Tuning' and should be a subsection under 'Description'.
also make a few other minor tweaks.

Reviewed by:	sheldonh (in principal)
2001-08-06 18:16:46 +00:00
Nate Williams d4b85e6acf -Finished cleanup of old 'ThinkPad' comments that are no longer useful.
Reminded by:	bde
2001-08-06 16:04:39 +00:00
Nick Sayer e87f98d4ff Now properly use logger's facility argument 2001-08-06 15:52:42 +00:00
John Baldwin bcbde237d3 Get the order of the sys/_lock.h and sys/_mutex.h headers right. 2001-08-06 14:25:35 +00:00
Brian Feldman bcc92693d4 Previously, the ELF linker would always just store the pointer to a
filename passed in via the module loader functions in the GDB
"sharedlibrary" support structures.  This isn't good, since the pointer
would become stale in almost every case (not the pre-loaded case, of
course).

Change this to malloc()ed copy of the string and finally fix the reason
that gdb -k's "sharedlibrary" command stopped working.

Obtained from:	LOMAC/FreeBSD (cf. NAI Labs)
2001-08-06 14:21:57 +00:00
Ruslan Ermilov f47a6dce89 Fixed one more breakage introduced in 1.103 cleanup.
ICMP types were reported incorrectly:

# ipfw add allow icmp from any to any icmptypes 0,8

PR:		bin/29185
Submitted by:	Mike Durian <durian@boogie.com>
2001-08-06 13:03:38 +00:00