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.
49 lines
1.2 KiB
49 lines
1.2 KiB
7 years ago
|
#!/bin/bash
|
||
|
echo "Checking homebrew..."
|
||
|
$(which -s brew)
|
||
|
if [[ $? != 0 ]] ; then
|
||
|
echo "installing homebrew..."
|
||
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
||
|
else
|
||
|
echo "Homebrew installed"
|
||
|
fi
|
||
|
|
||
|
#install xconde dependencies
|
||
|
xcode-select --install
|
||
|
|
||
7 years ago
|
brew tap ardupilot/homebrew-px4
|
||
7 years ago
|
brew update
|
||
|
brew install genromfs
|
||
|
brew install gcc-arm-none-eabi
|
||
|
brew install gawk
|
||
|
|
||
|
echo "Checking pip..."
|
||
|
$(which -s pip)
|
||
|
if [[ $? != 0 ]] ; then
|
||
|
echo "installing pip..."
|
||
|
sudo easy_install pip
|
||
|
else
|
||
|
echo "pip installed"
|
||
|
fi
|
||
|
|
||
6 years ago
|
pip2 install --user pyserial future empy mavproxy pexpect
|
||
7 years ago
|
|
||
|
SCRIPT_DIR=$(dirname $(realpath ${BASH_SOURCE[0]}))
|
||
|
ARDUPILOT_ROOT=$(realpath "$SCRIPT_DIR/../../")
|
||
|
ARDUPILOT_TOOLS="Tools/autotest"
|
||
|
|
||
|
exportline="export PATH=$ARDUPILOT_ROOT/$ARDUPILOT_TOOLS:\$PATH";
|
||
|
grep -Fxq "$exportline" ~/.profile 2>/dev/null || {
|
||
6 years ago
|
read -p "Add $ARDUPILOT_ROOT/$ARDUPILOT_TOOLS to your PATH [N/y]?" -n 1 -r
|
||
7 years ago
|
if [[ $REPLY =~ ^[Yy]$ ]] ; then
|
||
|
echo $exportline >> ~/.profile
|
||
|
eval $exportline
|
||
|
else
|
||
|
echo "Skipping adding $ARDUPILOT_ROOT/$ARDUPILOT_TOOLS to PATH."
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
git submodule update --init --recursive
|
||
|
|
||
|
echo "finished"
|