From f6f21945957c978efef3cd1d848ea0c80f0e7735 Mon Sep 17 00:00:00 2001 From: Joseph Morrow Date: Tue, 31 Mar 2015 11:06:39 -0400 Subject: [PATCH] Enabled the build script to build for Arduino Due as well. This enables the build server and endusers/developers to verify builds for the Arduino Due as well. Change-Id: I08ca0893b16d8cfcf133e8554379eeb69e489515 Signed-off-by: Joseph Morrow Reviewed-on: https://gerrit.iotivity.org/gerrit/614 Reviewed-by: Doug Hudson Tested-by: jenkins-iotivity Reviewed-by: Erich Keane --- auto_build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auto_build.sh b/auto_build.sh index 7940208..820041f 100755 --- a/auto_build.sh +++ b/auto_build.sh @@ -47,10 +47,10 @@ function build() scons TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=ETHERNET NET=Ethernet RELEASE=$3 scons TARGET_OS=arduino UPLOAD=false BOARD=mega TARGET_ARCH=avr TARGET_TRANSPORT=WIFI NET=Wifi RELEASE=$3 -: ' echo "*********** Build for arduino arm *************" - scons TARGET_OS=arduino TARGET_ARCH=arm ARDUINO_HOME=$2 RELEASE=$3 -' + scons TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=ETHERNET NET=Ethernet RELEASE=$3 + scons TARGET_OS=arduino UPLOAD=false BOARD=arduino_due_x TARGET_ARCH=arm TARGET_TRANSPORT=WIFI NET=Wifi RELEASE=$3 + if [ $(uname -s) = "Darwin" ] then echo "*********** Build for OSX *************" -- 2.7.4