~ruther/qmk_firmware

ref: e67a4ba7ce476b5bba273a2d5b693b3641b27dcb qmk_firmware/util/install/linux_shared.sh -rwxr-xr-x 435 bytes
e67a4ba7 — Luis Garcia Update to 'peterfalken' userspace configurations (#21836) 1 year, 9 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
}
Do not follow this link