diff options
author | Julien Grall <julien.grall@linaro.org> | 2013-07-23 11:21:28 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2013-07-29 09:35:11 -0400 |
commit | 9e7fd145b691127cfd48ab8c05cc1aa6d35b57ad (patch) | |
tree | d2e729d13dae2a0bc256165d176e949a49c9e303 | |
parent | f21407179ccd0dec35f4580052c26ea923c28ac9 (diff) |
xen/arm: enable PV control for ARM
Enable lifecyle management (reboot, shutdown...) from the toolstack
for ARM guests.
Signed-off-by: Julien Grall <julien.grall@linaro.org>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
-rw-r--r-- | drivers/xen/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile index fc37c49a8ffe..14fe79d8634a 100644 --- a/drivers/xen/Makefile +++ b/drivers/xen/Makefile | |||
@@ -1,9 +1,8 @@ | |||
1 | ifeq ($(filter y, $(CONFIG_ARM) $(CONFIG_ARM64)),) | 1 | ifeq ($(filter y, $(CONFIG_ARM) $(CONFIG_ARM64)),) |
2 | obj-y += manage.o | ||
3 | obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o | 2 | obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o |
4 | endif | 3 | endif |
5 | obj-$(CONFIG_X86) += fallback.o | 4 | obj-$(CONFIG_X86) += fallback.o |
6 | obj-y += grant-table.o features.o events.o balloon.o | 5 | obj-y += grant-table.o features.o events.o balloon.o manage.o |
7 | obj-y += xenbus/ | 6 | obj-y += xenbus/ |
8 | 7 | ||
9 | nostackp := $(call cc-option, -fno-stack-protector) | 8 | nostackp := $(call cc-option, -fno-stack-protector) |