diff options
Diffstat (limited to 'util/install/solus.sh')
-rwxr-xr-x | util/install/solus.sh | 19 |
1 files changed, 19 insertions, 0 deletions
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 +} |