Fabio Utzig | 59bcb37 | 2019-03-07 13:20:02 -0300 | [diff] [blame] | 1 | #!/bin/bash -x |
| 2 | |
| 3 | # Licensed to the Apache Software Foundation (ASF) under one |
| 4 | # or more contributor license agreements. See the NOTICE file |
| 5 | # distributed with this work for additional information |
| 6 | # regarding copyright ownership. The ASF licenses this file |
| 7 | # to you under the Apache License, Version 2.0 (the |
| 8 | # "License"); you may not use this file except in compliance |
| 9 | # with the License. You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, |
| 14 | # software distributed under the License is distributed on an |
| 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | # KIND, either express or implied. See the License for the |
| 17 | # specific language governing permissions and limitations |
| 18 | # under the License. |
| 19 | |
| 20 | install_newt() { |
| 21 | pushd $HOME |
| 22 | git clone --depth=1 https://github.com/apache/mynewt-newt |
| 23 | [[ $? -ne 0 ]] && exit 1 |
| 24 | |
| 25 | pushd mynewt-newt && ./build.sh |
| 26 | [[ $? -ne 0 ]] && exit 1 |
| 27 | |
| 28 | cp newt/newt $HOME/bin |
| 29 | popd |
| 30 | popd |
| 31 | } |
| 32 | |
| 33 | shallow_clone_mynewt() { |
| 34 | mkdir -p repos/apache-mynewt-core |
| 35 | git clone --depth=1 https://github.com/apache/mynewt-core repos/apache-mynewt-core |
| 36 | [[ $? -ne 0 ]] && exit 1 |
Jerzy Kasenberg | 7a4b192 | 2023-05-09 10:58:06 +0200 | [diff] [blame^] | 37 | |
| 38 | # nrfx is now taken from original repository |
| 39 | git clone --depth=1 --branch v2.8.0 https://github.com/NordicSemiconductor/nrfx.git repos/nordic-nrfx |
| 40 | [[ $? -ne 0 ]] && exit 1 |
Fabio Utzig | 59bcb37 | 2019-03-07 13:20:02 -0300 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | arm_toolchain_install() { |
| 44 | TOOLCHAIN_PATH=$HOME/TOOLCHAIN |
| 45 | |
| 46 | GCC_URL=https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2 |
| 47 | GCC_BASE=gcc-arm-none-eabi-7-2017-q4-major |
| 48 | |
| 49 | mkdir -p $TOOLCHAIN_PATH |
| 50 | |
| 51 | if [ ! -s ${TOOLCHAIN_PATH}/$GCC_BASE/bin/arm-none-eabi-gcc ]; then |
David Brown | 65643a6 | 2021-09-17 16:24:02 -0600 | [diff] [blame] | 52 | wget -O ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 $GCC_URL |
Fabio Utzig | 59bcb37 | 2019-03-07 13:20:02 -0300 | [diff] [blame] | 53 | [[ $? -ne 0 ]] && exit 1 |
| 54 | |
| 55 | tar xfj ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 -C $TOOLCHAIN_PATH |
| 56 | fi |
| 57 | |
| 58 | for i in ${TOOLCHAIN_PATH}/${GCC_BASE}/bin/arm-none-eabi-* ; do |
| 59 | rm -f $HOME/bin/${i##*/} |
| 60 | ln -s $i $HOME/bin/${i##*/} |
| 61 | done |
| 62 | } |
| 63 | |
Szymon Janc | 2209688 | 2023-03-17 11:23:54 +0100 | [diff] [blame] | 64 | native_test_setup() { |
| 65 | sudo apt-get update |
| 66 | sudo apt-get install -y gcc-multilib |
| 67 | } |
| 68 | |
Fabio Utzig | 59bcb37 | 2019-03-07 13:20:02 -0300 | [diff] [blame] | 69 | mkdir -p $HOME/bin |
| 70 | export PATH=$HOME/bin:$PATH |
| 71 | |
| 72 | install_newt |
| 73 | shallow_clone_mynewt |
| 74 | arm_toolchain_install |
Szymon Janc | 2209688 | 2023-03-17 11:23:54 +0100 | [diff] [blame] | 75 | native_test_setup |