Commit Graph

6682 Commits

Author SHA1 Message Date
wiz
6454d66c69 Fix typo. 2003-05-15 13:28:58 +00:00
atatat
b5329c1d85 (1) Don't print the message buffer (via ddb's dmesg command) if the
message buffer has not yet been set up, mimicking code from the top of
the sysctl routine for retrieving the message buffer.

(2) Add a /l modifier to the trace command.  This makes it print the
backtrace using printf() instead of db_printf(), which has the nice
side-effect of also putting it into the message buffer.  A kernel with
ddb in it but disabled (ie, ddb.onpanic set to zero) will print a
backtrace (which ends up in the message buffer) before dumping (or
not, depending on the value of kern.dump_on_panic) and rebooting, but
if ddb is not disabled, the backtrace is not printed, and there's no
way to get it to display a backtrace such that you can retrieve it
after the dump.  The backtrace printed by gdb is sometimes a little
different.

(3) Documentation for the above.
2003-05-15 13:18:18 +00:00
wiz
ee6d7b94d4 Remove last traces of obsolete olms and omms drivers.
Ok'd by drochner and fvdl.
2003-05-15 13:13:21 +00:00
wiz
3b82314399 Point to IPC tutorials in /usr/share/doc/psd, update names, and add authors.
Bump date.
Suggested by kleink.
2003-05-15 10:18:42 +00:00
wiz
318b76a793 setup -> set up. 2003-05-15 06:01:02 +00:00
fair
28dbdce5de nroff cleanups prior to answering a problem report. 2003-05-15 02:03:45 +00:00
salo
86395f0606 Add cross-references to w(1) and lastlogin(8). 2003-05-14 18:07:01 +00:00
wiz
428fec6205 Bump date for last. 2003-05-14 12:20:01 +00:00
wiz
c0374a92bc New sentence, new line; nits. XXX: this page might need an update. 2003-05-14 12:19:15 +00:00
drochner
1b08bec43d opms(4) is long gone 2003-05-14 12:18:07 +00:00
drochner
06a2fecfa8 remove "opms" 2003-05-14 12:16:57 +00:00
wiz
577a7320c0 setup -> set up. 2003-05-14 12:00:33 +00:00
wiz
67b1bed2dd setup -> set up, from jmc@openbsd. 2003-05-14 11:58:34 +00:00
wiz
1d1f715318 setup -> set up. 2003-05-14 07:59:00 +00:00
wiz
2a0da87429 setup -> set up; it's -> its 2003-05-14 07:58:31 +00:00
wiz
a969e6f361 setup -> set up, from jmc@openbsd. 2003-05-14 07:57:51 +00:00
wiz
72560fa3c0 New sentence, new line; use .Aq; set -> set up. 2003-05-14 07:50:50 +00:00
wiz
8a4655ce73 Setup -> set up; new sentence, new line; add some commas; change kernel building instructions to include make depend. 2003-05-14 07:40:27 +00:00
wiz
34757ddf9c Setup -> set up, from jmc@openbsd. 2003-05-14 07:28:01 +00:00
dbj
f1e0ecadf7 remove dependencies on ${LIBC} ${LIBM} and ${LIBTERMCAP} static libraries
from host tool targets.  Commits fix from PR toolchain/21495
2003-05-14 00:24:06 +00:00
wiz
956c6be35c Fix typo; new sentence, new line; use more mdoc; add FILES section; sort SEE ALSO. 2003-05-13 10:08:36 +00:00
wiz
28756760a7 Bump date for last. 2003-05-13 09:59:27 +00:00
fvdl
c6626dc295 Fix this up a bit to match reality. Needs more work, and so do some
other manpages describing scheduling-related functions.
2003-05-13 09:56:27 +00:00
ragge
7eef3e7815 This ksyms man page should describe the current interface. 2003-05-11 18:09:49 +00:00
wiz
e64e6c16f0 Make that May :). 2003-05-11 17:49:12 +00:00
augustss
3ed5e278c3 Add Belkin F5U109. 2003-05-11 16:30:16 +00:00
wiz
8635711f3e Add Centreville, and fix 22015. From Sean Davis in PR 21407. 2003-05-11 01:55:18 +00:00
thorpej
a6bb9a13b4 Back out the following chagne:
http://mail-index.netbsd.org/source-changes/2003/05/08/0068.html

There were some side-effects that I didn't anticipate, and fixing them
is proving to be more difficult than I thought, do just eject for now.
Maybe one day we can look at this again.

Fixes PR kern/21517.
2003-05-10 21:13:27 +00:00
salo
a760954e6f Fix AMS, from Douwe Kiela via PR misc/21523.
Better describe PRG.
Add BTS.
2003-05-10 19:38:06 +00:00
wiz
6169ff492d Bump date for last; new sentence, new line. 2003-05-10 09:09:41 +00:00
fvdl
b1d933d3cf Document isa_drq_alloc/free. 2003-05-10 00:02:22 +00:00
christos
b024767c0c Fix _HOST_CYGWIN lossage. 2003-05-08 20:39:00 +00:00
salo
1b089357bd Whitespace. 2003-05-08 18:59:06 +00:00
thorpej
97b3b91fa8 Simplify the way the bounds of the managed kernel virtual address
space is advertised to UVM by making virtual_avail and virtual_end
first-class exported variables by UVM.  Machine-dependent code is
responsible for initializing them before main() is called.  Anything
that steals KVA must adjust these variables accordingly.

This reduces the number of instances of this info from 3 to 1, and
Simplify the way the bounds of the managed kernel virtual address
space is advertised to UVM by making virtual_avail and virtual_end
first-class exported variables by UVM.  Machine-dependent code is
responsible for initializing them before main() is called.  Anything
that steals KVA must adjust these variables accordingly.

This reduces the number of instances of this info from 3 to 1, and
simplifies the pmap(9) interface by removing the pmap_virtual_space()
function call, and removing two arguments from pmap_steal_memory().

Simplify the way the bounds of the managed kernel virtual address
space is advertised to UVM by making virtual_avail and virtual_end
first-class exported variables by UVM.  Machine-dependent code is
responsible for initializing them before main() is called.  Anything
that steals KVA must adjust these variables accordingly.

This reduces the number of instances of this info from 3 to 1, and
simplifies the pmap(9) interface by removing the pmap_virtual_space()
function call, and removing two arguments from pmap_steal_memory().

This also eliminates some kludges such as having to burn kernel_map
entries on space used by the kernel and stolen KVA.

This also eliminates use of VM_{MIN,MAX}_KERNEL_ADDRESS from MI code,
this giving MD code greater flexibility over the bounds of the managed
kernel virtual address space if a given port's specific platforms can
vary in this regard (this is especially true of the evb* ports).
2003-05-08 18:16:20 +00:00
christos
e9672445c0 Hacks for limited command and environment space (John Gordon) 2003-05-08 13:34:07 +00:00
christos
61987b916a Deal with CYGWIN's sh screwage. 2003-05-08 13:02:09 +00:00
uebayasi
80e148b7e3 Make libmagic known as a system library, and install manual page links
of the libmagic functions.

Submitted by Hiroshi Ura <ura at hiru dot aoba dot yokohama dot jp> in
PR21496.


Reviewed By:	wiz
2003-05-08 07:14:11 +00:00
wiz
a65567f59b Hack around ".Nm" introducing newlines in the SYNOPSIS section.
Reported by Kouichiro Hiratsuka via uebayasi.
2003-05-08 05:38:10 +00:00
wiz
93530159cb New sentence, new line. 2003-05-08 04:48:27 +00:00
wiz
2cefdd1518 Bump date for last. Drop trailing whitespace. 2003-05-08 04:46:35 +00:00
gmcgarry
b4cb3ae351 Consistently use 'Native Language Support' for NLS. From Jeremy C. Reed.
Also, add table of ISO639 language codes.
2003-05-07 22:41:26 +00:00
fvdl
6fd55b60ac Add -mcmodel=kernel to CFLAGS for amd64. 2003-05-07 22:36:06 +00:00
jwise
79a13eae41 Add a second example, showing how to create the same vlan as in the first
example, but at system startup time.

Finishes fix of PR 17863.
2003-05-07 16:49:59 +00:00
yamt
7fb7b24fed make RPC_XDRFILES depend on files in right directory. 2003-05-07 13:41:22 +00:00
wiz
5b3ea1544b Misc fixes. 2003-05-07 13:28:12 +00:00
takemura
e02bb3ff4e Added man page, hpcmips/boot.8. PR #21371. 2003-05-07 13:14:50 +00:00
itojun
321d39a033 sync w/ freebsd 1.72 (includes up to openbsd 3.3) 2003-05-07 07:11:00 +00:00
fair
38bbc15b9b Clean up nroff issues. Add more mdoc macro use.
Clarify wording and grammar.
Add an EXAMPLE section per PR 17863
2003-05-07 03:33:49 +00:00
wiz
b376555071 dial-in, not dialin. From Leandro Costa via jmc@openbsd. Similarly, dial-out for dialout. 2003-05-06 19:05:35 +00:00
wiz
845cf3eb91 Join Nd argument to Nd line. 2003-05-06 19:04:05 +00:00