build.sh: add support to build a toolchain for CC6UL
The build script was filtering out toolchain builds for all image recipes not starting with 'dey-image-', but for the CC6UL we are building by default 'core-image-base', so update the regular expression to allow building the toolchain for 'core-image-*' image recipes. https://jira.digi.com/browse/DEL-2837 Signed-off-by: Javier Viguera <javier.viguera@digi.com>
This commit is contained in:
parent
ba0834ed88
commit
02c961eb3f
|
|
@ -238,7 +238,7 @@ for platform in ${DY_PLATFORMS}; do
|
||||||
printf "\n[INFO] Building the ${target} target.\n"
|
printf "\n[INFO] Building the ${target} target.\n"
|
||||||
time bitbake ${target}
|
time bitbake ${target}
|
||||||
# Build the toolchain for DEY images
|
# Build the toolchain for DEY images
|
||||||
if [ "${DY_BUILD_TCHAIN}" = "true" ] && echo "${target}" | grep -qs '^dey-image-[^-]\+$'; then
|
if [ "${DY_BUILD_TCHAIN}" = "true" ] && echo "${target}" | grep -qs '^\(core\|dey\)-image-[^-]\+$'; then
|
||||||
printf "\n[INFO] Building the toolchain for ${target}.\n"
|
printf "\n[INFO] Building the toolchain for ${target}.\n"
|
||||||
time bitbake -c populate_sdk ${target}
|
time bitbake -c populate_sdk ${target}
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue