diff options
author | skullY <skullydazed@gmail.com> | 2018-10-09 09:40:10 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-10-22 13:24:43 -0700 |
commit | ca56c2145f25ab04daa6bb96f31b948be9e57ef2 (patch) | |
tree | e20e94b7d3e864b7b7b928021740fd1cd9fb2fad /util/freebsd_install.sh | |
parent | 704a2e8d3c0bd15f6c8accd5a39fb88ca6c9e2d5 (diff) |
Fold install_dependencies.sh into linux_install.sh and freebsd_install.sh
Diffstat (limited to 'util/freebsd_install.sh')
-rw-r--r-- | util/freebsd_install.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/util/freebsd_install.sh b/util/freebsd_install.sh new file mode 100644 index 0000000000..25ea80a7fc --- /dev/null +++ b/util/freebsd_install.sh @@ -0,0 +1,18 @@ +#!/bin/sh +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 |