diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:18:03 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-02 14:34:19 +0200 |
| commit | cf1c12bdba037b4e28e2d7fcef0e653a45016408 (patch) | |
| tree | 576e6f840e3c3d60772dd2f43421c48014f8f7c0 /package/qemu | |
| parent | 0d18d1d9c0dd8173eee918b30761548c19b6bfdc (diff) | |
| download | buildroot-cf1c12bdba037b4e28e2d7fcef0e653a45016408.tar.gz buildroot-cf1c12bdba037b4e28e2d7fcef0e653a45016408.zip | |
package/q*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files. This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter q in the package directory.
The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/qemu')
| -rw-r--r-- | package/qemu/Config.in.host | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/qemu/Config.in.host b/package/qemu/Config.in.host index b3eb5906cc..71f38ef41f 100644 --- a/package/qemu/Config.in.host +++ b/package/qemu/Config.in.host @@ -1,13 +1,13 @@ config BR2_PACKAGE_HOST_QEMU bool "host qemu" - select BR2_PACKAGE_HOST_QEMU_LINUX_USER_MODE \ - if !BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE depends on BR2_arm || BR2_armeb || BR2_aarch64 || \ BR2_i386 || BR2_m68k || BR2_microblazeel || \ BR2_microblazebe || BR2_mips || BR2_mipsel || \ BR2_mips64 || BR2_mips64el || BR2_powerpc || \ BR2_powerpc64 || BR2_powerpc64le || BR2_sh || \ BR2_sparc || BR2_x86_64 + select BR2_PACKAGE_HOST_QEMU_LINUX_USER_MODE \ + if !BR2_PACKAGE_HOST_QEMU_SYSTEM_MODE help QEMU is a generic and open source machine emulator and virtualizer. |

