From c21d5a09735e84412ee5b3efb4c3f5d3fc734393 Mon Sep 17 00:00:00 2001 From: Ryan Date: Fri, 27 Nov 2020 01:37:54 +1100 Subject: Refactor qmk_install.sh (#10681) --- util/install/solus.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 util/install/solus.sh (limited to 'util/install/solus.sh') diff --git a/util/install/solus.sh b/util/install/solus.sh new file mode 100755 index 0000000000..5633f7039c --- /dev/null +++ b/util/install/solus.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +_qmk_install_prepare() { + sudo eopkg -y update-repo + sudo eopkg -y upgrade +} + +_qmk_install() { + echo "Installing dependencies" + + sudo eopkg -y install \ + -c system.devel git wget zip unzip \ + python3 \ + avr-binutils avr-gcc avr-libc \ + arm-none-eabi-binutils arm-none-eabi-gcc arm-none-eabi-newlib \ + avrdude dfu-programmer dfu-util + + python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt +} -- cgit v1.2.3