config.in

来自「是关于linux2.5.1的完全源码」· IN 代码 · 共 36 行

IN
36
字号
## MPC8260 Communication options#mainmenu_option next_commentcomment 'MPC8260 Communication Options'bool 'Enable SCC Console' CONFIG_SCC_CONSOLEif [ "$CONFIG_NET_ETHERNET" = "y" ]; then  mainmenu_option next_comment  comment 'MPC8260 Communication Options'  bool 'CPM SCC Ethernet' CONFIG_SCC_ENET  if [ "$CONFIG_SCC_ENET" = "y" ]; then  bool 'Ethernet on SCC1' CONFIG_SCC1_ENET    if [ "$CONFIG_SCC1_ENET" != "y" ]; then      bool 'Ethernet on SCC2' CONFIG_SCC2_ENET    fi  fi##  CONFIG_FEC_ENET is only used to get netdevices to call our init#    function.  Any combination of FCC1,2,3 are supported.#  bool 'FCC Ethernet' CONFIG_FEC_ENET  if [ "$CONFIG_FEC_ENET" = "y" ]; then    bool 'Ethernet on FCC1' CONFIG_FCC1_ENET    bool 'Ethernet on FCC2' CONFIG_FCC2_ENET    bool 'Ethernet on FCC3' CONFIG_FCC3_ENET    bool 'Use MDIO for PHY configuration' CONFIG_USE_MDIO    if [ "$CONFIG_USE_MDIO" = "y" ]; then      choice 'Type of PHY'	\	"LXT970		CONFIG_FCC_LXT970	\	 LXT971		CONFIG_FCC_LXT971	\	 QS6612		CONFIG_FCC_QS6612"	CONFIG_FCC_LXT971      fi  fifiendmenu

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?