blob: d906016ef71c264446c87c389fd702cc55222d93 [file] [log] [blame]
Ricardo Salveti3a2c1242017-01-19 10:22:35 -02001#!/bin/sh
David Brown5153bd62017-01-06 11:16:53 -07002
Ricardo Salveti3a2c1242017-01-19 10:22:35 -02003# Assume first argument is the board name (as defined in Zephyr)
4BOARD=$1
David Brown5153bd62017-01-06 11:16:53 -07005
Ricardo Salveti3a2c1242017-01-19 10:22:35 -02006if [ -z "$BOARD" ]; then
7 echo "Please specify the board name (as in Zephyr) as first argument."
8 exit 1;
9fi
10
Ricardo Salveti3a2c1242017-01-19 10:22:35 -020011# Check if there is a valid Zephyr environment available
12if [ -z "$ZEPHYR_BASE" ]; then
13 echo "ZEPHYR_BASE not provided by the environment."
14 exit 1;
15fi
16
17make BOARD=$BOARD