package/k*/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 k 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>
This commit is contained in:
parent
b206a2733b
commit
6acd0a542e
@ -1,8 +1,8 @@
|
||||
config BR2_PACKAGE_KBD
|
||||
bool "kbd"
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
# Uses fork()
|
||||
depends on BR2_USE_MMU
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
help
|
||||
Keytable files and keyboard utilities.
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
config BR2_PACKAGE_KNOCK
|
||||
bool "knock"
|
||||
select BR2_PACKAGE_LIBPCAP
|
||||
depends on BR2_USE_MMU # fork()
|
||||
select BR2_PACKAGE_LIBPCAP
|
||||
help
|
||||
A port knocking implementation.
|
||||
Provides a daemon and a user application. Port knocking can be
|
||||
|
@ -1,9 +1,9 @@
|
||||
config BR2_PACKAGE_KODI_ARCH_SUPPORTS
|
||||
bool
|
||||
depends on BR2_USE_MMU # libcdio, and others
|
||||
default y if (BR2_arm || (BR2_mipsel && BR2_TOOLCHAIN_USES_GLIBC) || BR2_i386 || BR2_x86_64) \
|
||||
&& BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS \
|
||||
&& BR2_TOOLCHAIN_HAS_SYNC_8
|
||||
depends on BR2_USE_MMU # libcdio, and others
|
||||
|
||||
comment "kodi needs python w/ .py modules, a uClibc or glibc toolchain w/ C++, locale, threads, wchar, dynamic library, gcc >= 4.8, host gcc >= 4.6"
|
||||
depends on BR2_PACKAGE_KODI_ARCH_SUPPORTS
|
||||
|
@ -1,6 +1,5 @@
|
||||
config BR2_PACKAGE_KVM_UNIT_TESTS
|
||||
bool "kvm-unit-tests"
|
||||
select BR2_HOSTARCH_NEEDS_IA32_COMPILER if BR2_x86_64=y
|
||||
# on i386 and x86-64, __builtin_reachable is used, so we need
|
||||
# gcc 4.5 at least. on i386, we use the target gcc, while on
|
||||
# x86-64 we use the host gcc (see .mk file for details)
|
||||
@ -11,6 +10,7 @@ config BR2_PACKAGE_KVM_UNIT_TESTS
|
||||
BR2_powerpc64 || \
|
||||
BR2_powerpc64le || \
|
||||
(BR2_x86_64 && BR2_HOST_GCC_AT_LEAST_4_5)
|
||||
select BR2_HOSTARCH_NEEDS_IA32_COMPILER if BR2_x86_64=y
|
||||
help
|
||||
kvm-unit-tests is a project as old as KVM. As its name
|
||||
suggests, it's purpose is to provide unit tests for KVM. The
|
||||
|
Loading…
Reference in New Issue
Block a user