1# 2# PCMCIA bus subsystem configuration 3# 4# Right now the non-CardBus choices are not supported 5# by the integrated kernel driver. 6# 7mainmenu_option next_comment 8comment 'PCMCIA/CardBus support' 9 10#dep_tristate 'CardBus support' CONFIG_PCMCIA $CONFIG_PCI 11#if [ "$CONFIG_PCMCIA" != "n" ]; then 12# define_bool CONFIG_CARDBUS y 13#fi 14 15tristate 'PCMCIA/CardBus support' CONFIG_PCMCIA 16if [ "$CONFIG_PCMCIA" != "n" ]; then 17 if [ "$CONFIG_PCI" != "n" ]; then 18 bool ' CardBus support' CONFIG_CARDBUS 19 fi 20 bool ' Databook TCIC host bridge support' CONFIG_TCIC 21 if [ "$CONFIG_HD64465" = "y" ]; then 22 dep_tristate ' HD64465 host bridge support' CONFIG_HD64465_PCMCIA $CONFIG_PCMCIA 23 fi 24 dep_bool ' i82092 compatible bridge support' CONFIG_I82092 $CONFIG_PCI 25 bool ' i82365 compatible bridge support' CONFIG_I82365 26 if [ "$CONFIG_ARCH_SA1100" = "y" ]; then 27 dep_tristate ' SA1100 support' CONFIG_PCMCIA_SA1100 $CONFIG_PCMCIA 28 fi 29 if [ "$CONFIG_8xx" = "y" ]; then 30 dep_tristate ' M8xx support' CONFIG_PCMCIA_M8XX $CONFIG_PCMCIA 31 fi 32 if [ "$CONFIG_SOC_AU1X00" = "y" ]; then 33 dep_tristate ' Au1x00 PCMCIA support' CONFIG_PCMCIA_AU1X00 $CONFIG_PCMCIA 34 if [ "$CONFIG_PCMCIA_AU1X00" != "n" ]; then 35 bool ' Pb1x00 board support' CONFIG_PCMCIA_PB1X00 36 bool ' Db1x00 board support' CONFIG_PCMCIA_DB1X00 37 bool ' XXS1500 board support' CONFIG_PCMCIA_XXS1500 38 fi 39 fi 40 if [ "$CONFIG_SIBYTE_SB1xxx_SOC" = "y" ]; then 41 dep_bool ' SiByte PCMCIA support' CONFIG_PCMCIA_SIBYTE $CONFIG_PCMCIA $CONFIG_BLK_DEV_IDE_SIBYTE 42 fi 43 if [ "$CONFIG_VRC4173" = "y" -o "$CONFIG_VRC4173" = "m" ]; then 44 dep_tristate ' NEC VRC4173 CARDU support' CONFIG_PCMCIA_VRC4173 $CONFIG_PCMCIA 45 fi 46fi 47 48endmenu 49

