Mike Spengler
9ce49f6de3
Allow configuration of up to 256 network interfaces per physical interface -
...
just like the docs say it should.
1999-05-10 23:02:29 +00:00
Mike Spengler
8abd11a431
Enable PCI bus master during attach in case the BIOS hasn't done it for us.
1999-05-10 22:53:45 +00:00
Paul Richards
9adcb188e5
Set the bus master bit.
...
Submitted by: Ted Faber
1999-05-10 22:39:37 +00:00
Jun Kuriyama
e948f24a53
Fix typo.
...
Submitted by: Hiroki Sato <hrs@geocities.co.jp>
1999-05-10 22:01:38 +00:00
Bill Paul
f9d553adf5
Fix ypxfr so that it can be run from cron.
...
Patch submitted by: Dan Nelson <dnelson@emsphone.com>
1999-05-10 20:55:29 +00:00
Matt Jacob
dc06ef2775
add and document seteotmodel and geteotmodel commands
1999-05-10 20:05:19 +00:00
Matt Jacob
eaef7baa81
Correct a typo about driver state.
...
Add new get/set eot model mt ioctl values.
1999-05-10 19:49:59 +00:00
Peter Wemm
dc97381e37
Update one set of comments.. s/so_q0/so_incomp/ and s/so_q/so_comp/ (that's
...
incomplete and complete connections I think)
1999-05-10 18:15:40 +00:00
Poul-Henning Kamp
ce7299939b
correct params for sndmmap(). Don't bogo-initialize fields we don't
...
understand.
1999-05-10 18:13:30 +00:00
Poul-Henning Kamp
784fc12f7b
Use NODEV instead of -1
1999-05-10 18:10:08 +00:00
Don Lewis
bd508d391b
Fix descriptor leak provoked by KKIS.05051999.003b exploit code.
...
unp_internalize() takes a reference to the descriptor. If the send
fails after unp_internalize(), the control mbuf would be freed ophaning
the reference.
Tested in -CURRENT by: Pierre Beyssac <beyssac@enst.fr>
1999-05-10 18:09:39 +00:00
Poul-Henning Kamp
38fc822d7f
Don't go looking for weird #includes if major isn't a macro.
1999-05-10 18:06:37 +00:00
Doug Rabson
41787a353d
Add missing suspend/resume methods.
1999-05-10 17:56:23 +00:00
Nick Hibma
b57947c947
Remove hack to accept French spelling of METHOD (METHODE)
1999-05-10 17:45:49 +00:00
Peter Wemm
7f2d5fc4f2
Move the mfs_getimage() prototype to mfs_extern.h duplicating it
...
everywhere.
1999-05-10 17:12:45 +00:00
Doug Rabson
8b2970bbe6
* Augment the interface language to allow arbitrary C code to be 'passed
...
through' to the C compiler.
* Allow the interface to specify a default implementation for methods.
* Allow 'static' methods which are not device specific.
* Add a simple scheme for probe routines to return a priority value. To
make life simple, priority values are negative numbers (positive numbers
are standard errno codes) with zero being the highest priority. The
driver which returns the highest priority will be chosen for the device.
1999-05-10 17:06:14 +00:00
Doug Rabson
276794a4a4
Superceded by makedevops.pl
1999-05-10 16:45:19 +00:00
Peter Wemm
d8accc82b4
Serves me right for doing this by inspection and then a build afterwards
...
on a remote machine. Sigh..
1999-05-10 16:36:42 +00:00
Peter Wemm
3ec911d1bd
Fix 'assignment used as truth value' on alpha.
1999-05-10 16:06:32 +00:00
Peter Wemm
8b9b1d41c5
Don't do a nested extern for mfs_getimage()
1999-05-10 16:04:52 +00:00
Peter Wemm
185b8caf8a
Explicit brace to avoid nested else warnings
1999-05-10 16:02:11 +00:00
Peter Wemm
37a12f1aca
Explicit braces to avoid nested else warnings
1999-05-10 16:00:56 +00:00
Peter Wemm
72cd2e69e6
Add some explicit parens to avoid && within || warnings
1999-05-10 16:00:01 +00:00
Peter Wemm
54960c85bb
Fix warnings (unused vars)
1999-05-10 15:54:58 +00:00
Peter Wemm
a82aa40963
Fix warnings (unused vars, long != int in printf)
1999-05-10 15:53:33 +00:00
Peter Wemm
d8a5f22d73
Fix warnings (I hope)
1999-05-10 15:51:23 +00:00
Peter Wemm
bda70455bf
Give 'i' a type (int).
1999-05-10 15:48:01 +00:00
Peter Wemm
2c649d3327
Unused variable
1999-05-10 15:46:38 +00:00
Dag-Erling Smørgrav
4a5222d798
MFS: indent-assisted style cleanup.
1999-05-10 15:25:50 +00:00
Peter Wemm
8dbdf6eec6
#include "pci.h" for the build dir, not <pci.h>
1999-05-10 14:12:26 +00:00
Nick Hibma
4be5179ace
Remove VIA USB controller (was '#if 0' out), to make sure
...
no one adds it back. Chip handled by uhci_pci.c .
1999-05-10 14:07:14 +00:00
Doug Rabson
1d3710bdf3
Adjust console stuff now that makedev is no longer a macro.
1999-05-10 14:01:35 +00:00
Peter Wemm
059af14f8e
Don't assume branch heads are alive.. (related to previous change to the
...
older 1.9.26 baseline)
1999-05-10 13:49:51 +00:00
Doug Rabson
973b49bd1a
Remove obsolete 'config kernel' line.
1999-05-10 13:30:51 +00:00
Peter Wemm
0749bbe267
Ack! I deleted "struct", not "const".. Oh boy...
...
Submitted by: jkh
1999-05-10 12:38:41 +00:00
Bruce Evans
149c3aa60a
[Forgot to commit this in the batch a few days ago.]
...
Fixed profiling of elf kernels. Made high resolution profiling compile
for elf kernels (it is broken for all kernels due to lack of egcs support).
Renaming of many assembler labels is avoided by declaring by declaring
the labels that need to be visible to gprof as having type "function"
and depending on the elf version of gprof being zealous about discarding
the others. A few type declarations are still missing, mainly for SMP.
PR: 9413
Submitted by: Assar Westerlund <assar@sics.se> (initial parts)
1999-05-10 10:51:25 +00:00
Bruce Evans
7a9757f3a5
Detect PCI device IDs for latest boards. Simplified the ID comparisons.
...
Submitted by: Ivan Passos <ivan@cyclades.com> (rewritten by me)
1999-05-10 10:23:40 +00:00
David E. O'Brien
ce68c9929a
Move sysctl/ to src/sbin/ where it now belongs.
...
Repository copied by: Peter
1999-05-10 10:17:22 +00:00
Roger Hardiman
458b25e55b
Support LifeView FlyVideo 98 cards. Use EEPROM for card autodetection.Use
...
bttv's audio mux values.
Automatically locate the EEPROM i2c address and read the subsystem_vendor_id
from EEPROM and not the PCI registers.
Add NSMBUS checks around smbus/iicbus i2c bus code
Add GPIO mask for the audio mux to each card type.
Add CARD_ZOLTRIX and CARD_KISS from mailing list searches.
Tested by: Paul Reece <paul@fastlane.net.au>,
Ivan Brawley <brawley@internode.com.au> and
Gilad Rom <rom_glsa@ein-hashofet.co.il>
1999-05-10 10:10:13 +00:00
Roger Hardiman
af36b88b1b
Update card type to support GPIO mask
...
Add NSMBUS checks around smbus/iicbus i2c bus code.
1999-05-10 10:08:50 +00:00
Roger Hardiman
2a3fb485f9
Add #if (NSMBUS>0) checks around smbus/iicbus i2c bus code.
1999-05-10 10:08:05 +00:00
KATO Takenori
f77f865c0f
Fixed for COM_MULTIPORT option. Members flags and unit should be
...
obtained via appropriate functions.
1999-05-10 09:37:37 +00:00
KATO Takenori
871d777f45
Sync with sys/isa/sio.c revision 1.240.
1999-05-10 09:14:40 +00:00
KATO Takenori
efaba47853
Sync with sys/i386/isa/isa_dma.c revision 1.3.
1999-05-10 09:09:08 +00:00
KATO Takenori
e45bad2cd7
Sync with sys/i386/isa/if_ed.c revision 1.152.
1999-05-10 09:06:12 +00:00
KATO Takenori
cd6e9ed786
Sync with sys/i386/isa/clock.c revision 1.133.
1999-05-10 09:05:01 +00:00
KATO Takenori
50b94b34bd
Sync with sys/i386/conf/options.i386 revision 1.113.
1999-05-10 09:03:10 +00:00
KATO Takenori
0bb99e2a71
Sync with sys/i386/conf/majors.i386 revision 1.74.
1999-05-10 09:02:23 +00:00
KATO Takenori
8084ded63f
Sync with sys/i386/conf/files.i386 revision 1.239.
1999-05-10 09:01:19 +00:00
KATO Takenori
e453f04978
Sync with sys/i386/conf/GENERIC and Makefile.i386 revisions 1.169 and
...
1.152, respectively.
1999-05-10 09:00:29 +00:00