aboutsummaryrefslogtreecommitdiff
path: root/util/linux_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/linux_install.sh')
-rwxr-xr-xutil/linux_install.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/util/linux_install.sh b/util/linux_install.sh
index 608975a91..5e2afe999 100755
--- a/util/linux_install.sh
+++ b/util/linux_install.sh
@@ -25,6 +25,7 @@ if grep ID /etc/os-release | grep -qE "fedora"; then
25 kernel-headers \ 25 kernel-headers \
26 make \ 26 make \
27 perl \ 27 perl \
28 python3 \
28 unzip \ 29 unzip \
29 wget \ 30 wget \
30 zip 31 zip
@@ -47,6 +48,7 @@ elif grep ID /etc/os-release | grep -qE 'debian|ubuntu'; then
47 gcc-avr \ 48 gcc-avr \
48 git \ 49 git \
49 libnewlib-arm-none-eabi \ 50 libnewlib-arm-none-eabi \
51 python3 \
50 unzip \ 52 unzip \
51 wget \ 53 wget \
52 zip 54 zip
@@ -66,6 +68,7 @@ elif grep ID /etc/os-release | grep -q 'arch\|manjaro'; then
66 diffutils \ 68 diffutils \
67 gcc \ 69 gcc \
68 git \ 70 git \
71 python \
69 unzip \ 72 unzip \
70 wget \ 73 wget \
71 zip 74 zip
@@ -87,6 +90,7 @@ elif grep ID /etc/os-release | grep -q gentoo; then
87 app-arch/zip \ 90 app-arch/zip \
88 app-mobilephone/dfu-util \ 91 app-mobilephone/dfu-util \
89 dev-embedded/avrdude \ 92 dev-embedded/avrdude \
93 dev-lang/python:3.5 \
90 net-misc/wget \ 94 net-misc/wget \
91 sys-devel/gcc \ 95 sys-devel/gcc \
92 sys-devel/crossdev 96 sys-devel/crossdev
@@ -102,6 +106,7 @@ elif grep ID /etc/os-release | grep -q sabayon; then
102 app-arch/zip \ 106 app-arch/zip \
103 app-mobilephone/dfu-util \ 107 app-mobilephone/dfu-util \
104 dev-embedded/avrdude \ 108 dev-embedded/avrdude \
109 dev-lang/python \
105 net-misc/wget \ 110 net-misc/wget \
106 sys-devel/gcc \ 111 sys-devel/gcc \
107 sys-devel/crossdev 112 sys-devel/crossdev
@@ -125,6 +130,7 @@ elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
125 dfu-tool \ 130 dfu-tool \
126 dfu-programmer \ 131 dfu-programmer \
127 gcc \ 132 gcc \
133 python3 \
128 unzip \ 134 unzip \
129 wget \ 135 wget \
130 zip 136 zip
@@ -143,7 +149,8 @@ elif grep ID /etc/os-release | grep -q slackware; then
143 dfu-util \ 149 dfu-util \
144 arm-binutils \ 150 arm-binutils \
145 arm-gcc \ 151 arm-gcc \
146 newlib 152 newlib \
153 python3
147 echo "Done!" 154 echo "Done!"
148 else 155 else
149 echo "Quitting..." 156 echo "Quitting..."