Commit 27fb7f009bdb1ff13d4e4c008a2fd36b2305055b

Authored by Randy Dunlap
Committed by Linus Torvalds
1 parent 6aed359df4

xen: add kconfig menu

Currently the xen support drivers are displayed in the main Device Drivers
menu of the config tools instead of in their own sub-menu, so move them to
their own sub-menu, like the rest of the driver world uses.

This keeps the main Device Drivers menu from becoming messy.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Jeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 7 additions and 5 deletions Side-by-side Diff

  1 +menu "Xen driver support"
  2 + depends on XEN
  3 +
1 4 config XEN_BALLOON
2 5 bool "Xen memory balloon driver"
3   - depends on XEN
4 6 default y
5 7 help
6 8 The balloon driver allows the Xen domain to request more memory from
... ... @@ -20,7 +22,6 @@
20 22  
21 23 config XEN_DEV_EVTCHN
22 24 tristate "Xen /dev/xen/evtchn device"
23   - depends on XEN
24 25 default y
25 26 help
26 27 The evtchn driver allows a userspace process to triger event
... ... @@ -30,7 +31,6 @@
30 31  
31 32 config XENFS
32 33 tristate "Xen filesystem"
33   - depends on XEN
34 34 default y
35 35 help
36 36 The xen filesystem provides a way for domains to share
... ... @@ -53,7 +53,7 @@
53 53  
54 54 config XEN_SYS_HYPERVISOR
55 55 bool "Create xen entries under /sys/hypervisor"
56   - depends on XEN && SYSFS
  56 + depends on SYSFS
57 57 select SYS_HYPERVISOR
58 58 default y
59 59 help
... ... @@ -61,4 +61,6 @@
61 61 hypervisor environment. When running native or in another
62 62 virtual environment, /sys/hypervisor will still be present,
63 63 but will have no xen contents.
  64 +
  65 +endmenu