This file provide common functions related to QFW, so move it into driver/qfw with the other code. Series-to: concept Cover-letter: emulation: Restructure the Kconfig At present ARM and x86 use differently named symbols to mean similar things. For x86, board/emulation/Kconfig contains the targets, but ARM has them in a different file. While ARM uses ARCH_QEMU to mean QEMU, x86 uses VENDOR_EMULATION. This series adjusts the Kconfig for emulation targets on x86 and ARM, to improve consistency. A new arch-neutral MACH_QEMU is introduced. This is enabled for all ARM/x86 emulation targets. Furture work could add this for other archs too. END Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
348 B
Makefile
14 lines
348 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2004-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-y += qfw-uclass.o
|
|
|
|
obj-y += qfw.o
|
|
obj-$(CONFIG_QFW_ACPI) += qfw_acpi.o
|
|
obj-$(CONFIG_QFW_PIO) += qfw_pio.o
|
|
obj-$(CONFIG_QFW_MMIO) += qfw_mmio.o
|
|
obj-$(CONFIG_QFW_SMBIOS) += qfw_smbios.o
|
|
obj-$(CONFIG_SANDBOX) += qfw_sandbox.o
|