summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/qemu/Makefile
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2016-05-06 14:40:22 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2016-05-23 07:18:00 (GMT)
commitdd6f3abbb81d4d0f8883a523e26fd45833a6b0d3 (patch)
tree76e4e8038105b71f24055498231c81432667b88d /arch/x86/cpu/qemu/Makefile
parent49d929bbc49ebab3ffbc9ad2d0f13ba296d61d02 (diff)
downloadu-boot-dd6f3abbb81d4d0f8883a523e26fd45833a6b0d3.tar.xz
x86: qemu: Move qfw command over to cmd and add Kconfig entry
- Move the command portion of arch/x86/cpu/qemu/fw_cfg.c into cmd/qemu_fw_cfg.c - Move arch/x86/include/asm/fw_cfg.h to include/qemu_fw_cfg.h - Rename ACPI table portion to arch/x86/cpu/qemu/acpi_table.c Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/qemu/Makefile')
-rw-r--r--arch/x86/cpu/qemu/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/cpu/qemu/Makefile b/arch/x86/cpu/qemu/Makefile
index 6eeddf1..97b965c 100644
--- a/arch/x86/cpu/qemu/Makefile
+++ b/arch/x86/cpu/qemu/Makefile
@@ -7,4 +7,5 @@
ifndef CONFIG_EFI_STUB
obj-y += car.o dram.o
endif
-obj-y += cpu.o fw_cfg.o qemu.o
+obj-y += cpu.o qemu.o
+obj-$(CONFIG_QEMU_ACPI_TABLE) += acpi_table.o