aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-04-24 05:56:36 +1000
committerGitHub <noreply@github.com>2020-04-23 21:56:36 +0200
commit6586280bf36f257fc9affa0ee6a4781f796bc918 (patch)
treebfc4af9f89b616204e33cf9d17abd006cabd1ff2 /util
parent0722986d7a245526d7ba61a3d94151c54fdca9a4 (diff)
downloadqmk_firmware-6586280bf36f257fc9affa0ee6a4781f796bc918.tar.gz
qmk_firmware-6586280bf36f257fc9affa0ee6a4781f796bc918.zip
Add missing packages to Linux install scripts (#8895)
Diffstat (limited to 'util')
-rwxr-xr-xutil/linux_install.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/util/linux_install.sh b/util/linux_install.sh
index 9ef064157..d30f78655 100755
--- a/util/linux_install.sh
+++ b/util/linux_install.sh
@@ -32,6 +32,7 @@ if grep ID /etc/os-release | grep -qE "fedora"; then
32 avr-libc \ 32 avr-libc \
33 binutils-avr32-linux-gnu \ 33 binutils-avr32-linux-gnu \
34 clang \ 34 clang \
35 avrdude \
35 dfu-util \ 36 dfu-util \
36 dfu-programmer \ 37 dfu-programmer \
37 diffutils \ 38 diffutils \
@@ -67,6 +68,7 @@ elif grep ID /etc/os-release | grep -qE 'debian|ubuntu'; then
67 gcc-avr \ 68 gcc-avr \
68 git \ 69 git \
69 libnewlib-arm-none-eabi \ 70 libnewlib-arm-none-eabi \
71 avrdude \
70 libusb-dev \ 72 libusb-dev \
71 python3 \ 73 python3 \
72 python3-pip \ 74 python3-pip \
@@ -110,6 +112,7 @@ elif grep ID /etc/os-release | grep -q gentoo; then
110 app-arch/unzip \ 112 app-arch/unzip \
111 app-arch/zip \ 113 app-arch/zip \
112 app-mobilephone/dfu-util \ 114 app-mobilephone/dfu-util \
115 dev-embedded/dfu-programmer \
113 dev-embedded/avrdude \ 116 dev-embedded/avrdude \
114 net-misc/wget \ 117 net-misc/wget \
115 sys-devel/clang \ 118 sys-devel/clang \
@@ -126,6 +129,7 @@ elif grep ID /etc/os-release | grep -q sabayon; then
126 app-arch/unzip \ 129 app-arch/unzip \
127 app-arch/zip \ 130 app-arch/zip \
128 app-mobilephone/dfu-util \ 131 app-mobilephone/dfu-util \
132 dev-embedded/dfu-programmer \
129 dev-embedded/avrdude \ 133 dev-embedded/avrdude \
130 dev-lang/python \ 134 dev-lang/python \
131 net-misc/wget \ 135 net-misc/wget \
@@ -151,7 +155,8 @@ elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
151 cross-avr-binutils \ 155 cross-avr-binutils \
152 cross-arm-none-newlib-devel \ 156 cross-arm-none-newlib-devel \
153 cross-arm-binutils cross-arm-none-newlib-devel \ 157 cross-arm-binutils cross-arm-none-newlib-devel \
154 dfu-tool \ 158 avrdude \
159 dfu-util \
155 dfu-programmer \ 160 dfu-programmer \
156 gcc \ 161 gcc \
157 libusb-devel \ 162 libusb-devel \
@@ -216,6 +221,7 @@ elif grep ID /etc/os-release | grep -q void; then
216 avr-gcc \ 221 avr-gcc \
217 avr-libc \ 222 avr-libc \
218 $CROSS_ARM \ 223 $CROSS_ARM \
224 avrdude \
219 dfu-programmer \ 225 dfu-programmer \
220 dfu-util \ 226 dfu-util \
221 gcc \ 227 gcc \