From 02c961eb3fd8e5e329189c2a1a455e9913a20226 Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Tue, 26 Jul 2016 19:45:30 +0200 Subject: [PATCH] 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 --- sdk/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/build.sh b/sdk/build.sh index c668c50ef..2983e4cb8 100755 --- a/sdk/build.sh +++ b/sdk/build.sh @@ -238,7 +238,7 @@ for platform in ${DY_PLATFORMS}; do printf "\n[INFO] Building the ${target} target.\n" time bitbake ${target} # 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" time bitbake -c populate_sdk ${target} fi