~ruther/qmk_firmware

ref: a87c74ebe14aee0d4a82f5ff8a0170afb8105598 qmk_firmware/util/install/linux_shared.sh -rwxr-xr-x 435 bytes
a87c74eb — Stefan Kerkmann [Bug] Fix non-functional S3 wakeup / resume from suspense (#19780) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

# For those distros that do not package bootloadHID
_qmk_install_bootloadhid() {
    if ! command -v bootloadHID > /dev/null; then
        wget https://www.obdev.at/downloads/vusb/bootloadHID.2012-12-08.tar.gz -O - | tar -xz -C /tmp
        pushd /tmp/bootloadHID.2012-12-08/commandline/ > /dev/null
        if make; then
            sudo cp bootloadHID /usr/local/bin
        fi
        popd > /dev/null
    fi
}