From b9882925a438824b2e34b196cd7ef5382d1fb9cb Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Mon, 30 May 2011 23:56:57 +0200 Subject: toolchain: introduce BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS Unfortunately, the official Blackfin toolchains are built without the shadow password support, so our default Busybox configuration fails to build. Therefore, we introduce a new hidden knob BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS, which is set to yes for Buildroot internal toolchain, for toolchains generated by the Crosstool-NG backend, for Glibc external toolchains and for Uclibc custom external toolchains. It is left unset by the Blackfin toolchain profile. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- toolchain/toolchain-external/Config.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'toolchain/toolchain-external') diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in index 1d8f561ed..04bd20745 100644 --- a/toolchain/toolchain-external/Config.in +++ b/toolchain/toolchain-external/Config.in @@ -220,6 +220,7 @@ config BR2_TOOLCHAIN_EXTERNAL_GLIBC select BR2_ENABLE_LOCALE select BR2_PROGRAM_INVOCATION select BR2_TOOLCHAIN_HAS_THREADS + select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS config BR2_TOOLCHAIN_EXTERNAL_UCLIBC bool @@ -233,6 +234,9 @@ choice config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC bool "uClibc" select BR2_TOOLCHAIN_EXTERNAL_UCLIBC + # For the time being, we assume that all custom external + # toolchains have shadow password support. + select BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC bool "glibc" -- cgit v1.2.3