MFC: Switch from OLDCARD to NEWCARD on pc98.

Approved by:	re (scottl)
This commit is contained in:
nyan 2005-10-07 15:56:30 +00:00
parent 2d15d5e3bc
commit e61c61f414
7 changed files with 10 additions and 32 deletions

View File

@ -34,10 +34,8 @@ ln minigzip gzip
ln minigzip gunzip
ln minigzip zcat
srcdirs /usr/src/usr.sbin /usr/src/usr.sbin/pccard
srcdirs /usr/src/usr.sbin
progs arp
progs pccardc
progs pccardd
progs ppp
progs sysinstall

View File

@ -321,6 +321,8 @@ _arcnet= arcnet
_ath_hal= ath_hal
_awi= awi
_bktr= bktr
_cardbus= cardbus
_cbb= cbb
_coff= coff
_cp= cp
_cpufreq= cpufreq
@ -330,6 +332,7 @@ _ed= ed
_elink= elink
_em= em
_ep= ep
_exca= exca
_ext2fs= ext2fs
_fe= fe
_hfa= hfa
@ -376,8 +379,6 @@ _arl= arl
_arcmsr= arcmsr
_asr= asr
_bios= bios
_cardbus= cardbus
_cbb= cbb
_ciss= ciss
_cm= cm
_cs= cs
@ -386,7 +387,6 @@ _cx= cx
_dpt= dpt
_el= el
_ex= ex
_exca= exca
_hptmv= hptmv
_ichwd= ichwd
_ida= ida

View File

@ -133,6 +133,12 @@ device npx
#device "snd_sb16" # Sound Blaster 16
#device snd_sbc # Sound Blaster
# PCCARD (PCMCIA) support
# PCMCIA and cardbus bridge support
device cbb # cardbus (yenta) bridge
device pccard # PC Card (16-bit) bus
device cardbus # CardBus (32-bit) bus
# Serial (COM) ports
options COM_MULTIPORT
#options COM_ESP # ESP98

View File

@ -53,10 +53,6 @@ hint.sc.0.at="isa"
#hint.pmc.0.at="isa"
#hint.pmc.0.port="0x8f0"
hint.pcic.0.at="isa"
hint.pcic.0.irq="6"
hint.pcic.0.port="0x3e0"
# Microsoft Sound System
#hint.pcm.0.at="isa"
#hint.pcm.0.port="0xf40"

View File

@ -476,17 +476,6 @@ options SX_DEBUG
options POWERFAIL_NMI # make it beep instead of panicing
#
# PC Card/PCMCIA
# (OLDCARD)
#
# card: pccard slots
# pcic: isa/pccard bridge
device pcic
hint.pcic.0.at="isa"
#hint.pcic.1.at="isa"
device card
#---------------------------------------------------------------------------
# ISDN4BSD
#
@ -768,9 +757,6 @@ nodevice cm
nodevice cs
nodevice ex
nodevice fea
nodevice cbb
nodevice pccard
nodevice cardbus
nodevice intpm
nodevice alpm
nodevice ichsmb

View File

@ -14,10 +14,6 @@ SRCS= anonFTP.c cdrom.c command.c config.c devices.c dhcp.c \
system.c tape.c tcpip.c termcap.c ttys.c ufs.c usb.c user.c \
variable.c ${_wizard} keymap.h
.if ${MACHINE} == "pc98"
SRCS+= pccard.c
.endif
CFLAGS+= -DUSE_GZIP=1
.if ${MACHINE} == "pc98"
CFLAGS+= -DPC98

View File

@ -65,10 +65,6 @@
#define WITH_LINUX
#endif
#if defined(PC98)
#define PCCARD_ARCH 1 /* Support PCCARD installations */
#endif
/* device limits */
#define DEV_NAME_MAX 128 /* The maximum length of a device name */
#define DEV_MAX 100 /* The maximum number of devices we'll deal with */