diff options
| author | cajun-rat <p@beta16.co.uk> | 2017-08-25 09:47:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-25 09:47:22 +0200 |
| commit | 6ed33bdca45adfcc7150a8083b888ff7df011d08 (patch) | |
| tree | a98b095c60251d583f760da105b689a76e24b7f0 /scripts | |
| parent | f9432682932fe6fcca59289e40bfca5ceacb137c (diff) | |
| parent | cc8585e7864ce3731fa3db9bad2c748f7f25a6ca (diff) | |
| download | meta-updater-6ed33bdca45adfcc7150a8083b888ff7df011d08.tar.gz | |
Merge pull request #133 from advancedtelematic/merge-morty-changes-forward
Merge morty changes forward to pyro
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/envsetup.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/envsetup.sh b/scripts/envsetup.sh index ff78681..260b048 100755 --- a/scripts/envsetup.sh +++ b/scripts/envsetup.sh | |||
| @@ -24,7 +24,15 @@ fi | |||
| 24 | METADIR="${SOURCEDIR}/../.." | 24 | METADIR="${SOURCEDIR}/../.." |
| 25 | 25 | ||
| 26 | if [[ ! -f "${BUILDDIR}/conf/local.conf" ]]; then | 26 | if [[ ! -f "${BUILDDIR}/conf/local.conf" ]]; then |
| 27 | source "$METADIR/poky/oe-init-build-env" "$BUILDDIR" | 27 | if [ -z "$TEMPLATECONF" ] && [ -d ${METADIR}/meta-updater-${MACHINE}/conf ]; then |
| 28 | # Use the template configurations for the specified machine | ||
| 29 | TEMPLATECONF=${METADIR}/meta-updater-${MACHINE}/conf | ||
| 30 | source "$METADIR/poky/oe-init-build-env" "$BUILDDIR" | ||
| 31 | unset TEMPLATECONF | ||
| 32 | else | ||
| 33 | # Use the default configurations or TEMPLATECONF set by the user | ||
| 34 | source "$METADIR/poky/oe-init-build-env" "$BUILDDIR" | ||
| 35 | fi | ||
| 28 | echo "METADIR := \"\${@os.path.abspath('${METADIR}')}\"" >> conf/bblayers.conf | 36 | echo "METADIR := \"\${@os.path.abspath('${METADIR}')}\"" >> conf/bblayers.conf |
| 29 | cat "${METADIR}/meta-updater/conf/include/bblayers/sota.inc" >> conf/bblayers.conf | 37 | cat "${METADIR}/meta-updater/conf/include/bblayers/sota.inc" >> conf/bblayers.conf |
| 30 | cat "${METADIR}/meta-updater/conf/include/bblayers/sota_${MACHINE}.inc" >> conf/bblayers.conf | 38 | cat "${METADIR}/meta-updater/conf/include/bblayers/sota_${MACHINE}.inc" >> conf/bblayers.conf |
