1# 2# MPC8260 Communication options 3# 4mainmenu_option next_comment 5comment 'MPC8260 CPM Options' 6bool 'Enable SCC Console' CONFIG_SCC_CONSOLE 7if [ "$CONFIG_NET_ETHERNET" = "y" ]; then 8 bool 'CPM SCC Ethernet' CONFIG_SCC_ENET 9 if [ "$CONFIG_SCC_ENET" = "y" ]; then 10 bool 'Ethernet on SCC1' CONFIG_SCC1_ENET 11 if [ "$CONFIG_SCC1_ENET" != "y" ]; then 12 bool 'Ethernet on SCC2' CONFIG_SCC2_ENET 13 fi 14 fi 15# 16# CONFIG_FEC_ENET is only used to get netdevices to call our init 17# function. Any combination of FCC1,2,3 are supported. 18# 19 bool 'FCC Ethernet' CONFIG_FEC_ENET 20 if [ "$CONFIG_FEC_ENET" = "y" ]; then 21 bool 'Ethernet on FCC1' CONFIG_FCC1_ENET 22 bool 'Ethernet on FCC2' CONFIG_FCC2_ENET 23 bool 'Ethernet on FCC3' CONFIG_FCC3_ENET 24 fi 25fi 26endmenu 27