ardupilot/Tools/vagrant/shellinit.sh
Andy Piper 33af275220 Support building of Pixhawk firmware under Vagrant/VirtualBox.
On my Windows 7 machine this is at least 5x faster than a mingw based
build. Most of the requirements were taken from install-prereqs-ubuntu.sh
2015-04-06 15:44:01 -07:00

10 lines
299 B
Bash

# Init that is run every time a new session starts up
export APMROOT=/vagrant
export PATH=$APMROOT/Tools/autotest:$PATH
cd $APMROOT/ArduCopter
echo "Ardupilot environment ready. Run 'sim_vehicle.sh' to start simulating an arducopter instance."
echo "or run 'make sitl' to just do a test build."