diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-08-24 19:56:54 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-08-27 08:54:43 -0400 |
commit | daf4d237c0fdbaad58f3c6f5cb3b3e32f3e996e4 (patch) | |
tree | 027c748b83716c94619abb8a9f93ad93f943366f | |
parent | 051e8724a0e05f2583be91830e5694444d04e26a (diff) | |
download | kutter-daf4d237c0fdbaad58f3c6f5cb3b3e32f3e996e4.tar.gz kutter-daf4d237c0fdbaad58f3c6f5cb3b3e32f3e996e4.tar.xz kutter-daf4d237c0fdbaad58f3c6f5cb3b3e32f3e996e4.zip |
scripts: No longer require bossa-cli in install-octopi.sh
Now that there is a local copy of bossac in the lib directory, there's
no reason to require a system version of it.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rwxr-xr-x | scripts/install-octopi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-octopi.sh b/scripts/install-octopi.sh index a2cbf0d9..74b7bdf2 100755 --- a/scripts/install-octopi.sh +++ b/scripts/install-octopi.sh @@ -16,7 +16,7 @@ install_packages() # AVR chip installation and building PKGLIST="${PKGLIST} avrdude gcc-avr binutils-avr avr-libc" # ARM chip installation and building - PKGLIST="${PKGLIST} bossa-cli stm32flash libnewlib-arm-none-eabi" + PKGLIST="${PKGLIST} stm32flash libnewlib-arm-none-eabi" PKGLIST="${PKGLIST} gcc-arm-none-eabi binutils-arm-none-eabi" # Update system package info |