blob: 8d3b32f803df63cb0b96958b8c6c0eea8c1af2ee [file] [log] [blame]
Patrick Williamsb9af8752023-01-30 13:28:01 -06001From 67bb1f111c4668c4dfdc40547cb83fc6c1f010e9 Mon Sep 17 00:00:00 2001
2From: Jon Mason <jdmason@kudzu.us>
3Date: Thu, 26 Jan 2023 11:46:33 -0500
4Subject: [PATCH] qemu: arm: make QFW, MMIO implied on qemu-arm
5
6There are instances when one would not want QFW enabled, like running
7alternative firmware. Make this choice optional instead of forced by
8using the implied keyword.
9
10Signed-off-by: Jon Mason <jdmason@kudzu.us>
11Upstream-Status: Pending [Not submitted to upstream yet]
12
13---
14 board/emulation/qemu-arm/Kconfig | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17diff --git a/board/emulation/qemu-arm/Kconfig b/board/emulation/qemu-arm/Kconfig
18index ed9949651c4b..93f6f74d5bcc 100644
19--- a/board/emulation/qemu-arm/Kconfig
20+++ b/board/emulation/qemu-arm/Kconfig
21@@ -5,8 +5,8 @@ config TEXT_BASE
22
23 config BOARD_SPECIFIC_OPTIONS # dummy
24 def_bool y
25- select CMD_QFW
26- select QFW_MMIO
27+ imply CMD_QFW
28+ imply QFW_MMIO
29 imply VIRTIO_MMIO
30 imply VIRTIO_PCI
31 imply VIRTIO_NET
32--
332.30.2
34