~ruther/qmk_firmware

ref: 696bf80375bbcf8feea6b259e5d97ecfefd49f37 qmk_firmware/util/install/linux_shared.sh -rwxr-xr-x 435 bytes
696bf803 — Victor Camargo Clearer text about double tapping reset only working for boot after already having QMK running in board (#23042) 1 year, 8 months 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
}