...
Code Block |
---|
|
# You should still be ssh'd into the box
# Check with whoami - it should say "vagrant"
whoami
# Access the shared folder - found at box/shared
cd ~/shared
# Clone the firmware repo
git clone https://github.com/uw-midsun/firmware_xiv.git && cd firmware_xiv
# Try to build the firmware
make build_all |
...
Code Block |
---|
|
# Configure git
git config --global user.name "Your Name"
git config --global user.email youremail@example.com
git config --global push.default simple
git config --global core.autocrlf input
# Only works for git >= 2.9
git config core.hooksPath hooks
# If git < 2.9 (All boxes before the 18.04 release)
rm -rf .git/hooks && ln -s ~/shared/firmware_xiv/hooks .git/hooks |
Please use the email that's associated with your GitHub account.
...
Code Block |
---|
|
# Bring up the virtual machine
# This step is only necessary after a reboot
vagrant up
# Access the box
vagrant ssh
# Move to the firmware_xiv folder
cd shared/firmware_xiv
# See https://github.com/uw-midsun/firmware#usagefirmware_xiv #usage for some common commands
make [cmd] ... |
...