diff options
| author | milestogo <milestogo@users.noreply.github.com> | 2017-03-08 15:51:30 -0800 | 
|---|---|---|
| committer | milestogo <milestogo@users.noreply.github.com> | 2017-03-08 15:51:30 -0800 | 
| commit | feb858c5a9afff06ff54ec401359f8bfd5abdd73 (patch) | |
| tree | cf61bfad47984bb4987540404f0ec349defbff1a /util/install_dependencies.sh | |
| parent | b5bfb5104b63766ab9a54509302a3f4b0b1d7b16 (diff) | |
| parent | ffb04bad660ba7c487e4b923e4391b6c7dd5eddd (diff) | |
| download | firmware-feb858c5a9afff06ff54ec401359f8bfd5abdd73.tar.gz firmware-feb858c5a9afff06ff54ec401359f8bfd5abdd73.tar.bz2 firmware-feb858c5a9afff06ff54ec401359f8bfd5abdd73.zip  | |
Merge branch 'master' into sculpt2
Diffstat (limited to 'util/install_dependencies.sh')
| -rwxr-xr-x | util/install_dependencies.sh | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/util/install_dependencies.sh b/util/install_dependencies.sh index 936a86593..1b73a8b3b 100755 --- a/util/install_dependencies.sh +++ b/util/install_dependencies.sh @@ -92,4 +92,23 @@ elif [[ -n "$(type -P zypper)" ]]; then    # TODO: The avr and eabi tools are not available as default packages, so we need     # another way to install them +elif [[ -n "$(type -P pkg)" ]]; then +  # FreeBSD +  pkg update +  pkg install -y \ +    git \ +    wget \ +    gmake \ +    gcc \ +    zip \ +    unzip \ +    avr-binutils \ +    avr-gcc \ +    avr-libc \ +    dfu-programmer \ +    dfu-util \ +    arm-none-eabi-gcc \ +    arm-none-eabi-binutils \ +    arm-none-eabi-newlib \ +    diffutils  fi  | 
