From 3fc7fbeb76fb97ceae6763e6dccebbaa9c14c5f4 Mon Sep 17 00:00:00 2001 From: Samuli Piippo Date: Thu, 7 Apr 2016 08:42:48 +0300 Subject: Do not pull internal repos when initializing for all devices When initializing build environment with '--device all', some internal repos are fetch that are not available for customers. Now those repos are fetched only when initializing with '--device internal' Change-Id: I12981449d4ca9c2d3529ed81649b3cc0a1bfed02 Task-number: QTBUG-52002 Reviewed-by: Tuomas Heimonen Reviewed-by: Teemu Holappa --- b2qt-init-build-env | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'b2qt-init-build-env') diff --git a/b2qt-init-build-env b/b2qt-init-build-env index 90fa2b0..ddfabf6 100755 --- a/b2qt-init-build-env +++ b/b2qt-init-build-env @@ -90,7 +90,10 @@ get_repo() { get_groups() { case ${DEVICE} in all) - PROJECT_GROUPS="all" + PROJECT_GROUPS="external" + ;; + internal) + PROJECT_GROUPS="external internal" ;; apalis-imx6|colibri-imx6|colibri-vf) PROJECT_GROUPS="toradex" @@ -124,7 +127,7 @@ get_groups() { ;; *) echo "Unknown device configuration, including all meta layers" - PROJECT_GROUPS="all" + PROJECT_GROUPS="external" ;; esac -- cgit v1.2.3-54-g00ecf