Browse Source

Tools/ros: add license info

sbg
Thomas Gubler 10 years ago
parent
commit
33a32fca14
  1. 1
      Tools/ros/docker/px4-ros-full/Dockerfile
  2. 2
      Tools/ros/docker/px4-ros-full/README.md
  3. 2
      Tools/ros/docker/px4-ros-full/scripts/setup-workspace.sh
  4. 1
      Tools/ros/px4_ros_installation_ubuntu.sh
  5. 1
      Tools/ros/px4_workspace_create.sh
  6. 2
      Tools/ros/px4_workspace_setup.sh
  7. 4
      Tools/ros/vagrant/docker-host-base/Vagrantfile
  8. 3
      Tools/ros/vagrant/docker-host-base/config/docker-default
  9. 1
      Tools/ros/vagrant/docker-host-base/config/xsessionrc
  10. 2
      Tools/ros/vagrant/docker-host/Vagrantfile
  11. 1
      Tools/ros/vagrant/px4-ros/Vagrantfile

1
Tools/ros/docker/px4-ros-full/Dockerfile

@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
#
# PX4 full ROS container
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
FROM ubuntu:14.04.1
MAINTAINER Andreas Antener <andreas@uaventure.com>

2
Tools/ros/docker/px4-ros-full/README.md

@ -2,6 +2,8 @@ @@ -2,6 +2,8 @@
Full desktop ROS container.
License: according to LICENSE.md in the root directory of the PX4 Firmware repository
**TODO:**
- use https://github.com/phusion/baseimage-docker as base

2
Tools/ros/docker/px4-ros-full/scripts/setup-workspace.sh

@ -3,6 +3,8 @@ @@ -3,6 +3,8 @@
# Create workspace at current location and fetch source repositories
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
WDIR=`pwd`
WORKSPACE=$WDIR/catkin_ws

1
Tools/ros/px4_ros_installation_ubuntu.sh

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
#!/bin/sh
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
# main ROS Setup
# following http://wiki.ros.org/indigo/Installation/Ubuntu

1
Tools/ros/px4_workspace_create.sh

@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
#!/bin/sh
# this script creates a catkin_ws in the current folder
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
mkdir -p catkin_ws/src
cd catkin_ws/src

2
Tools/ros/px4_workspace_setup.sh

@ -1,4 +1,6 @@ @@ -1,4 +1,6 @@
#!/bin/bash
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
# run this script from the root of your catkin_ws
source devel/setup.bash
cd src

4
Tools/ros/vagrant/docker-host-base/Vagrantfile vendored

@ -9,6 +9,8 @@ @@ -9,6 +9,8 @@
# After build, do "vagrant package --base docker-host-base" to package,
# and import as box: "vagrant box add --name uaventure/docker-host-base package.box"
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
@ -19,7 +21,7 @@ Vagrant.configure(2) do |config| @@ -19,7 +21,7 @@ Vagrant.configure(2) do |config|
vb.gui = true
vb.memory = "1024"
end
config.vm.provision "file", source: "config/docker-default", destination: "/home/vagrant/docker-default"
config.vm.provision "file", source: "config/xsessionrc", destination: "/home/vagrant/.xsessionrc"

3
Tools/ros/vagrant/docker-host-base/config/docker-default

@ -23,4 +23,7 @@ @@ -23,4 +23,7 @@
#export TMPDIR="/mnt/bigdrive/docker-tmp"
# Expose TCP port in addition to socket
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
DOCKER_OPTS="${DOCKER_OPTS} -H unix:///var/run/docker.sock -H 0.0.0.0:2375"

1
Tools/ros/vagrant/docker-host-base/config/xsessionrc

@ -2,4 +2,5 @@ @@ -2,4 +2,5 @@
#
# Disable X access control so we can easily start GUI apps
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
xhost +

2
Tools/ros/vagrant/docker-host/Vagrantfile vendored

@ -12,6 +12,8 @@ @@ -12,6 +12,8 @@
# You can then load an existing image, e.g.:
# "docker load -i container-image.tar"
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
Vagrant.configure(2) do |config|
config.vm.box = "uaventure/docker-host-base"

1
Tools/ros/vagrant/px4-ros/Vagrantfile vendored

@ -23,6 +23,7 @@ @@ -23,6 +23,7 @@
# - 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
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
Vagrant.configure(2) do |config|
# Configure docker host

Loading…
Cancel
Save