x86/Kconfig: Invert the defaults for CONFIG_{PVH_GUEST,PV_SHIM}
authorAndrew Cooper <andrew.cooper3@citrix.com>
Tue, 1 Oct 2019 16:27:49 +0000 (17:27 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 4 Oct 2019 17:37:41 +0000 (18:37 +0100)
This is a minor UI change, but users which have elected to enable
XEN_GUEST (which still defaults to no) will definitely need one of these
options, and will typically want both.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Wei Liu <wl@xen.org>
Acked-by: Jan Beulich <jbeulich@suse.com>
Release-acked-by: Juergen Gross <jgross@suse.com>
xen/arch/x86/Kconfig

index 3f88adae978f316be140f4bb943ed04ed59a0230..28b3b4692aa4cd33f82d8a8f0be5593bd1de5343 100644 (file)
@@ -170,16 +170,16 @@ config XEN_GUEST
          If unsure, say N.
 
 config PVH_GUEST
-       def_bool n
+       def_bool y
        prompt "PVH Guest"
        depends on XEN_GUEST
        ---help---
          Support booting using the PVH ABI.
 
-         If unsure, say N.
+         If unsure, say Y.
 
 config PV_SHIM
-       def_bool n
+       def_bool y
        prompt "PV Shim"
        depends on PV && XEN_GUEST
        ---help---
@@ -187,7 +187,7 @@ config PV_SHIM
          in an HVM/PVH container. This mode can only be enabled with command
          line option.
 
-         If unsure, say N.
+         If unsure, say Y.
 
 config PV_SHIM_EXCLUSIVE
        def_bool n