diff options
author | Maran Wilson | 2018-12-10 11:07:55 -0800 |
---|---|---|
committer | Boris Ostrovsky | 2018-12-13 13:41:49 -0500 |
commit | fcd4747698150bc3a9596481d3eb2b3ae71d82f1 (patch) | |
tree | 1342090e5a3e40001b9cca6766add9db18b7cc42 /arch/x86/Kbuild | |
parent | 7733607fb3aa72e3df47e6165156feb92ced8f5f (diff) |
xen/pvh: Move PVH entry code out of Xen specific tree
Once hypervisors other than Xen start using the PVH entry point for
starting VMs, we would like the option of being able to compile PVH entry
capable kernels without enabling CONFIG_XEN and all the code that comes
along with that. To allow that, we are moving the PVH code out of Xen and
into files sitting at a higher level in the tree.
This patch is not introducing any code or functional changes, just moving
files from one location to another.
Signed-off-by: Maran Wilson <maran.wilson@oracle.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Diffstat (limited to 'arch/x86/Kbuild')
-rw-r--r-- | arch/x86/Kbuild | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/Kbuild b/arch/x86/Kbuild index 0038a2d10a7a..2089e4414300 100644 --- a/arch/x86/Kbuild +++ b/arch/x86/Kbuild @@ -7,6 +7,8 @@ obj-$(CONFIG_KVM) += kvm/ # Xen paravirtualization support obj-$(CONFIG_XEN) += xen/ +obj-$(CONFIG_XEN_PVH) += platform/pvh/ + # Hyper-V paravirtualization support obj-$(subst m,y,$(CONFIG_HYPERV)) += hyperv/ |