diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-25 06:48:56 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:45:53 +0100 |
commit | c3a98aa54c734dcb7a36d193c6330d8f04d4bf8e (patch) | |
tree | a6035ba138512c2d14abfd4ccd1c4c299b2181d7 /hw/Kconfig | |
parent | f349474920d80838ecea3d421531fdb0660b8740 (diff) |
kconfig: introduce CONFIG_TEST_DEVICES
Devices that are mostly used for testing purposes (for example in
endianness-test) will be moved under a new symbol CONFIG_TEST_DEVICES
that can be disabled in the default-configs file. This makes
it easier to drop this code from QEMU if desirable.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/Kconfig')
-rw-r--r-- | hw/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/Kconfig b/hw/Kconfig index c4f1547546..f902c8fdc6 100644 --- a/hw/Kconfig +++ b/hw/Kconfig @@ -61,6 +61,9 @@ source unicore32/Kconfig source xtensa/Kconfig # Symbols used by multiple targets +config TEST_DEVICES + bool + config XILINX bool |