diff options
author | Yang Zhong <yang.zhong@intel.com> | 2019-02-02 15:24:36 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-02-05 16:50:19 +0100 |
commit | abab3fdeef05be8b57baefa7d0f234b9bc471df3 (patch) | |
tree | 7d829cc02cf4ec76414a07924bd847b24057581b /hw/arm/Makefile.objs | |
parent | 80500ce6377602e002e0f50caaf6584000e091b5 (diff) | |
download | qemu-abab3fdeef05be8b57baefa7d0f234b9bc471df3.zip qemu-abab3fdeef05be8b57baefa7d0f234b9bc471df3.tar.gz qemu-abab3fdeef05be8b57baefa7d0f234b9bc471df3.tar.bz2 |
hw/arm/Makefile.objs: CONFIG_ARM_VIRT created for virt board
Make ARM virt code configurable and the new CONFIG_ARM_VIRT
definitions added to the default-configs/arm-softmmu.mak.
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190202072456.6468-8-yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/arm/Makefile.objs')
-rw-r--r-- | hw/arm/Makefile.objs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 22b7f0e..fa40e8d 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -1,4 +1,5 @@ -obj-y += boot.o virt.o sysbus-fdt.o +obj-y += boot.o sysbus-fdt.o +obj-$(CONFIG_ARM_VIRT) += virt.o obj-$(CONFIG_ACPI) += virt-acpi-build.o obj-$(CONFIG_DIGIC) += digic_boards.o obj-$(CONFIG_EXYNOS4) += exynos4_boards.o |