diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2016-01-21 23:04:13 +0100 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2016-02-09 14:47:34 +0100 |
commit | 4904012b7748fd096681dda66f53ec5b06438495 (patch) | |
tree | 39a6edc766d9aea5d280f61b32317da2906e6294 /scripts | |
parent | f05bcdadc5422b0d7fa9b094aec256c3e86791c2 (diff) |
Add wandboard as target board
This patch adds the wandboard as i.mx6 target.
Change-Id: Iae25b991d475ce321b4192cbac130ad389021c72
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/envsetup.sh | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/envsetup.sh b/scripts/envsetup.sh index 79d2a25d8..4925ef7e9 100644 --- a/scripts/envsetup.sh +++ b/scripts/envsetup.sh @@ -36,6 +36,8 @@ case "$MACHINE" in ;; "qemux86-64") ;; + "wandboard") + ;; *) # nothing to do here echo "WARN: '$MACHINE' is not tested by AGL Distro" @@ -60,11 +62,6 @@ else BUILD_DIR=build fi -echo "envsetup: Setup build environment for poky/oe." -echo -e - -source poky/oe-init-build-env $BUILD_DIR - if [ -n "$DL_DIR" ]; then BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE DL_DIR" fi @@ -75,4 +72,9 @@ fi export BB_ENV_EXTRAWHITE +echo "envsetup: Setup build environment for poky/oe." +echo -e + +source poky/oe-init-build-env $BUILD_DIR + unset TEMPLATECONF |