diff options
author | dragon788 <dragon788@users.noreply.github.com> | 2016-01-16 11:44:27 -0600 |
---|---|---|
committer | dragon788 <dragon788@users.noreply.github.com> | 2016-01-16 11:44:27 -0600 |
commit | 987ac16afde0539dca1f158c1f2186bcb3f26c76 (patch) | |
tree | 02f8bdc214d6ee8924eaf3c02fded6f6ff1c4f30 /avr_setup.sh | |
parent | 71ee3eb2e7fdddbfac4443c5f8522a2f620f86e2 (diff) | |
download | qmk_firmware-987ac16afde0539dca1f158c1f2186bcb3f26c76.tar.gz |
Updated avr script and added notes to Vagrantfile
Diffstat (limited to 'avr_setup.sh')
-rw-r--r-- | avr_setup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/avr_setup.sh b/avr_setup.sh index 15f3118c0..4b2528085 100644 --- a/avr_setup.sh +++ b/avr_setup.sh @@ -51,7 +51,7 @@ elif [[ -n "$(type -P yum)" ]]; then elif [[ -n "$(type -P zypper)" ]]; then # openSUSE - zypper refresh --non-interactive && zypper update --non-interactive + zypper --non-interactive refresh && zypper --non-interactive update zypper --non-interactive install \ git \ make \ @@ -59,6 +59,6 @@ elif [[ -n "$(type -P zypper)" ]]; then kernel-devel \ patch \ wget \ - dfu-util + dfu-programmer fi |