summaryrefslogtreecommitdiff
path: root/util/freebsd_install.sh
blob: 81575920313d2dbf400d5d1ee230523ae866b961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
util_dir=$(dirname "$0")
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 \
	python3
pip3 install -r ${util_dir}/../requirements.txt