6a774f400b
The iucode-tool package needs the argp functionality, which is provided built-in by glibc, but not by uClibc and musl. In uClibc configurations, it correctly selects the argp-standalone package to compensate this, but forgets to do so in musl-based configurations. This commit fixes that by selecting the argp-standalone package, and adjusting the dependency in the .mk file. Fixes: http://autobuild.buildroot.net/results/7f8626db69500a84a393053a485f04180c565673/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
11 lines
302 B
Plaintext
11 lines
302 B
Plaintext
config BR2_PACKAGE_IUCODE_TOOL
|
|
bool "iucode-tool"
|
|
depends on BR2_x86_64 || BR2_i386
|
|
select BR2_PACKAGE_INTEL_MICROCODE
|
|
select BR2_PACKAGE_ARGP_STANDALONE \
|
|
if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL
|
|
help
|
|
Intel processor microcode tool
|
|
|
|
https://gitorious.org/iucode-tool
|