aboutsummaryrefslogtreecommitdiff
path: root/Tools/ros/docker/px4-ros/px4-ros-sitl/get-sources.sh
blob: 237ae7500a663d6da08695a7d803ca2cda9dc45e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
#
# Fetch source repositories
#

# PX4 Firmware
git clone https://github.com/PX4/Firmware.git \
	&& cd Firmware \
	&& git checkout ros \
	&& cd ..

# euroc simulator
git clone https://github.com/PX4/euroc_simulator.git \
	&& cd euroc_simulator \
	&& git checkout px4_nodes \
	&& cd ..

# mav comm
git clone https://github.com/PX4/mav_comm.git

# glog catkin
git clone https://github.com/ethz-asl/glog_catkin.git

# catkin simple
git clone https://github.com/catkin/catkin_simple.git

echo "Execute catkin_make to compile all the sources."