mycroft
9a6b48c680
Fix compilation error due to cpp headaches.
1999-11-03 22:13:20 +00:00
ragge
94b8f863fa
Don't use structs for BI space definitions, use offsets.
1999-11-03 21:57:40 +00:00
matt
31ba134e32
use __vax__ and __i386__ instead of vax and i386
1999-11-03 20:50:17 +00:00
mycroft
b2ecb4ad21
In copy*str(), explicitly check for maxlen==0, rather than implicitly making it
...
act like 2^32.
Tested by: simonb
1999-11-03 16:21:22 +00:00
chs
f13d3f5b3b
from jason:
...
avoid biodone()ing the original buf twice when a component buf
gets an error. fixes PR 8704.
1999-11-03 16:04:03 +00:00
mycroft
d2b362b685
Only update the cursor state if it's enabled.
1999-11-03 15:55:27 +00:00
chs
b2eeefd2b9
mycro-optimization (ie. from charles).
1999-11-03 15:32:45 +00:00
enami
144cdf4dd7
Use tabs to indent.
1999-11-03 14:55:53 +00:00
mycroft
4f1f2c6398
Fix silly error that caused the secondary channel to be ignored if the primary
...
channel was disabled.
1999-11-03 14:54:07 +00:00
jdolecek
34eaf12c8f
adapt to latest scsipi changes
...
XXX this is not tested, but should be okay
1999-11-03 14:16:33 +00:00
jdolecek
9c9df2bf71
adapt to latest scsipi changes
...
XXX this is not actually tested, but should be okay
1999-11-03 14:12:19 +00:00
enami
60ba1b7481
Do options<space><tab> magic.
1999-11-03 14:09:53 +00:00
enami
022e07f47f
make sure to sync mask bit and array index.
1999-11-03 13:55:41 +00:00
takemura
c3db78c27f
Always override color table.
1999-11-03 13:48:07 +00:00
ad
0f1d754327
QIOCGMAP is what I like to call QIOCGINFO during my more confused moments,
...
but other people can't be expected to know that. Noted by mhitch.
1999-11-03 13:45:11 +00:00
mycroft
3c702c1d8d
Recognize the 3c595, and use `ex' for 3c90x now.
1999-11-03 12:38:54 +00:00
augustss
3b576cc6b2
Update.
1999-11-03 12:11:26 +00:00
shin
59131de0d3
add rasops15, rasops16 to fb
1999-11-03 11:40:58 +00:00
mycroft
dfc00b5b24
Back out the GDT changes in the previous. Didn't mean to commit that.
1999-11-03 09:55:32 +00:00
mycroft
1ee8f66dfe
Picking a few nits...
...
* The direction flag wasn't set right in the presence of ROMDEBUG.
* There were missing data32's.
* We weren't as careful as we should be with relocations.
1999-11-03 09:28:15 +00:00
jdolecek
3999099463
proc_sysctl(): initialize ptmp to NULL - theoretically, ptmp might
...
be used uninitialized when name[0] != PROC_CURPROC and
proclists[0]->pd_list == NULL; actually, this can never happen
(proclists[0] == &allproc), but the compiler can not know this, so it
complains
1999-11-03 09:12:15 +00:00
takemura
199c644d0b
Remove disused lines, 'disable clock interrupts (until startrtclock()).
1999-11-03 04:00:04 +00:00
he
5d30149598
Provide multiple inclusion protection.
1999-11-03 00:47:21 +00:00
jdolecek
8b2a23fb1a
db_cmd_list(): variable ``width'' might have be used uninitialized, initialize
...
it to 0
1999-11-02 23:53:31 +00:00
augustss
3fc5780b19
Allow irq 15 since some clones use it.
1999-11-02 23:35:02 +00:00
thorpej
3b8a1e5d8c
Implement PT page stealing for extreme low memory conditions. This
...
has the side-effect of eliminating a locking protocol error in some
memory-desperation code in pmap_physpage_alloc().
1999-11-02 18:09:31 +00:00
augustss
361b083d4c
Shorten some delay()s. From WITEK Wnuk <witek@atari.org>
1999-11-02 17:48:01 +00:00
augustss
35483ee3bf
Set mixer controls after a reset.
1999-11-02 17:05:05 +00:00
augustss
b952f8727b
Print a little more information when attaching.
1999-11-02 16:54:27 +00:00
drochner
e6d27a3a83
correct debug printf() to make it compile with DISK_DEBUG again,
...
closes PR kern/8718 by Takahiro Kambe
1999-11-02 16:52:25 +00:00
kleink
b536890c88
Add a mixer control for the Master Volume Mute knob.
1999-11-02 12:11:42 +00:00
augustss
72a864f78c
Add the midibus attribute to the fms driver.
1999-11-02 11:58:06 +00:00
takemura
5cba30bd7e
Wsdisplay use small font, VT220 8x10.
1999-11-02 10:36:52 +00:00
takemura
e68b59e2c6
Add new function, bicons_printf().
1999-11-02 10:33:05 +00:00
takemura
8f94bda30c
Add new font sets - VT220 8x8 and 8x10.
...
I brought them from arch/i386/isa/pcvt/Util/fonts.
You can specify FONT_VT220L8x8 or FONT_VT220L8x10 in a configuration file.
1999-11-02 10:25:22 +00:00
erh
5779957787
undo confusion.
1999-11-02 08:02:43 +00:00
chs
4659d58793
return an error if `len' is 0.
1999-11-02 07:45:59 +00:00
scottr
a15f217211
[Redo] Allow rates higher than 57600, per PR 8070. Change originally
...
from Bill Studenmund.
1999-11-02 06:51:45 +00:00
chs
f8d11b005f
only clear pcb_onfault if we actually set it. fixes PR 7838.
1999-11-02 06:48:33 +00:00
scottr
9894ab10b4
[Redo] Catch up with recent changes to scsipi flags. Closes PR 8675.
1999-11-02 06:42:26 +00:00
soren
bc18b45323
Clean up attachment printing a bit.
1999-11-02 05:41:27 +00:00
soren
09c41837ce
Fix crash when both 1370 and 1371/1373 devices are configured.
...
Update documentation links.
XXX The initial volume of the 1371 mixers is set to 255. Should be ~200.
1999-11-02 05:40:59 +00:00
thorpej
c8852145bc
Get fms MPU and OPL module inclusion right.
1999-11-02 00:29:20 +00:00
augustss
04235d23f6
Enable fms device again.
1999-11-01 23:27:56 +00:00
augustss
3c40153ea9
Fold some long lines and make it compile with the new auconv functions.
1999-11-01 23:26:58 +00:00
thorpej
b03d459244
From Ross Harvey:
...
- Fix a bug where IPL wasn't being lowered to process SIRs, which
effectively caused them to be processed at splserial(), and loop
over the ssir, like we do for astpending.
- Optimize the flow of exception_return().
1999-11-01 22:41:55 +00:00
mycroft
ee3ba7ce7a
Fix obvious typos.
1999-11-01 22:34:37 +00:00
is
13c27090e8
Don't call the sc->sbic_dmago() function if the data length is zero.
...
This avoids a zero pointer dereference, which fixes PR 8571.
Make sbic_dmago() report selection timeouts to the upper layer.
This makes sbic really work again with 1.4L.
1999-11-01 22:22:33 +00:00
augustss
7c8206c662
Add a missing file for the fms driver.
1999-11-01 21:54:12 +00:00
augustss
6d6d495cfa
Disable fms driver for the moment.
1999-11-01 21:44:35 +00:00