Config.in
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Amateur Radio protocols and AX.25 device configuration
  3. #
  4. # 19971130 Now in an own category to make correct compilation of the 
  5. # AX.25 stuff easier...
  6. # Joerg Reuter DL1BKE <jreuter@yaina.de>
  7. # 19980129 Moved to net/ax25/Config.in, sourcing device drivers.
  8. mainmenu_option next_comment
  9. comment 'Amateur Radio support'
  10. bool 'Amateur Radio support' CONFIG_HAMRADIO
  11. if [ "$CONFIG_HAMRADIO" != "n" ]; then
  12.    if [ "$CONFIG_NET" != "n" ]; then
  13.       comment 'Packet Radio protocols'
  14.       tristate '  Amateur Radio AX.25 Level 2 protocol' CONFIG_AX25
  15.       if [ "$CONFIG_AX25" != "n" ]; then
  16.  bool '    AX.25 DAMA Slave support' CONFIG_AX25_DAMA_SLAVE
  17. #  bool '    AX.25 DAMA Master support' CONFIG_AX25_DAMA_MASTER
  18.  dep_tristate '    Amateur Radio NET/ROM protocol' CONFIG_NETROM $CONFIG_AX25
  19.  dep_tristate '    Amateur Radio X.25 PLP (Rose)' CONFIG_ROSE $CONFIG_AX25
  20.       fi
  21.       if [ "$CONFIG_AX25" != "n" ]; then
  22.  mainmenu_option next_comment
  23.  comment 'AX.25 network device drivers'
  24.  source drivers/net/hamradio/Config.in
  25.  endmenu
  26.       fi
  27.    fi
  28. fi
  29. endmenu