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 000000000..fad0605cf --- /dev/null +++ b/util/install/solus.sh | |||
@@ -0,0 +1,19 @@ | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | _qmk_install_prepare() { | ||
4 | sudo eopkg -y update-repo | ||
5 | sudo eopkg -y upgrade | ||
6 | } | ||
7 | |||
8 | _qmk_install() { | ||
9 | echo "Installing dependencies" | ||
10 | |||
11 | sudo eopkg -y install \ | ||
12 | -c system.devel git wget zip unzip \ | ||
13 | python3 \ | ||
14 | avr-binutils avr-gcc avr-libc \ | ||
15 | arm-none-eabi-binutils arm-none-eabi-gcc arm-none-eabi-newlib \ | ||
16 | avrdude dfu-programmer dfu-util | ||
17 | |||
18 | python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt | ||
19 | } | ||