]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - util/linux_install.sh
Fix install for Linux Ubuntu (#7520)
[qmk_firmware.git] / util / linux_install.sh
index 3df7c0b2ae71d22465bd8af1e17388ef176d4358..92298141827675a1b19671f1a7c4386be1d69a82 100755 (executable)
@@ -2,12 +2,24 @@
 
 # Note: This file uses tabs to indent. Please don't mix tabs and spaces.
 
-GENTOO_WARNING="This script will make a USE change in order to ensure that that QMK works on your system. All changes will be sent to the the file /etc/portage/package.use/qmk_firmware -- please review it, and read Portage's output carefully before installing any packages on your system. You will also need to ensure that your kernel is compiled with support for the keyboard chip that you are using (e.g. enable Arduino for the Pro Micro). Further information can be found on the Gentoo wiki."
+GENTOO_WARNING="This script will make a USE change in order to ensure that that QMK works on your system. All changes will be sent to the the file /etc/portage/package.use/qmkfirmware -- please review it, and read Portage's output carefully before installing any packages on your system. You will also need to ensure that your kernel is compiled with support for the keyboard chip that you are using (e.g. enable Arduino for the Pro Micro). Further information can be found on the Gentoo wiki."
 
 SLACKWARE_WARNING="You will need the following packages from slackbuilds.org:\n\tarm-binutils\n\tarm-gcc\n\tavr-binutils\n\tavr-gcc\n\tavr-libc\n\tavrdude\n\tdfu-programmer\n\tdfu-util\n\tnewlib\nThese packages will be installed with sudo and sboinstall, so ensure that your user is added to sudoers and that sboinstall is configured."
 
 SOLUS_INFO="Your tools are now installed. To start using them, open new terminal or source these scripts:\n\t/usr/share/defaults/etc/profile.d/50-arm-toolchain-path.sh\n\t/usr/share/defaults/etc/profile.d/50-avr-toolchain-path.sh"
 
+util_dir=$(dirname "$0")
+
+# For those distros that do not package bootloadHID
+install_bootloadhid() {
+    wget https://www.obdev.at/downloads/vusb/bootloadHID.2012-12-08.tar.gz -O - | tar -xz -C /tmp
+    cd /tmp/bootloadHID.2012-12-08/commandline/
+    if make; then
+        sudo cp bootloadHID /usr/local/bin
+    fi
+    cd -
+}
+
 if grep ID /etc/os-release | grep -qE "fedora"; then
        sudo dnf install \
                arm-none-eabi-binutils-cs \
@@ -17,6 +29,7 @@ if grep ID /etc/os-release | grep -qE "fedora"; then
                avr-gcc \
                avr-libc \
                binutils-avr32-linux-gnu \
+               clang \
                dfu-util \
                dfu-programmer \
                diffutils \
@@ -25,6 +38,7 @@ if grep ID /etc/os-release | grep -qE "fedora"; then
                glibc-headers \
                kernel-devel \
                kernel-headers \
+               libusb-devel \
                make \
                perl \
                python3 \
@@ -42,6 +56,7 @@ elif grep ID /etc/os-release | grep -qE 'debian|ubuntu'; then
                avr-libc \
                binutils-arm-none-eabi \
                binutils-avr \
+               clang-format \
                dfu-programmer \
                dfu-util \
                diffutils \
@@ -50,33 +65,37 @@ elif grep ID /etc/os-release | grep -qE 'debian|ubuntu'; then
                gcc-avr \
                git \
                libnewlib-arm-none-eabi \
+               libusb-dev \
                python3 \
+               python3-pip \
                unzip \
                wget \
                zip
 
 elif grep ID /etc/os-release | grep -q 'arch\|manjaro'; then
        sudo pacman -U https://archive.archlinux.org/packages/a/avr-gcc/avr-gcc-8.3.0-1-x86_64.pkg.tar.xz
-       sudo pacman -S \
+       sudo pacman -S --needed \
                arm-none-eabi-binutils \
                arm-none-eabi-gcc \
                arm-none-eabi-newlib \
+               avrdude \
                avr-binutils \
                avr-libc \
                avr-gcc \
                base-devel \
+               bootloadhid \
+               clang \
+               dfu-programmer \
                dfu-util \
                diffutils \
                gcc \
                git \
+               libusb-compat \
                python \
+               python-pip \
                unzip \
                wget \
                zip
-       git clone https://aur.archlinux.org/dfu-programmer.git /tmp/dfu-programmer
-       cd /tmp/dfu-programmer || exit 1
-       makepkg -sic
-       rm -rf /tmp/dfu-programmer/
 
 elif grep ID /etc/os-release | grep -q gentoo; then
        echo "$GENTOO_WARNING" | fmt
@@ -93,6 +112,7 @@ elif grep ID /etc/os-release | grep -q gentoo; then
                        dev-embedded/avrdude \
                        dev-lang/python:3.5 \
                        net-misc/wget \
+                       sys-devel/clang \
                        sys-devel/gcc \
                        sys-devel/crossdev
                sudo crossdev -s4 --stable --g =4.9.4 --portage --verbose --target avr
@@ -109,6 +129,7 @@ elif grep ID /etc/os-release | grep -q sabayon; then
                dev-embedded/avrdude \
                dev-lang/python \
                net-misc/wget \
+               sys-devel/clang \
                sys-devel/gcc \
                sys-devel/crossdev
        sudo crossdev -s4 --stable --g =4.9.4 --portage --verbose --target avr
@@ -117,12 +138,13 @@ elif grep ID /etc/os-release | grep -q sabayon; then
 elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
        CROSS_AVR_GCC=cross-avr-gcc8
        CROSS_ARM_GCC=cross-arm-none-gcc8
-       if grep ID /etc/os-release | grep -q "15.0"; then
+       if grep ID /etc/os-release | grep -q "15."; then
                CROSS_AVR_GCC=cross-avr-gcc7
                CROSS_ARM_GCC=cross-arm-none-gcc7
        fi
        sudo zypper install \
                avr-libc \
+               clang \
                $CROSS_AVR_GCC \
                $CROSS_ARM_GCC \
                cross-avr-binutils \
@@ -131,6 +153,7 @@ elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
                dfu-tool \
                dfu-programmer \
                gcc \
+               libusb-devel \
                python3 \
                unzip \
                wget \
@@ -170,6 +193,7 @@ elif grep ID /etc/os-release | grep -q solus; then
                avrdude \
                dfu-util \
                dfu-programmer \
+               libusb-devel \
                python3 \
                git \
                wget \
@@ -177,8 +201,35 @@ elif grep ID /etc/os-release | grep -q solus; then
                unzip
        printf "\n$SOLUS_INFO\n"
 
+elif grep ID /etc/os-release | grep -q void; then
+       # musl Void systems don't have glibc cross compilers avaliable in their repos.
+       # glibc Void systems do have musl cross compilers though, for some reason.
+       # So, default to musl, and switch to glibc if it is installed.
+       CROSS_ARM=cross-arm-linux-musleabi
+       if xbps-query glibc > /dev/null; then # Check is glibc if installed
+               CROSS_ARM=cross-arm-linux-gnueabi
+       fi
+
+       sudo xbps-install \
+               avr-binutils \
+               avr-gcc \
+               avr-libc \
+               $CROSS_ARM \
+               dfu-programmer \
+               dfu-util \
+               gcc \
+               git \
+               make \
+               wget \
+               unzip \
+               zip
+
 else
        echo "Sorry, we don't recognize your OS. Help us by contributing support!"
        echo
        echo "https://docs.qmk.fm/#/contributing"
 fi
+
+# Global install tasks
+install_bootloadhid
+pip3 install --user -r ${util_dir}/../requirements.txt