mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
u-boot: fix condition to allow use of *.cfg
U-boot recipe supports .cfg files in SRC_URI, but bug in conditional statement meant that the code was unreachable and the .cfg files were never applied. (From OE-Core rev: 766f827df4c3f76b1ef06acaba3c4f160c3791aa) Signed-off-by: Charlie Davies <charles.davies@whitetree.xyz> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
9e856a0a1a
commit
b9513b8386
@@ -89,7 +89,7 @@ do_configure () {
|
||||
j=$(expr $j + 1);
|
||||
if [ $j -eq $i ]; then
|
||||
oe_runmake -C ${S} O=${B}/${config} ${config}
|
||||
if [ test -n "${@' '.join(find_cfgs(d))}" ]; then
|
||||
if [ -n "${@' '.join(find_cfgs(d))}" ]; then
|
||||
merge_config.sh -m -O ${B}/${config} ${B}/${config}/.config ${@" ".join(find_cfgs(d))}
|
||||
oe_runmake -C ${S} O=${B}/${config} oldconfig
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user