Roger Hardiman
6d076bb425
Submitted by: Nicolas Souchu <nsouch@freebsd.org>
...
Added support required by bt848 driver for MSP34xx audio chip
1999-01-28 15:50:24 +00:00
KATO Takenori
32373eaf9b
Oops, added parentheses after `else'.
...
Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
1999-01-28 13:32:07 +00:00
Mark Newton
27286ca9a8
Sun Bug ID 1251858 (on http://sunsolve1.sun.com ) discusses the way that
...
Sun implemented iBCS2 compatibility on Solaris >= 2.6: The emulator
runs in user-mode, patching the LDT so that client programs making
syscalls through the old iBCS2 call gate get handled by the emulator
process. Unemulated syscalls therefore need their own call-gate that
bypasses the emulator. Sun chose LDT entry 4 to implement this, which
is what we've been using as LUDATA_SEL, so we need to change LUDATA_SEL
if we want to run Solaris executables.
Discussed with: Mike Smith
1999-01-28 11:45:49 +00:00
KATO Takenori
22cd7960a2
The "easy" fixe for compiling the kernel -Wunused: remove unreferenced
...
local variable.
1999-01-28 11:36:22 +00:00
KATO Takenori
4d8efbff69
The "easy" fixes for compiling the kernel -Wunused: remove unreferenced static
...
and local variables, goto labels, and functions declared but not defined.
1999-01-28 11:24:36 +00:00
Kazutaka YOKOTA
ffba82a9ae
- Fixed the bug which always ignored Ctrl-Pause/Break on the AT 101
...
keyboard.
- Translate some keycode for the 84 keyboard so that the 84 keyboard
and the 101 keyboard become more compatible in terms of keycodes.
- Updated the built-in keymaps so that it is in line with the recent
changes in share/syscons/keymaps.
- Added some comment on the Pause/Break key on the 101 keyboard.
1999-01-28 10:55:55 +00:00
KATO Takenori
ef74e9a4eb
Sync with sys/i386/isa/wd.c revision 1.187.
1999-01-28 09:21:35 +00:00
KATO Takenori
965dc9cd45
Sync with sys/i386/isa/if_ed.c revision 1.149.
1999-01-28 09:19:16 +00:00
KATO Takenori
a09bd8dae6
Sync with sys/i386/isa/diskslice_machdep.c revision 1.33.
1999-01-28 09:18:21 +00:00
KATO Takenori
3109b17f32
Sync with sys/i386/i386/userconfig.c revision 1.127.
1999-01-28 09:13:20 +00:00
KATO Takenori
9a6ef21e00
Sync with sys/i386/conf/GENERIC revision 1.144.
1999-01-28 09:12:05 +00:00
Greg Lehey
bb1d6cfa3c
build_write_request: only fail if all plexes are down, instead of if
...
any of them are down.
Reported-by: dg
1999-01-28 07:00:55 +00:00
Greg Lehey
a1c1b26d88
Fix some format breakage before bde finds out
...
vinum_scandisk: check not only drive error, but also drive state,
before accessing the drive.
drivecmp: Remove warning messages by Backing out overly constant
declarations in revision 1.9.
1999-01-28 06:59:27 +00:00
Jordan K. Hubbard
652375d1e5
Make builtin's state-aware in loader.
...
Submitted by: Daniel C. Sobral
PR: 9663
1999-01-28 06:33:03 +00:00
Justin T. Gibbs
dd3afbd452
Correct test in poll loop for determining that the mailbox is free to
...
accept a new command.
1999-01-28 03:30:02 +00:00
Matthew Dillon
e3870274b4
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-28 02:26:20 +00:00
Matthew Dillon
0a5e03dda5
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-28 01:59:53 +00:00
Matthew Dillon
485111b55b
Fix parenthesization, but the code still looks wrong.
1999-01-28 01:33:02 +00:00
Matthew Dillon
8aef171243
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-28 00:57:57 +00:00
Matthew Dillon
7191deb01e
Fix but in devfs_strategy(). Switch cases were falling through
...
instead of breaking out, so a VCHR devices would run the VCHR
routine and then fall through and run the VBLK routine. Fixed.
1999-01-27 23:49:45 +00:00
Matthew Dillon
fe08c21a53
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile.
This commit includes significant work to proper handle const arguments
for the DDB symbol routines.
1999-01-27 23:45:44 +00:00
Matthew Dillon
0bcef6efa1
Turn on -Wall and -Wcast-qual
1999-01-27 22:53:58 +00:00
Matthew Dillon
cdb96ab470
Fix nasty bug in nfs_access(). A conditional was if (a = b) instead of
...
if (a == b).
1999-01-27 22:45:49 +00:00
Matthew Dillon
53b3bd0e25
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-27 22:45:13 +00:00
Matthew Dillon
831a80b0d5
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-27 22:42:27 +00:00
Matthew Dillon
be317f36a9
Fix if (a = b) conditional that should have been if (a == b)
1999-01-27 22:16:46 +00:00
Matthew Dillon
39d0485c23
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-27 22:16:15 +00:00
Matthew Dillon
d254af07a1
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-27 21:50:00 +00:00
Matthew Dillon
598217c491
Fix array index of signed char to cast to unsigned char and then to int.
...
Also general const cleanup.
1999-01-27 21:36:14 +00:00
Matthew Dillon
a06791bc90
Fix getenv() comparison against '=' ... was *cp = '=' instead of
...
*cp == '='.
1999-01-27 21:24:50 +00:00
Matthew Dillon
b4e36adf1c
Fix warnings preparing for -Wall -Wcast-qual
...
Also disable one usb module in LINT due to fatal compilation errors,
temporary.
1999-01-27 20:09:21 +00:00
Matthew Dillon
d7bcbf6358
Add parens to SMBPRI, fixing bug in tsleep() call that OR's SMBPRI with
...
something else.
1999-01-27 19:58:53 +00:00
Matthew Dillon
a56d629240
Fix PPBPRI #define - it was missing parenthesis which messed up a
...
call to tsleep() in dev/ppbus/ppbconf.c. Also fixup initializers.
1999-01-27 19:44:05 +00:00
Matthew Dillon
6a59f7d85f
Fix '|' that was supposed to be '||'
1999-01-27 19:35:33 +00:00
Julian Elischer
0a702d0a28
Patch from Soeren to remove inapropriate interrupt messages
...
also a bit of a BDE patch in there I beleive. Backs out a fix I needed for Cyrix support
early on but it turns out that a later fix in the cyrix support made it un-needed.
1999-01-27 19:32:34 +00:00
Matthew Dillon
b28536d503
Added c_caddr_t: const char * version of the char * caddr_t, for
...
use in -Wall / -Wcast-qual fixes.
1999-01-27 19:01:44 +00:00
Matthew Dillon
a1c1e16ada
Changes to support -Wall, -Wcast-qual. Had to make physical code changes
...
in db_lookup() to avoid the *cp = 0 / *cp = ':' combo ( temporary
nul-terminate-then-restore-original ) on a const char * string.
1999-01-27 19:00:49 +00:00
Matthew Dillon
cc6e054933
Add missing declarations to fix error with LINT compile
1999-01-27 18:36:49 +00:00
Matthew Dillon
5e24f1a2f6
Remove unintended trigraph sequences in comments for -Wall
1999-01-27 18:19:53 +00:00
Eivind Eklund
8d25715cfb
Add ISA PnP support, now that we have the space for it.
1999-01-27 15:34:25 +00:00
KATO Takenori
f274af0063
Clean up LD-BDN reset code(PC-98).
...
Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
1999-01-27 11:05:12 +00:00
Bruce Evans
fea579e94e
Don't forget to count context switches in yield().
1999-01-27 10:14:05 +00:00
Bruce Evans
dc34e67676
Include <sys/select.h> -- don't depend on pollution in <sys/proc.h>.
1999-01-27 10:10:03 +00:00
KATO Takenori
9e0c98036f
Sync with sys/i386/isa/sio.c revision 1.225.
1999-01-27 08:26:16 +00:00
KATO Takenori
75929847ae
Sync with sys/i386/conf/Makefile.i386 revision 1.138.
1999-01-27 08:25:19 +00:00
KATO Takenori
e7d91a508f
Initialize the member atr_buffer.
...
Pointed out by: Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp>
1999-01-27 08:22:08 +00:00
Julian Elischer
b5def701c7
Compile the linux module with the same flags as the kernel.
...
(oops).
Submitted by: "Richard Seaman, Jr." <dick@tar.com>
1999-01-26 21:29:01 +00:00
Bill Paul
d5901891f4
When selecting the correct EEPROM offset to use for probing the station
...
address, account for cards which report the Texas Instruments PCI vendor ID
in addition to Compaq and Olicom. (I don't actually have a card that
reports the TI vendor/device ID, but it appears that some Racore adapters
work this way, and failing to account for it when we have the ID listed
in the supported devices list is a bug.)
1999-01-26 15:18:26 +00:00
Kazutaka YOKOTA
6dab3d1e54
Oops, one line was accidentally commented out in the previous commit.
1999-01-26 10:00:02 +00:00
Kazutaka YOKOTA
44ad10ea41
Pull down the splash screen when someone is about to read from the
...
keyboard. Do this in scread(), rather than in scopen().
1999-01-26 09:58:37 +00:00