diff options
| author | Adam Duskett <Aduskett@gmail.com> | 2017-04-22 13:18:07 -0400 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-02 14:43:46 +0200 |
| commit | a2b31892a886a5b11bca85ca9e6a689f6f3df9c8 (patch) | |
| tree | da5e5762002f9dbb34043a68043db0edf977da38 /package/uclibc | |
| parent | 168be5c2dbfdd8e37bf87fff321d3bf45e0bb948 (diff) | |
| download | buildroot-a2b31892a886a5b11bca85ca9e6a689f6f3df9c8.tar.gz buildroot-a2b31892a886a5b11bca85ca9e6a689f6f3df9c8.zip | |
package/u*/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 u 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/uclibc')
| -rw-r--r-- | package/uclibc/Config.in | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/package/uclibc/Config.in b/package/uclibc/Config.in index bfce45c28d..b0b0b010f7 100644 --- a/package/uclibc/Config.in +++ b/package/uclibc/Config.in @@ -47,15 +47,15 @@ choice config BR2_PTHREADS_NATIVE bool "Native POSIX Threading (NPTL)" - select BR2_TOOLCHAIN_HAS_THREADS - select BR2_TOOLCHAIN_HAS_THREADS_NPTL depends on BR2_USE_MMU depends on !BR2_m68k && !BR2_microblaze && !BR2_or1k + select BR2_TOOLCHAIN_HAS_THREADS + select BR2_TOOLCHAIN_HAS_THREADS_NPTL config BR2_PTHREADS bool "linuxthreads" - select BR2_TOOLCHAIN_HAS_THREADS depends on BR2_bfin || BR2_m68k || BR2_microblaze || BR2_or1k || BR2_arm || BR2_armeb || BR2_xtensa + select BR2_TOOLCHAIN_HAS_THREADS config BR2_PTHREADS_NONE bool "none" @@ -109,45 +109,44 @@ config BR2_UCLIBC_TARGET_ARCH config BR2_UCLIBC_ARC_TYPE string - depends on BR2_UCLIBC_TARGET_ARCH = "arc" default "ARC_CPU_700" if BR2_arc750d default "ARC_CPU_700" if BR2_arc770d default "ARC_CPU_HS" if BR2_archs38 + depends on BR2_UCLIBC_TARGET_ARCH = "arc" config BR2_UCLIBC_MIPS_ABI string - depends on BR2_UCLIBC_TARGET_ARCH = "mips" default "O32" if BR2_MIPS_OABI32 default "N32" if BR2_MIPS_NABI32 default "N64" if BR2_MIPS_NABI64 + depends on BR2_UCLIBC_TARGET_ARCH = "mips" config BR2_UCLIBC_MIPS_NAN string - depends on BR2_UCLIBC_TARGET_ARCH = "mips" default "LEGACY" if BR2_MIPS_CPU_MIPS32 || BR2_MIPS_CPU_MIPS64 default "2008" if BR2_MIPS_CPU_MIPS32R6 || BR2_MIPS_CPU_MIPS64R6 + depends on BR2_UCLIBC_TARGET_ARCH = "mips" config BR2_UCLIBC_SH_TYPE string - depends on BR2_UCLIBC_TARGET_ARCH = "sh" default "SH2A" if BR2_sh2a default "SH4" if BR2_sh4 || BR2_sh4eb + depends on BR2_UCLIBC_TARGET_ARCH = "sh" config BR2_UCLIBC_SPARC_TYPE string - depends on BR2_UCLIBC_TARGET_ARCH = "sparc" default "V7" if BR2_sparc_v7 || BR2_sparc_sparchfleon || BR2_sparc_sparcsfleon default "V8" if BR2_sparc_v8 || BR2_sparc_sparchfleonv8 || BR2_sparc_sparcsfleonv8 + depends on BR2_UCLIBC_TARGET_ARCH = "sparc" config BR2_UCLIBC_POWERPC_TYPE string - depends on BR2_UCLIBC_TARGET_ARCH = "powerpc" default "CLASSIC" if !BR2_powerpc_8540 && !BR2_powerpc_8548 default "E500" if BR2_powerpc_8540 || BR2_powerpc_8548 + depends on BR2_UCLIBC_TARGET_ARCH = "powerpc" config BR2_UCLIBC_X86_TYPE string - depends on BR2_UCLIBC_TARGET_ARCH = "i386" default "486" if BR2_x86_i486 default "586" if BR2_x86_i586 default "586MMX" if BR2_x86_pentium_mmx @@ -156,5 +155,6 @@ config BR2_UCLIBC_X86_TYPE default "PENTIUMIII" if BR2_x86_pentium3 default "PENTIUM4" if BR2_x86_pentium4 || BR2_x86_pentium_m || \ BR2_x86_nocona || BR2_x86_core2 || BR2_x86_corei7 + depends on BR2_UCLIBC_TARGET_ARCH = "i386" endif # BR2_TOOLCHAIN_BUILDROOT_UCLIBC |

