You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
435 B

#!/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
}