You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
476 B

  1. #!/usr/bin/env bash
  2. _qmk_install_prepare() {
  3. sudo eopkg -y update-repo
  4. sudo eopkg -y upgrade
  5. }
  6. _qmk_install() {
  7. echo "Installing dependencies"
  8. sudo eopkg -y install \
  9. -c system.devel git wget zip unzip \
  10. python3 \
  11. avr-binutils avr-gcc avr-libc \
  12. arm-none-eabi-binutils arm-none-eabi-gcc arm-none-eabi-newlib \
  13. avrdude dfu-programmer dfu-util
  14. python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt
  15. }