浏览代码

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>
Jonathan Paugh 4 年之前
父节点
当前提交
992380a5dd
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      util/install/debian.sh

+ 1 - 1
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
 }