mhitch
c97e01a899
gcc4 fixes: need to include stdlib.h; fix prototype and definition of
...
local error() function.
2006-08-04 01:48:02 +00:00
mhitch
fa97ed2f83
More gcc4 "uninitilized" variables.
2006-08-04 01:45:05 +00:00
mhitch
425bfd4d05
gcc4 "uninitialized" variables; just like pmap_motorola.c and amiga/pmap.c.
2006-08-04 01:44:12 +00:00
bjh21
62d6ab40d3
Support for timecounters on acorn32, supplied by Mike Pumford. Only
...
compile-tested by me, but he promises it works.
2006-08-03 23:19:06 +00:00
christos
cf3258890d
PR/34129: Andreas Gustafsson: Nonblocking write to pty can return 0
...
If we cannot write on the slave side, always return EWOULDBLOCK in the
non-blocking case, because we don't know that the buffer we started
writing is actually in a system call boundary.
2006-08-03 22:51:05 +00:00
christos
740d87bac5
adjust resid in one more place.
2006-08-03 22:06:55 +00:00
christos
75300d10c2
don't drop characters that we've copied in when we block.
2006-08-03 22:03:18 +00:00
mhitch
977da07ffe
gcc4 checks for and warns of matching constraints that don't specify
...
a register operand. Remove the matching constraint and change the output
operand constraint from "=m" (write-only) to "+m" (read-write).
2006-08-03 20:32:07 +00:00
mhitch
23e6dfaccf
Add a new ADOS partition type, "RAI?" to specify a RaidFrame partiion
...
which can then be autoconfigured. Currently can only use the 'c'
partition of the raid* device, since there will be no RDB on the device.
2006-08-03 20:29:54 +00:00
mhitch
1553e3ad3f
gcc4 uninitialized warning - initialize the darned thing like pmap_motorola.c.
2006-08-03 20:26:24 +00:00
mhitch
7f15b0ef11
gcc4 checks for and warns about specifying a general register constraint
...
for operands that won't accept an address register. Change constraint
to specify only a data register.
2006-08-03 20:24:57 +00:00
bsh
f3f5bb0be8
regen
2006-08-03 03:06:32 +00:00
bsh
065a50f8cf
Device 10de:026c is not AC-97 controller but nForce430 HD Audio controller.
...
Pointed out by Brad. Thanks.
2006-08-03 03:01:39 +00:00
hubertf
db43815c20
Add commented-out "joy* at eap?" & point people at eap.4 before enabling.
...
Per discussion with drochner@
2006-08-03 00:19:21 +00:00
reed
242dae6299
Fix comment, removed some periods at end of a couple comments (not all),
...
and alphabetize "ral" before "re".
This will make it easier to diff with GENERIC_LAPTOP.
No real changes.
2006-08-02 16:24:29 +00:00
reed
35728fe8e7
Fix some comments, tabs or indenting, and some ordering
...
to make this easier to diff with the GENERIC config.
No real changes.
2006-08-02 16:20:45 +00:00
rpaulo
d9e2b32d75
Don't read the firmware twice. Noticed by Nick.
2006-08-02 13:58:39 +00:00
jmcneill
7c1d2c6776
Forgot to commit this last night -- add the unichromefb(4) driver.
2006-08-02 11:26:16 +00:00
jmcneill
165e6acd89
Allow unichromefb(4) to be the system console.
2006-08-02 01:44:50 +00:00
jmcneill
051b75db82
Add work-in-progress framebuffer console driver for the VIA UniChrome
...
integrated graphics family.
2006-08-02 01:44:09 +00:00
he
788b068ad5
Bump SYMTAB_SPACE so that it fits again.
2006-08-01 22:21:19 +00:00
martin
61138efdd6
regen
2006-08-01 21:05:32 +00:00
martin
796cceed8d
Adapt to latest fhandle_t changes.
...
Pointed out by Havard Eidnes.
2006-08-01 21:05:14 +00:00
xtraeme
08e3be34b6
Match nForce3 250 SATA2.
2006-08-01 20:38:50 +00:00
xtraeme
1b6aac49b2
regen
2006-08-01 20:37:43 +00:00
xtraeme
3b17bf7207
Add nForce3 250 SATA2.
2006-08-01 20:37:02 +00:00
bsh
b6116cb922
Support nForce430's audio.
...
(I have tested this only with nFroce410, not with nFroce430)
2006-08-01 18:31:53 +00:00
martin
a0680cae8a
If the card presents 64bit memory, map it as that.
...
Fixes PR kern/34045.
2006-08-01 18:11:32 +00:00
bsh
a271f8d4ca
regen
2006-08-01 17:29:18 +00:00
bsh
ea0e607e09
add an another device ID for AC-97 controller in nForce430 (MCP51).
...
XXX: I found this ID on MSI K8NGM-V, which has nForce410. Maybe 0x26b is
for 410 and 0x26c for 430?
2006-08-01 17:20:51 +00:00
lukem
755b4414f2
If there's any wd quirks in use, display them.
2006-08-01 07:19:07 +00:00
hubertf
ded0447fa8
spc(4) can also attach to pcmcia(4), as was already in hpcmips/GENERIC
...
for quite some time. Add it to all systems that have pcmcia SCSI.
Pointed out by Björn Johannesson <rherdware@yahoo.com> in private mail,
OK'd by matt@
2006-07-31 23:29:54 +00:00
he
ade3eb1a11
Also comment out audio* at audiobus? now that no audio device is available.
2006-07-31 22:53:43 +00:00
wiz
a1fd1fd937
Sort twa before twe.
2006-07-31 22:23:09 +00:00
mrg
95543a8e6e
add a new "biosmem_implicit" variable that is set when a bootloader
...
info parser sets "biosbasemem" and "biosextmem" from. check for this
when probing memory size, rather than biosbasemem/biosextmem being
zero which is no longer true. also, make the REALBASEMEM/REALEXTMEM
options work properly with multiboot-booted kernels. fixes PR#33918.
2006-07-31 20:59:07 +00:00
bjh21
19d3be8004
Fix a typo that was stopping this compiling.
2006-07-31 20:52:13 +00:00
bjh21
e9b4035b9a
Correct last commit to use correct variable name in hpux_sys_getpgrp2().
2006-07-31 20:39:34 +00:00
christos
fa94c5cda1
mention the correct PR/33725
2006-07-31 18:40:41 +00:00
christos
596f06d2d9
workaround for PR 33918
2006-07-31 17:07:27 +00:00
martin
a5ab452935
Welcome to 3.99.24 - filehandle syscalls changed
2006-07-31 16:36:38 +00:00
martin
b4cb63a646
Make filehandles opaque to userland
2006-07-31 16:34:42 +00:00
martin
f956f13e21
Step 1 to make filehandles completely opaque to userland
2006-07-31 16:32:51 +00:00
ad
39e6d49dad
tcfb_cnattach(): pass the slot address through TC_PHYS_TO_UNCACHED() in
...
case the PROM hands us a physical or KSEG0 address.
2006-07-31 00:19:05 +00:00
jmcneill
82c477c076
regen
2006-07-30 22:41:52 +00:00
jmcneill
9d27901109
Add VIA VT3314 (CN900) UniChrome integrated graphics
2006-07-30 22:41:38 +00:00
ad
a0c8510a86
Single-thread updates to the process credential.
2006-07-30 21:58:11 +00:00
oster
1c1c99da5c
Regen
2006-07-30 21:09:54 +00:00
oster
8084d0b099
Recognize another Intel PRO/100 VM Network Controller.
2006-07-30 21:09:00 +00:00
bouyer
0a5662efed
Add twa(4) and ld at twa
2006-07-30 17:55:31 +00:00
bouyer
7877547494
Add twa(4) and ld at twa where it makes sense.
2006-07-30 17:53:50 +00:00