From e04b4329abb4033b63e77b03aa37e39641f2fc06 Mon Sep 17 00:00:00 2001 From: Alex Gonzalez Date: Fri, 14 Jun 2013 13:36:43 +0200 Subject: [PATCH] build.sh: Allow to build for more than one target. https://jira.digi.com/browse/DEL-504 Signed-off-by: Alex Gonzalez --- sdk/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sdk/build.sh b/sdk/build.sh index b704a9129..3c36c5b62 100755 --- a/sdk/build.sh +++ b/sdk/build.sh @@ -148,7 +148,10 @@ for platform in ${DY_PLATFORMS}; do printf "${DIGI_PREMIRROR_CFG}" >> conf/local.conf fi [ "${DY_BUILD_VARIANTS}" = "true" ] && printf "\nINHERIT += \"rm_work\"\n" >> conf/local.conf - time bitbake ${DY_TARGET} + for target in ${DY_TARGET}; do + printf "\n[INFO] Building the $target target.\n" + time bitbake ${target} + done ) copy_images ${_this_img_dir} popd