~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to xen/drivers/message/fusion/Config.in

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

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