diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-05-13 15:25:27 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-05-28 10:28:50 +0100 |
commit | 16932bb761e52c2ca9397b57af5bdc5bdc5ae6a4 (patch) | |
tree | 07cb4fc3156715ca54cf17e7b24777bf8cfbc802 /hw/semihosting | |
parent | f1672e6f2b6642f9bf5042df6713ce8e4a0f00c6 (diff) | |
download | qemu-16932bb761e52c2ca9397b57af5bdc5bdc5ae6a4.zip qemu-16932bb761e52c2ca9397b57af5bdc5bdc5ae6a4.tar.gz qemu-16932bb761e52c2ca9397b57af5bdc5bdc5ae6a4.tar.bz2 |
semihosting: introduce CONFIG_SEMIHOSTING
There isn't much point building semihosting for platforms that don't
support it. Introduce a new symbol and enable it only for the softmmu
targets that need it.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/semihosting')
-rw-r--r-- | hw/semihosting/Kconfig | 3 | ||||
-rw-r--r-- | hw/semihosting/Makefile.objs | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/hw/semihosting/Kconfig b/hw/semihosting/Kconfig new file mode 100644 index 0000000..efe0a30 --- /dev/null +++ b/hw/semihosting/Kconfig @@ -0,0 +1,3 @@ + +config SEMIHOSTING + bool diff --git a/hw/semihosting/Makefile.objs b/hw/semihosting/Makefile.objs index 546954f..09c19bf 100644 --- a/hw/semihosting/Makefile.objs +++ b/hw/semihosting/Makefile.objs @@ -1 +1 @@ -common-obj-$(CONFIG_SOFTMMU) += config.o +obj-$(CONFIG_SEMIHOSTING) += config.o |