aboutsummaryrefslogtreecommitdiff
path: root/lite-aeolus
diff options
context:
space:
mode:
authorPaul Sokolovsky <paul.sokolovsky@linaro.org>2017-06-23 18:40:01 +0300
committerPaul Sokolovsky <paul.sokolovsky@linaro.org>2017-06-23 18:40:01 +0300
commit5563d4c4c7a4ce2b58736e493f89741853eec017 (patch)
tree1487766d4451b6319edbcfe456df76bca219994e /lite-aeolus
parent656c019a72fa5a24ede439c852e27190899d090a (diff)
pfalcon-aeolus-micropython: Fix selection of minimal config.
Change-Id: I03d4d790a04b54d026991543c1bf49e6e4d82c32
Diffstat (limited to 'lite-aeolus')
-rw-r--r--lite-aeolus/build-micropython.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/lite-aeolus/build-micropython.sh b/lite-aeolus/build-micropython.sh
index 72c0df43..d9d3f441 100644
--- a/lite-aeolus/build-micropython.sh
+++ b/lite-aeolus/build-micropython.sh
@@ -4,11 +4,11 @@ git clone --depth 1 https://git.linaro.org/lite/zephyr.git zephyr-rtos
small_rom() {
- echo "arduino_101 foo_bar" | grep -F -w -q "$1"
+ echo "arduino_101" | grep -F -w -q "$1"
}
cd zephyr
-if small_rom $1; then
+if small_rom ${PLATFORM}; then
./make-minimal BOARD=${PLATFORM}
else
make BOARD=${PLATFORM}