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

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