diff options
author | Jonathan Paugh <jpaugh@gmx.us> | 2020-12-29 20:21:00 -0600 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2021-01-12 22:46:12 -0800 |
commit | 88e9c050490b6d32ccfdcf8690fd9e53d4daf29a (patch) | |
tree | ab55b20c85fec7ba0e085563794f33eabb55ae2e /util | |
parent | 88b94867283f00af716d3acc39ee61c204951ca9 (diff) |
Add missing Debian/Ubuntu dependency to the install script (#11348)
To successfully compile bootloadHID, we must have the libusb-config tool, which comes from the libusb-dev package. This package is available in both Ubuntu Groovy and Debian Buster
Co-authored-by: Jonathan Paugh <jpaugh@gmx.com>
Diffstat (limited to 'util')
-rwxr-xr-x | util/install/debian.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/install/debian.sh b/util/install/debian.sh index e7180c6512..0ae9764a33 100755 --- a/util/install/debian.sh +++ b/util/install/debian.sh @@ -16,7 +16,7 @@ _qmk_install() { python3-pip \ binutils-avr gcc-avr avr-libc \ binutils-arm-none-eabi gcc-arm-none-eabi libnewlib-arm-none-eabi \ - avrdude dfu-programmer dfu-util teensy-loader-cli + avrdude dfu-programmer dfu-util teensy-loader-cli libusb-dev python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt } |