diff options
| author | Samuli Piippo <samuli.piippo@theqtcompany.com> | 2016-04-07 08:42:48 +0300 |
|---|---|---|
| committer | Samuli Piippo <samuli.piippo@theqtcompany.com> | 2016-04-08 06:06:10 +0000 |
| commit | 3fc7fbeb76fb97ceae6763e6dccebbaa9c14c5f4 (patch) | |
| tree | a5af22431972edb43e431d380c3bd9bf173ebde1 /b2qt-init-build-env | |
| parent | 2c1c64fbcce018dd02fcf03bd3fcc25127dee438 (diff) | |
| download | meta-boot2qt-3fc7fbeb76fb97ceae6763e6dccebbaa9c14c5f4.tar.gz | |
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 <tuomas.heimonen@theqtcompany.com>
Reviewed-by: Teemu Holappa <teemu.holappa@theqtcompany.com>
Diffstat (limited to 'b2qt-init-build-env')
| -rwxr-xr-x | b2qt-init-build-env | 7 |
1 files changed, 5 insertions, 2 deletions
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() { | |||
| 90 | get_groups() { | 90 | get_groups() { |
| 91 | case ${DEVICE} in | 91 | case ${DEVICE} in |
| 92 | all) | 92 | all) |
| 93 | PROJECT_GROUPS="all" | 93 | PROJECT_GROUPS="external" |
| 94 | ;; | ||
| 95 | internal) | ||
| 96 | PROJECT_GROUPS="external internal" | ||
| 94 | ;; | 97 | ;; |
| 95 | apalis-imx6|colibri-imx6|colibri-vf) | 98 | apalis-imx6|colibri-imx6|colibri-vf) |
| 96 | PROJECT_GROUPS="toradex" | 99 | PROJECT_GROUPS="toradex" |
| @@ -124,7 +127,7 @@ get_groups() { | |||
| 124 | ;; | 127 | ;; |
| 125 | *) | 128 | *) |
| 126 | echo "Unknown device configuration, including all meta layers" | 129 | echo "Unknown device configuration, including all meta layers" |
| 127 | PROJECT_GROUPS="all" | 130 | PROJECT_GROUPS="external" |
| 128 | ;; | 131 | ;; |
| 129 | esac | 132 | esac |
| 130 | 133 | ||
