Switch from OLDCARD to NEWCARD on pc98.

This commit is contained in:
Yoshihiro Takahashi 2005-09-27 13:10:24 +00:00
parent 7c23a867f7
commit 819766797e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=150615
9 changed files with 10 additions and 29 deletions

View File

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

View File

@ -320,6 +320,8 @@ _arcnet= arcnet
_ath_hal= ath_hal _ath_hal= ath_hal
_awi= awi _awi= awi
_bktr= bktr _bktr= bktr
_cardbus= cardbus
_cbb= cbb
_coff= coff _coff= coff
_cp= cp _cp= cp
_cpufreq= cpufreq _cpufreq= cpufreq
@ -329,6 +331,7 @@ _ed= ed
_elink= elink _elink= elink
_em= em _em= em
_ep= ep _ep= ep
_exca= exca
_ext2fs= ext2fs _ext2fs= ext2fs
_fe= fe _fe= fe
_hfa= hfa _hfa= hfa
@ -375,8 +378,6 @@ _arl= arl
_arcmsr= arcmsr _arcmsr= arcmsr
_asr= asr _asr= asr
_bios= bios _bios= bios
_cardbus= cardbus
_cbb= cbb
_ciss= ciss _ciss= ciss
_cm= cm _cm= cm
_cs= cs _cs= cs
@ -384,7 +385,6 @@ _ctau= ctau
_cx= cx _cx= cx
_dpt= dpt _dpt= dpt
_ex= ex _ex= ex
_exca= exca
_hptmv= hptmv _hptmv= hptmv
_ichwd= ichwd _ichwd= ichwd
_ida= ida _ida= ida

View File

@ -142,6 +142,12 @@ device npx
#device "snd_sb16" # Sound Blaster 16 #device "snd_sb16" # Sound Blaster 16
#device snd_sbc # Sound Blaster #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 # Serial (COM) ports
options COM_MULTIPORT options COM_MULTIPORT
#options COM_ESP # ESP98 #options COM_ESP # ESP98

View File

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

View File

@ -757,9 +757,6 @@ nodevice cm
nodevice cs nodevice cs
nodevice ex nodevice ex
nodevice fea nodevice fea
nodevice cbb
nodevice pccard
nodevice cardbus
nodevice intpm nodevice intpm
nodevice alpm nodevice alpm
nodevice ichsmb 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 \ system.c tape.c tcpip.c termcap.c ttys.c ufs.c usb.c user.c \
variable.c ${_wizard} keymap.h variable.c ${_wizard} keymap.h
.if ${MACHINE} == "pc98"
SRCS+= pccard.c
.endif
CFLAGS+= -DUSE_GZIP=1 CFLAGS+= -DUSE_GZIP=1
.if ${MACHINE} == "pc98" .if ${MACHINE} == "pc98"
CFLAGS+= -DPC98 CFLAGS+= -DPC98

View File

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

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 \ system.c tape.c tcpip.c termcap.c ttys.c ufs.c usb.c user.c \
variable.c ${_wizard} keymap.h variable.c ${_wizard} keymap.h
.if ${MACHINE} == "pc98"
SRCS+= pccard.c
.endif
CFLAGS+= -DUSE_GZIP=1 CFLAGS+= -DUSE_GZIP=1
.if ${MACHINE} == "pc98" .if ${MACHINE} == "pc98"
CFLAGS+= -DPC98 CFLAGS+= -DPC98

View File

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