863036378b
Now that we check that a target package in the _DEPENDENCIES of another package has to be enabled in config, all target packages must have a kconfig symbol. Add a Kconfig symbol for linux-headers, and select it from the packages that depends on it (C libraries). Also remove the now-misleading comments "for legal-info" from the C libraries. Fixes: http://autobuild.buildroot.org/results/2a9/2a9e5d27b34357819b44f573a834da1ba5079030/ ... and numerous similar failures ... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
54 lines
938 B
Plaintext
54 lines
938 B
Plaintext
if BR2_TOOLCHAIN_BUILDROOT_EGLIBC
|
|
|
|
config BR2_PACKAGE_EGLIBC
|
|
bool
|
|
default y
|
|
select BR2_PACKAGE_LINUX_HEADERS
|
|
|
|
choice
|
|
prompt "eglibc version"
|
|
default BR2_EGLIBC_VERSION_2_18
|
|
|
|
config BR2_EGLIBC_VERSION_2_18
|
|
bool "2.18-svnr23787"
|
|
# Build breakage
|
|
depends on !BR2_sparc
|
|
|
|
config BR2_EGLIBC_VERSION_2_19
|
|
bool "2.19-svnr25243"
|
|
# Build breakage
|
|
depends on !BR2_powerpc_SPE
|
|
|
|
endchoice
|
|
|
|
endif
|
|
|
|
if BR2_TOOLCHAIN_BUILDROOT_GLIBC
|
|
|
|
config BR2_PACKAGE_GLIBC
|
|
bool
|
|
default y
|
|
select BR2_PACKAGE_LINUX_HEADERS
|
|
|
|
choice
|
|
prompt "glibc version"
|
|
default BR2_GLIBC_VERSION_2_21
|
|
|
|
config BR2_GLIBC_VERSION_2_21
|
|
bool "2.21"
|
|
|
|
config BR2_GLIBC_VERSION_2_22
|
|
bool "2.22"
|
|
depends on !BR2_sparc # broken
|
|
|
|
endchoice
|
|
|
|
endif
|
|
|
|
config BR2_GLIBC_VERSION_STRING
|
|
string
|
|
default "2.18-svnr23787" if BR2_EGLIBC_VERSION_2_18
|
|
default "2.19-svnr25243" if BR2_EGLIBC_VERSION_2_19
|
|
default "2.21" if BR2_GLIBC_VERSION_2_21
|
|
default "2.22" if BR2_GLIBC_VERSION_2_22
|