From e167ed472611d69e989d4d55193843b146a8c35b Mon Sep 17 00:00:00 2001 From: Colin Beighley Date: Fri, 28 Aug 2015 09:31:20 -0700 Subject: [PATCH 1/2] Ensure have pip on Linux --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index be195673..124abd99 100755 --- a/setup.sh +++ b/setup.sh @@ -150,7 +150,7 @@ function run_all_platforms () { log_info "Please enter your password for apt-get..." log_info "Updating..." sudo apt-get update - sudo apt-get install -y curl + sudo apt-get install -y curl python-pip sudo pip install ansible elif [[ "$OSTYPE" == "darwin"* ]]; then piksi_splash_osx From 51251437cdbb236d151eb1f77a7d6966efb78e6a Mon Sep 17 00:00:00 2001 From: Colin Beighley Date: Fri, 28 Aug 2015 09:49:11 -0700 Subject: [PATCH 2/2] Old version of tools wasn't available in repo --- setup/ansible/roles/common_ubuntu/tasks/arm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/ansible/roles/common_ubuntu/tasks/arm.yml b/setup/ansible/roles/common_ubuntu/tasks/arm.yml index f43166fa..6995366d 100644 --- a/setup/ansible/roles/common_ubuntu/tasks/arm.yml +++ b/setup/ansible/roles/common_ubuntu/tasks/arm.yml @@ -11,7 +11,7 @@ - name: Install ARM GCC toolchain (Trusty) sudo: True - shell: apt-get install gcc-arm-none-eabi=4.9.3.2014q4-0trusty12 + shell: apt-get install gcc-arm-none-eabi=4.9.3.2015q2-1trusty1 when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '14.04' - name: Install ARM GCC toolchain (Utopic)