diff options
author | Jonathan Paugh <jpaugh@gmx.us> | 2020-12-29 20:21:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 02:21:00 +0000 |
commit | 992380a5ddc87546f124238b53122c23ade6b421 (patch) | |
tree | 0fc8b3fdf2c8f35e8ee7543ddb6028acfd39b0ce | |
parent | b4ea0a70be9966aa1459bc99e089fbdda59ea049 (diff) | |
download | qmk_firmware-992380a5ddc87546f124238b53122c23ade6b421.tar.gz qmk_firmware-992380a5ddc87546f124238b53122c23ade6b421.zip |
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>
-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 e7180c651..0ae9764a3 100755 --- a/util/install/debian.sh +++ b/util/install/debian.sh | |||
@@ -16,7 +16,7 @@ _qmk_install() { | |||
16 | python3-pip \ | 16 | python3-pip \ |
17 | binutils-avr gcc-avr avr-libc \ | 17 | binutils-avr gcc-avr avr-libc \ |
18 | binutils-arm-none-eabi gcc-arm-none-eabi libnewlib-arm-none-eabi \ | 18 | binutils-arm-none-eabi gcc-arm-none-eabi libnewlib-arm-none-eabi \ |
19 | avrdude dfu-programmer dfu-util teensy-loader-cli | 19 | avrdude dfu-programmer dfu-util teensy-loader-cli libusb-dev |
20 | 20 | ||
21 | python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt | 21 | python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt |
22 | } | 22 | } |