mhitch
fd2d10cde3
A couple of more libraries needed by the ramdiskbin program.
1999-11-15 06:33:25 +00:00
simonb
b80f4eaf1d
- Add `bufcache' display which shows buffer cache usage per filesystem,
...
ala the monitor(1) command for Ultrix.
- Allow `h' or `?' to show the command list (same as `:help').
- Sort commands in cmdtab.c and systat.1
1999-11-15 06:16:56 +00:00
matt
999a010a4b
VAX should use -O2. (why don't all ports?)
1999-11-15 06:14:23 +00:00
haya
3be097c31d
Handle insertion and removal events more strictly.
1999-11-15 06:08:02 +00:00
haya
89d0a53e2c
Fill 0 into CardBus base address registers before a card is
...
configured.
1999-11-15 06:01:11 +00:00
nisimura
b06e451c53
- No need to include '<machine/autoconf.h>'.
...
- Nuke tc_badaddr() check from asc_tc because the existency check is already
done for real TC devices.
- Nuke tc_badaddr() check from asc_ioasic because it is a builtin device
found in all of IOASIC DECstations.
1999-11-15 05:25:57 +00:00
mhitch
5b9ba012af
Set IOASIC interrupt mask when changing device interrupts. (Old
...
initialization appears to have enabled IOASIC interrupts, and then used
a separate mask in the interrupt routine to decide which ones to process.
New initialization doesn't enable all the required interrupts, and the
device interrupt enable/disable routine wasn't changing the IOASIC mask).
Also fix a printf() format type.
1999-11-15 03:54:53 +00:00
nisimura
8e061f4876
Make sure TC_IPL_xxx synonymous with IPL_xxx.
1999-11-15 03:45:50 +00:00
nisimura
9c3842f41b
Relocate 'struct tc_softc' and several function declarations useful
...
to outsides of 'tc.c' into 'tcvar.h'.
1999-11-15 03:41:49 +00:00
kleink
ac88fcbb17
G/c orphaned prototype.
1999-11-15 02:00:08 +00:00
thorpej
4ab7f024dc
Fix a couple of pmap_enter() calls I missed.
1999-11-15 00:06:58 +00:00
augustss
3d275209e8
Add dev and function locators to cardbus devices.
1999-11-14 23:21:48 +00:00
augustss
1d9fa6b482
Add mbe man page.
1999-11-14 23:19:10 +00:00
augustss
56a407c265
Mention cardbus.
1999-11-14 23:14:45 +00:00
augustss
53db2042dc
Mention cardbus(4) and usb(4).
1999-11-14 22:58:45 +00:00
augustss
ca89299dd3
Add cardbus.4
1999-11-14 22:54:40 +00:00
augustss
b46c4872fe
Add a rudimentary cardbus man page.
1999-11-14 22:52:08 +00:00
augustss
06e478f68a
Add the actual mhzc man page as well. :)
1999-11-14 22:42:00 +00:00
augustss
af0df40ada
Provide a rudimentary man page for the mhzc driver.
1999-11-14 22:40:13 +00:00
augustss
5d1d30a4b2
Add some caveats.
1999-11-14 20:03:25 +00:00
thorpej
52806c2c2a
Fix typo in previous.
1999-11-14 19:20:27 +00:00
explorer
3dde14339c
add stub thread functions. These are not (yet) used, and always return
...
success. They are weak-aliased, so if linked with a real pthreads library
the correct magic will happen.
1999-11-14 18:34:15 +00:00
explorer
5e5a72ffef
missing ;
1999-11-14 18:19:57 +00:00
soren
b202ac1466
Allow SCSI_DELAY to be shorter than 2 seconds.
1999-11-14 18:06:09 +00:00
soren
b0be8ac6ea
Match ECP devices as well.
1999-11-14 18:03:38 +00:00
eeh
96ff315a99
Change one more instance of access_type' to
flags' in pmap_enter().
1999-11-14 17:25:01 +00:00
augustss
94bbe69eb3
Add a first shot at a pnpbios man page. Update other man pages to reflect
...
the fact that devices can attach to pnpbios.
1999-11-14 17:02:20 +00:00
veego
e3d814876c
Remove lib/bsd and lib/irs before we import it.
1999-11-14 16:37:20 +00:00
veego
482b2adc6e
Avoid expanding NetBSD RCS IDs.
1999-11-14 16:27:08 +00:00
pk
c528d95e74
Remove unnecessary inclusion.
1999-11-14 16:23:36 +00:00
sommerfeld
3fc2334c5d
After some light testing, it worked for me, so...
...
Commit mrg's fix from pr8791: don't un-export filesystems which are just going
to be re-exported; instead, do additions, then deletions.
1999-11-14 14:37:16 +00:00
drochner
d3d6c8d951
add commented out pnpbios entries
1999-11-14 13:31:04 +00:00
takemura
d7d5ca87f3
Support the frame buffer in which white pixel value is zero.
1999-11-14 12:33:11 +00:00
veego
5437a4d764
Don't create the bind4 compat scripts for reload and restart here.
...
They will be created by an import which also contains the manpages.
1999-11-14 08:04:34 +00:00
thorpej
2cfc62b5ae
Update for pmap API change.
1999-11-14 02:39:09 +00:00
thorpej
158b1a55f1
Add an "index" locator to the pnpbios `bus'. This allows us to wire down
...
device instances if there are more than one of a given type in the PnP
BIOS device table.
Add a pnpbios attachment for `lpt'.
1999-11-14 02:15:50 +00:00
augustss
5f8274b5a6
Get transfer status right on short transfers. From FreeBSD, Nick Hibma.
1999-11-13 23:58:01 +00:00
mhitch
ed2a0c2648
Fix an additonal return in pmap_enter() that wasn't returning a value.
...
Use flags (formerly access_type) to set page reference/modified status.
Don't use the PG_CLEAN flag from the UVM when checking to see if a
writeable page has been marked as modified.
When updating page status to modified from the UTLBmiss handler, set
the referenced bit in addition to the modified bit.
1999-11-13 23:16:39 +00:00
mhitch
27a8dc486b
Use console_debugger() to enter DDB on a break, instead of Debugger(). It
...
can now be controlled with sysctl on the 3100 & 5000/200.
1999-11-13 22:58:11 +00:00
mhitch
babe07a8b5
When called from the debugger, the keyboard handler was returning 0 due to
...
a missed change when kdbMapChar() was changed to return a string. Return
the correct chacter from the string.
1999-11-13 22:56:56 +00:00
thorpej
728d672378
Backout my libsa changes.
1999-11-13 21:33:12 +00:00
matt
d4c19a672a
adapt to jason new pmap_enter change
1999-11-13 21:32:25 +00:00
thorpej
ee03a4e035
Backout my libsa changes.
1999-11-13 21:29:12 +00:00
thorpej
36ff5d93e8
Backout my libsa changes.
1999-11-13 21:17:56 +00:00
thorpej
1e544cc5eb
Backout my libsa changes.
1999-11-13 21:06:46 +00:00
matt
3ca3e51df8
Nuke TCP_COMPAT_42. Use sysctl to enable it if required.
1999-11-13 20:56:14 +00:00
matt
3891060822
Nuke TCP_COMPAT_42. Use sysctl to set it as needed instead.
1999-11-13 20:55:12 +00:00
matthias
b45486b2a2
Make this work again by adding XS_CTL_ASYNC to the SCSI requests in
...
se_ifstart and se_recv.
1999-11-13 18:03:34 +00:00
matthias
2c3b2bd9f9
Make copystr return ENAMETOOLONG if maxlen == 0 (pointed out by Charles).
1999-11-13 18:01:27 +00:00
perry
a228a21023
no longer needed
1999-11-13 17:58:41 +00:00