diff options
author | jhb <jhb@FreeBSD.org> | 2002-11-08 19:34:26 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-11-08 19:34:26 +0000 |
commit | 257ad7107bfd2b27f906b00c852cec5ca322ca23 (patch) | |
tree | 76734ead777b56b9230708b4f4f106e06c8b7953 /sys | |
parent | 1a1a58e2251278efaccf1c10f3450b28eddf0152 (diff) | |
download | FreeBSD-src-257ad7107bfd2b27f906b00c852cec5ca322ca23.zip FreeBSD-src-257ad7107bfd2b27f906b00c852cec5ca322ca23.tar.gz |
Move rc(4) over to MI notes and enable it as a MI module.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/NOTES | 5 | ||||
-rw-r--r-- | sys/i386/conf/NOTES | 5 | ||||
-rw-r--r-- | sys/modules/Makefile | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 5a4f83e..c5f4380 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1750,6 +1750,7 @@ hint.gusc.0.flags="0x13" # bktr: Brooktree bt848/848a/849a/878/879 video capture and TV Tuner board # cy: Cyclades serial driver # joy: joystick (including IO DATA PCJOY PC Card joystick) +# rc: RISCom/8 multiport card # rp: Comtrol Rocketport(ISA/PCI) - single card # si: Specialix SI/XIO 4-32 port terminal multiplexor # nmdm: nullmodem terminal driver (see nmdm(4)) @@ -1796,6 +1797,10 @@ hint.scd.0.port="0x230" device joy # PnP aware, hints for nonpnp only hint.joy.0.at="isa" hint.joy.0.port="0x201" +device rc +hint.rc.0.at="isa" +hint.rc.0.port="0x220" +hint.rc.0.irq="12" device rp hint.rp.0.at="isa" hint.rp.0.port="0x280" diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES index f620068..5283218 100644 --- a/sys/i386/conf/NOTES +++ b/sys/i386/conf/NOTES @@ -571,7 +571,6 @@ device aacp # SCSI Passthrough interface (optional, CAM required) # gp: National Instruments AT-GPIB and AT-GPIB/TNT board, PCMCIA-GPIB # asc: GI1904-based hand scanners, e.g. the Trust Amiscan Grey # gsc: Genius GS-4500 hand scanner. -# rc: RISCom/8 multiport card # tw: TW-523 power line interface for use with X-10 home control products # spic: Sony Programmable I/O controller (VAIO notebooks) # stl: Stallion EasyIO and EasyConnection 8/32 (cd1400 based) @@ -677,10 +676,6 @@ device digi_EPCX_PCI device digi_Xe device digi_Xem device digi_Xr -device rc -hint.rc.0.at="isa" -hint.rc.0.port="0x220" -hint.rc.0.irq="12" # the port and irq for tw0 are fictitious device tw 1 hint.tw.0.at="isa" diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 52c7a28..1547194 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -92,6 +92,7 @@ SUBDIR= 3dfx \ procfs \ pseudofs \ ${_random} \ + rc \ rl \ rp \ sf \ @@ -205,7 +206,6 @@ SUBDIR+=aac \ exca \ iir \ mly \ - rc \ s3 \ vesa |