Config.in
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. mainmenu_option next_comment
  2. comment 'Fusion MPT device support'
  3. dep_tristate "Fusion MPT (base + ScsiHost) drivers" CONFIG_FUSION $CONFIG_SCSI $CONFIG_BLK_DEV_SD
  4. if [ "$CONFIG_FUSION" = "y" -o "$CONFIG_FUSION" = "m" ]; then
  5.   if [ "$CONFIG_BLK_DEV_SD" = "y" -a "$CONFIG_FUSION" = "y" ]; then
  6.     define_bool CONFIG_FUSION_BOOT y
  7.   else
  8.     define_bool CONFIG_FUSION_BOOT n
  9.   fi
  10.   if [ "$CONFIG_MODULES" = "y" ]; then
  11.     #  How can we force these options to module or nothing?
  12.     dep_tristate "  Enhanced SCSI error reporting" CONFIG_FUSION_ISENSE $CONFIG_FUSION m
  13.     dep_tristate "  Fusion MPT misc device (ioctl) driver" CONFIG_FUSION_CTL $CONFIG_FUSION m
  14.   fi
  15.   dep_tristate "  Fusion MPT LAN driver" CONFIG_FUSION_LAN $CONFIG_FUSION $CONFIG_NET
  16.   if [ "$CONFIG_FUSION_LAN" != "n" ]; then
  17.     define_bool CONFIG_NET_FC y
  18.   fi
  19. else
  20.   define_bool CONFIG_FUSION_BOOT n
  21.   # These <should> be define_tristate, but we leave them define_bool
  22.   # for backward compatibility with pre-linux-2.2.15 kernels.
  23.   # (Bugzilla:fibrebugs, #384)
  24.   define_bool CONFIG_FUSION_ISENSE n
  25.   define_bool CONFIG_FUSION_CTL n
  26.   define_bool CONFIG_FUSION_LAN n
  27. fi
  28. endmenu