mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-12 19:44:43 +00:00
removed unused boxes (qmk won't compile with them anyway), updated welcome message
This commit is contained in:
parent
526eabb6f8
commit
a980a7972c
1 changed files with 8 additions and 29 deletions
37
Vagrantfile
vendored
37
Vagrantfile
vendored
|
@ -2,27 +2,8 @@
|
||||||
# vi: set ft=ruby :
|
# vi: set ft=ruby :
|
||||||
|
|
||||||
Vagrant.configure(2) do |config|
|
Vagrant.configure(2) do |config|
|
||||||
# You can only have one config.vm.box uncommented at a time
|
|
||||||
|
|
||||||
# Comment this and uncomment another if you don't want to use the minimal Arch box
|
|
||||||
#config.vm.box = "dragon788/arch-ala-elasticdog"
|
|
||||||
|
|
||||||
# VMware/Virtualbox 64 bit
|
# VMware/Virtualbox 64 bit
|
||||||
config.vm.box = "phusion/ubuntu-14.04-amd64"
|
config.vm.box = "phusion/ubuntu-14.04-amd64"
|
||||||
#
|
|
||||||
# VMware/Virtualbox 64 bit
|
|
||||||
#config.vm.box = "puphpet/centos65-x64"
|
|
||||||
#
|
|
||||||
# The opensuse boxes don't have dfu-util in their default repositories
|
|
||||||
#
|
|
||||||
# The virtualbox version has tools issues
|
|
||||||
# VMware/Virtualbox 64 bit
|
|
||||||
#config.vm.box = "bento/opensuse-13.2-x86_64"
|
|
||||||
#
|
|
||||||
# Virtualbox only
|
|
||||||
#config.vm.box = "bento/opensuse-13.2-i386"
|
|
||||||
# config.vm.box = ""
|
|
||||||
# config.vm.box = ""
|
|
||||||
|
|
||||||
# This section allows you to customize the Virtualbox VM
|
# This section allows you to customize the Virtualbox VM
|
||||||
# settings, ie showing the GUI or upping the memory
|
# settings, ie showing the GUI or upping the memory
|
||||||
|
@ -81,18 +62,16 @@ Vagrant.configure(2) do |config|
|
||||||
config.vm.provision "shell", run: "always", path: "./util/install_dependencies.sh", args: "-update"
|
config.vm.provision "shell", run: "always", path: "./util/install_dependencies.sh", args: "-update"
|
||||||
|
|
||||||
config.vm.post_up_message = <<-EOT
|
config.vm.post_up_message = <<-EOT
|
||||||
Log into the VM using 'vagrant ssh' on OSX or from Git Bash (Win)
|
|
||||||
or 'vagrant ssh-config' and Putty or Bitvise SSH or another SSH tool
|
|
||||||
|
|
||||||
Change directory (cd) to the keyboard you wish to program
|
Log into the VM using 'vagrant ssh'. QMK directory synchronized with host is
|
||||||
(Optionally) modify your layout,
|
located at /vagrant
|
||||||
then run 'make clean'
|
To compile the .hex files use make command inside this directory.
|
||||||
and then 'make' to compile the .eep and .hex files.
|
|
||||||
|
|
||||||
Or you can copy and paste the example line below.
|
|
||||||
|
|
||||||
cd /vagrant; cd keyboards; cd ergodox; make clean; make
|
|
||||||
|
|
||||||
|
QMK's make format recently changed to use folder locations and colons:
|
||||||
|
make project_folder:keymap[:target]
|
||||||
|
Examples:
|
||||||
|
make planck/rev4:default:dfu
|
||||||
|
make planck:default
|
||||||
|
|
||||||
EOT
|
EOT
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue