mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
Add missing packages to Linux install scripts (#8895)
This commit is contained in:
parent
0722986d7a
commit
6586280bf3
1 changed files with 7 additions and 1 deletions
|
@ -32,6 +32,7 @@ if grep ID /etc/os-release | grep -qE "fedora"; then
|
||||||
avr-libc \
|
avr-libc \
|
||||||
binutils-avr32-linux-gnu \
|
binutils-avr32-linux-gnu \
|
||||||
clang \
|
clang \
|
||||||
|
avrdude \
|
||||||
dfu-util \
|
dfu-util \
|
||||||
dfu-programmer \
|
dfu-programmer \
|
||||||
diffutils \
|
diffutils \
|
||||||
|
@ -67,6 +68,7 @@ elif grep ID /etc/os-release | grep -qE 'debian|ubuntu'; then
|
||||||
gcc-avr \
|
gcc-avr \
|
||||||
git \
|
git \
|
||||||
libnewlib-arm-none-eabi \
|
libnewlib-arm-none-eabi \
|
||||||
|
avrdude \
|
||||||
libusb-dev \
|
libusb-dev \
|
||||||
python3 \
|
python3 \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
|
@ -110,6 +112,7 @@ elif grep ID /etc/os-release | grep -q gentoo; then
|
||||||
app-arch/unzip \
|
app-arch/unzip \
|
||||||
app-arch/zip \
|
app-arch/zip \
|
||||||
app-mobilephone/dfu-util \
|
app-mobilephone/dfu-util \
|
||||||
|
dev-embedded/dfu-programmer \
|
||||||
dev-embedded/avrdude \
|
dev-embedded/avrdude \
|
||||||
net-misc/wget \
|
net-misc/wget \
|
||||||
sys-devel/clang \
|
sys-devel/clang \
|
||||||
|
@ -126,6 +129,7 @@ elif grep ID /etc/os-release | grep -q sabayon; then
|
||||||
app-arch/unzip \
|
app-arch/unzip \
|
||||||
app-arch/zip \
|
app-arch/zip \
|
||||||
app-mobilephone/dfu-util \
|
app-mobilephone/dfu-util \
|
||||||
|
dev-embedded/dfu-programmer \
|
||||||
dev-embedded/avrdude \
|
dev-embedded/avrdude \
|
||||||
dev-lang/python \
|
dev-lang/python \
|
||||||
net-misc/wget \
|
net-misc/wget \
|
||||||
|
@ -151,7 +155,8 @@ elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
|
||||||
cross-avr-binutils \
|
cross-avr-binutils \
|
||||||
cross-arm-none-newlib-devel \
|
cross-arm-none-newlib-devel \
|
||||||
cross-arm-binutils cross-arm-none-newlib-devel \
|
cross-arm-binutils cross-arm-none-newlib-devel \
|
||||||
dfu-tool \
|
avrdude \
|
||||||
|
dfu-util \
|
||||||
dfu-programmer \
|
dfu-programmer \
|
||||||
gcc \
|
gcc \
|
||||||
libusb-devel \
|
libusb-devel \
|
||||||
|
@ -216,6 +221,7 @@ elif grep ID /etc/os-release | grep -q void; then
|
||||||
avr-gcc \
|
avr-gcc \
|
||||||
avr-libc \
|
avr-libc \
|
||||||
$CROSS_ARM \
|
$CROSS_ARM \
|
||||||
|
avrdude \
|
||||||
dfu-programmer \
|
dfu-programmer \
|
||||||
dfu-util \
|
dfu-util \
|
||||||
gcc \
|
gcc \
|
||||||
|
|
Loading…
Reference in a new issue