Skip to content

Commit 4836ef2

Browse files
fit-conf: fix u-boot boot fail
On board using a fitImage, poky's upstream change from the following commit: https://git.yoctoproject.org/poky/commit/?id=ab6b5e97cebe19938baa403da63 07ca320294b3a inserted a regression of the fit-conf.bb recipe. Causing a U-boot boot fault displaying this type of message: ``` Could not find configuration node ERROR: can't get kernel image! Unknown command '!' - try 'help' resetting ... ``` fitImage configuration labels are now prefixed with conf- instead of conf@. This commit incorporates this modification for the fit-conf.bb recipe.
1 parent 150a5f4 commit 4836ef2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

recipes-sota/fit-conf/fit-conf.bb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ do_install() {
99
echo -n "fit_conf=" >${D}${libdir}/fit_conf
1010

1111
if [ -n ${SOTA_MAIN_DTB} ]; then
12-
echo -n "#conf@${SOTA_MAIN_DTB}" >> ${D}${libdir}/fit_conf
12+
echo -n "#conf-${SOTA_MAIN_DTB}" >> ${D}${libdir}/fit_conf
1313
fi
1414

1515
for ovrl in ${SOTA_DT_OVERLAYS}; do
16-
echo -n "#conf@overlays_${ovrl}" >> ${D}${libdir}/fit_conf
16+
echo -n "#conf-overlays_${ovrl}" >> ${D}${libdir}/fit_conf
1717
done
1818

1919
for conf_frag in ${SOTA_EXTRA_CONF_FRAGS}; do

0 commit comments

Comments
 (0)