diff options
author | Adam Duskett <aduskett@gmail.com> | 2018-03-18 15:01:27 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-03-26 21:53:36 +0200 |
commit | efc67deef38c9c69279c35b8e2665d81e8344e96 (patch) | |
tree | e051a3862a3832b8df29b266c1e2a58c4a31e924 | |
parent | 692d191c8b0b3c86022e6a6ba3bd2d8f53b39f03 (diff) | |
download | buildroot-efc67deef38c9c69279c35b8e2665d81e8344e96.tar.gz buildroot-efc67deef38c9c69279c35b8e2665d81e8344e96.zip |
qemu: remove support for some PowerPC processors in host qemu
The 620, 630, and 970 are not supported at this time by qemu.
Signed-off-by: Adam Duskett <aduskett@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/qemu/Config.in.host | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/qemu/Config.in.host b/package/qemu/Config.in.host index 78fe54a85c..bbc2aa27c5 100644 --- a/package/qemu/Config.in.host +++ b/package/qemu/Config.in.host @@ -6,6 +6,7 @@ config BR2_PACKAGE_HOST_QEMU_ARCH_SUPPORTS BR2_mips64 || BR2_mips64el || BR2_powerpc || \ BR2_powerpc64 || BR2_powerpc64le || BR2_sh || \ BR2_sparc || BR2_x86_64 + depends on !BR2_powerpc_620 && !BR2_powerpc_630 && !BR2_powerpc_970 config BR2_PACKAGE_HOST_QEMU bool "host qemu" |