diff options
author | Arksine <arksine.code@gmail.com> | 2020-04-25 14:19:00 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2020-05-28 14:44:51 -0400 |
commit | 380ba2a618ed3ccacc79ded93f44d80cc93a2894 (patch) | |
tree | 0bfa0a71a119a25510da1088add77d18b1a27a6b /scripts/install-ubuntu-18.04.sh | |
parent | 05efccc874f34bf16dbc925946c5bbd06cd2d968 (diff) | |
download | kutter-380ba2a618ed3ccacc79ded93f44d80cc93a2894.tar.gz kutter-380ba2a618ed3ccacc79ded93f44d80cc93a2894.tar.xz kutter-380ba2a618ed3ccacc79ded93f44d80cc93a2894.zip |
scripts: add libusb-1.0 to install scripts
The hid-flash tool depends on libusb-1.0-0-dev
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'scripts/install-ubuntu-18.04.sh')
-rwxr-xr-x | scripts/install-ubuntu-18.04.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-ubuntu-18.04.sh b/scripts/install-ubuntu-18.04.sh index 9472fedb..5c391c13 100755 --- a/scripts/install-ubuntu-18.04.sh +++ b/scripts/install-ubuntu-18.04.sh @@ -19,7 +19,7 @@ install_packages() PKGLIST="${PKGLIST} avrdude gcc-avr binutils-avr avr-libc" # ARM chip installation and building PKGLIST="${PKGLIST} stm32flash libnewlib-arm-none-eabi" - PKGLIST="${PKGLIST} gcc-arm-none-eabi binutils-arm-none-eabi" + PKGLIST="${PKGLIST} gcc-arm-none-eabi binutils-arm-none-eabi libusb-1.0" # Update system package info report_status "Running apt-get update..." |