aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorAndreas Antener <antener_a@gmx.ch>2015-01-22 18:30:15 +0100
committerAndreas Antener <antener_a@gmx.ch>2015-01-24 12:39:14 +0100
commitda8c9af37b2aa183499fb8e2bb205633bce92ded (patch)
tree06113234a6666105edb0f7f6c148155ddecd5825 /Tools
parent353c230db5927b3e060bbfde9a0aa34e27abbe35 (diff)
downloadpx4-firmware-da8c9af37b2aa183499fb8e2bb205633bce92ded.tar.gz
px4-firmware-da8c9af37b2aa183499fb8e2bb205633bce92ded.tar.bz2
px4-firmware-da8c9af37b2aa183499fb8e2bb205633bce92ded.zip
fixed some stuff
Diffstat (limited to 'Tools')
-rw-r--r--Tools/ros/docker/px4-ros/Dockerfile4
-rw-r--r--Tools/ros/docker/px4-ros/scripts/setup-workspace.sh2
-rw-r--r--Tools/ros/vagrant/px4-ros/Vagrantfile1
3 files changed, 4 insertions, 3 deletions
diff --git a/Tools/ros/docker/px4-ros/Dockerfile b/Tools/ros/docker/px4-ros/Dockerfile
index 74291bd14..4b553fa66 100644
--- a/Tools/ros/docker/px4-ros/Dockerfile
+++ b/Tools/ros/docker/px4-ros/Dockerfile
@@ -55,8 +55,8 @@ RUN apt-get -y install ros-indigo-octomap-msgs
# Some QT-Apps/Gazebo don't not show controls without this
ENV QT_X11_NO_MITSHM 1
-COPY scripts/setup-workspace.sh ~/
-RUN chmod +x ~/setup-workspace.sh
+COPY scripts/setup-workspace.sh /root/scripts
+RUN chmod +x /root/setup-workspace.sh
CMD ["/usr/bin/xterm"]
diff --git a/Tools/ros/docker/px4-ros/scripts/setup-workspace.sh b/Tools/ros/docker/px4-ros/scripts/setup-workspace.sh
index 6b5ddb0a5..231166e27 100644
--- a/Tools/ros/docker/px4-ros/scripts/setup-workspace.sh
+++ b/Tools/ros/docker/px4-ros/scripts/setup-workspace.sh
@@ -39,5 +39,5 @@ cd $WORKSPACE/src
git clone https://github.com/catkin/catkin_simple.git
cd $WORKSPACE
-echo "Execute catkin_make to compile all the sources."
+catkin_make
diff --git a/Tools/ros/vagrant/px4-ros/Vagrantfile b/Tools/ros/vagrant/px4-ros/Vagrantfile
index b5169e061..e54370ada 100644
--- a/Tools/ros/vagrant/px4-ros/Vagrantfile
+++ b/Tools/ros/vagrant/px4-ros/Vagrantfile
@@ -18,6 +18,7 @@
# Attention: will loose all data when stopped, vagrant runs this with "--rm"
#
# TODO
+# - do not run the docker container with "--rm" (vagrant default). is that even possible?
# - maybe map a local working directory to compile stuff without loosing it in side the docker container
#