diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-03-08 18:36:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-08 18:36:34 -0500 |
commit | 97c4c570e23c896bc48b2e1b60fe5f0e5ea622b6 (patch) | |
tree | 3a169929d07bdb6cc91cd99cbb58487e7767a8ec /util | |
parent | 85121ec50e22fd8548796fb8b228a46f68a12506 (diff) | |
parent | a9959783c0a190410307e3e6cc1be4c024e9cddd (diff) |
Merge pull request #1140 from stites/freebsd
Add FreeBSD support in "util/install_dependencies.sh"
Diffstat (limited to 'util')
-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 936a865938..1b73a8b3bf 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 |