Commit Graph

906 Commits

Author SHA1 Message Date
Lukas Bulwahn 2ade7620c5 packagegroup-ros-world: completing package list 2015-03-09 11:21:12 +01:00
Lukas Bulwahn c1fcaff73b dwa-local-planner: updating patch's upstream status 2015-03-09 11:21:12 +01:00
KristofRobot 224b15a0b0 Merge pull request #319 from andreasbaak/master
Reduction of runtime dependencies
2015-03-03 18:36:27 +01:00
Andreas Baak 185882428c catkin: split up catkin in order to reduce runtime dependencies
The catkin package has got a runtime dependency to cmake, make,
gcc and other build utilities. These dependencies, however, are
only needed if it is desired to build with catkin on the target
board. If we do not want to build on the target board, i.e., if
we just want to use ros tools like roslaunch, only a small part
of catkin (i.e., the corresponding python packages) is required
to be deployed on the target board.
Therefore, we introduce a new package called catkin-runtime.
It installs only the python packages that are required for
the ros tools to run. The roslib package now depends on
catkin-runtime (previously: catkin).

I also tried an alternative approach which just modifies catkin.bb:
- add a catkin-runtime package
- move PYTHON_SITEPACKAGES_DIR from FILES_catkin to FILES_CATKIN_RUNTIME
- make catkin_runtime RDEPEND on the python stuff
- make catkin RDEPEND on the cmake, binutils, ..., + catkin-runtime
With this setup, for some reason, bitbake thinks that
catkin-runtime still RDEPENDS on binutils. Therefore, I split up
the catkin recipe into two different recipes. Here, the
RDEPENDS are managed correctly.

If we want to deploy catkin as a build tool on the board, we can
simply add a runtime dependency to catkin. However, this should
not be the default setup.
Special thanks go to Tobias Henkel (tobias.henkel@bmw-carit.de)
who deserves most of the credits for this patch.

Signed-off-by: Andreas Baak <andreas.baak@bmw-carit.de>
2015-03-02 13:22:06 +01:00
Lukas Bulwahn a1153b8ce8 rosclean: simplifying run-time dependencies
When roslaunch is started, it checks the file size of the local log
directory by calling:

    disk_usage = rosclean.get_disk_usage(d) [1]

The function `get_disk_usage` [2] in rosclean creates a subprocess and
calls `du -sb` on Linux systems (cf. [3]).

However, the `du` command, which busybox usually provides on an
embedded Linux image, does not support the `-b` option, and only the
`du` command from the coreutils [4] supports this option.
This issue was first reported in April 2013 on the meta-ros issue
tracker [5]. Hence, on the first iteration of this issue, the
commit db0c8d5c [6] simply adds the dependency on coreutils to
roslaunch.

However, this has certain disadvantages:
  - coreutils is licensed under GPLv3 and must not be deployed in a
    product, which is massively distributed to customers.
  - coreutils has larger file-system foot print than busybox and makes
    the minimal Linux images considerably larger.

As a fortuitous circumstance, Alexis Ballier [7] had already observed
this disadvantage and provides a patch [8, 9] that makes
`get_disk_usage` use `du -k`, which works with busybox and coreutils.

So, on the second iteration of this issue, this commit here patches
rosclean's `get_disk_usage` function with the aforementioned patch.
This slightly modifies the semantics of this function. However, I
believe this plays only a minor role for the overall intended
functionality to check if the log usage has reached a critical file-size
limit, and it allows us to remove the dependency on coreutils, which is
much more critical.

Andreas Baak reported the disadvantages of the previous solution, which
triggered the re-investigation. The current resolution has been
discussed and worked out in collaboration with Andreas Baak.

[1] 9da29441f3/tools/roslaunch/src/roslaunch/rlutil.py (L63)
[2] c6e91f9af1/tools/rosclean/src/rosclean/__init__.py (L120)
[3] c6e91f9af1/tools/rosclean/src/rosclean/__init__.py (L130)
[4] http://cgit.openembedded.org/cgit.cgi/openembedded-core/tree/meta/recipes-core/coreutils/coreutils_8.23.bb?h=master
[5] https://github.com/bmwcarit/meta-ros/issues/60
[6] db0c8d5cd1
[7] https://github.com/aballier
[8] https://github.com/ros/ros/pull/76
[9] bbf1f945c7

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
Signed-off-by: Andreas Baak <andreas.baak@bmw-carit.de>
2015-03-02 13:21:44 +01:00
KristofRobot 47eab4263c Merge pull request #317 from bulwahn/master-next
tuning und updating
2015-02-20 19:58:08 +01:00
Lukas Bulwahn 9a5f1dbb1b laser-assembler: updating patch's upstream status 2015-02-20 15:05:19 +01:00
Lukas Bulwahn f11b591ac7 navigation: updating to 1.11.15 2015-02-20 15:05:19 +01:00
Lukas Bulwahn bdd682152a dwa-local-planner: improving linking in CMakeLists.txt
I discovered the linking issue while investigating #291.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
2015-02-20 15:05:19 +01:00
KristofRobot ee404cf2b0 Merge pull request #316 from bulwahn/master-next
work on octomap and README.md
2015-02-18 14:06:22 +01:00
Lukas Bulwahn 37913b13b0 README.md: informing about setup for cv-bridge 2015-02-18 10:55:28 +01:00
Lukas Bulwahn 6eeb185b4c octomap: simplifying recipe
When I investigated the issue #291 with Kristof's patch applied,
I noticed that `bitbake octomap` failed.

Due to my inspection, I believe that the inheritance on ros
was only needed as the ROS_SPN and ROS_SP variables were used in
the recipe. After simply using the default variables, BPN and BP,
I removed the inheritance on ros.

Furthermore, as meta-ros only has one recipe for octomap base
library for now, we do not need to split the recipe definition
in an include and a recipe file.
Probably, this was done as premature optimization believing
that the libraries from the octomap repository, e.g., octovis,
would be added shortly after.

Testing with `bitbake packagegroup-ros-world` reported no errors.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@oss.bmw-carit.de>
2015-02-18 10:55:28 +01:00
Lukas Bulwahn 80b853a27a Merge pull request #315 from KristofRobot/hector-mapping
hector-mapping: initial commit
2015-02-10 10:13:30 +01:00
Kristof Robot 30750e9578 hector-mapping: initial commit 2015-02-08 18:14:03 +01:00
Lukas Bulwahn e43e8c5f76 Merge pull request #314 from KristofRobot/frontier-exploration
frontier-exploration: initial commit
2015-01-31 13:07:28 +01:00
Kristof Robot 6dd53a4e65 frontier-exploration: initial commit 2015-01-31 11:07:39 +01:00
KristofRobot 25a1464796 Merge pull request #312 from bulwahn/master-next
updates and tuning until mid of January 2015
2015-01-21 21:47:04 +01:00
Lukas Bulwahn 6532fab678 python-wstool: updating to 0.1.5 2015-01-21 09:23:18 +01:00
Lukas Bulwahn 8137f62532 python-vcstools: updating to 0.1.36 2015-01-21 09:23:18 +01:00
Lukas Bulwahn 2722544c3f python-rospkg: updating to 1.0.33 2015-01-21 09:23:18 +01:00
Lukas Bulwahn 252eea1003 python-rosinstall: updating to 0.7.4 2015-01-21 09:23:17 +01:00
Lukas Bulwahn f23aabbdb2 python-rosdep: updating to 0.11.0 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 458bbd2d7d python-pyyaml: updating to 3.11 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 3f078157f3 python-netifaces: updating to 0.10.4 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 272e8655c0 python-empy: updating to 3.3.2 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 8f006d5c36 python-catkin-pkg: updating to 0.2.6 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 49fc3ef629 message-runtime: add missing dependency 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 3c6959aba3 gscam: adding patch to compile with boost 1.57 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 031ec5b504 pcl-ros: updating to 1.1.11 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 20a1e98a36 ros-arduino-bridge: initial commit 2015-01-21 09:23:17 +01:00
Lukas Bulwahn d82de65305 ros-comm: updating to 1.10.12 2015-01-21 09:23:17 +01:00
Lukas Bulwahn eb0e7ce025 ros: updating to 1.10.11 2015-01-21 09:23:17 +01:00
Lukas Bulwahn 9ff9a22ba8 roscpp-core: updating to 0.4.4 2015-01-21 09:23:17 +01:00
Lukas Bulwahn b84a2817b2 catkin: updating to 0.5.90 2015-01-21 09:23:17 +01:00
Lukas Bulwahn f889e2c9de cmake-modules: updating to 0.3.3 2015-01-21 09:23:17 +01:00
Lukas Bulwahn fcc2bedc06 navigation: updating to 1.11.14 2015-01-21 09:23:17 +01:00
Lukas Bulwahn b0ae2bfc41 Merge pull request #311 from elmi82/master
Generalize construction of ros_prefix and use it consistently
2015-01-10 11:24:30 +01:00
Lukas Bulwahn 186697948b Merge pull request #310 from KristofRobot/festival-audsp-patch
festival: correcting audsp path (resolves #309)
2015-01-10 11:23:28 +01:00
Lukas Bulwahn f7ec055f63 Merge pull request #308 from simkim/master
roslaunch: Use as documented environment
2015-01-10 11:23:01 +01:00
Timo Mueller 7836f37b17 catkin: Use ros_prefixed paths consistently
ROS and catkin packages install their assets to paths prefixed by
ros_prefix. As the recipe was trying to collect the assets for the dev
package in the wrong locations, the dev package was empty.

To address this we use the ros_prefix consistently across the recipe.
2015-01-09 13:11:28 +01:00
Timo Mueller 7e2eb25e51 classes: Generalize construction of ros_prefix
In special situations, the prefix used by yocto is prefixed by an
additional staging dir and thus not always starting at /. The current
class already covered the special case for building native packages, but
was erroneous when trying to build nativesdk packages.

Instead of dealing with these special cases ourselves, we can prefix the
ros_prefix with yocto's base_prefix. This prefix will contain any
additional dirs yocto decides to use and will therefore always result in
valid directory variables automatically.
2015-01-09 13:11:28 +01:00
Kristof Robot 2ab7e46454 festival: correcting audsp path (resolves #309) 2014-12-24 09:26:50 +01:00
Lukas Bulwahn e6c74f7537 Merge pull request #302 from KristofRobot/QA-fixes
Fixing various QA warnings
2014-12-12 06:43:09 +01:00
Kristof Robot 903265df5b speech-tools: adding perl runtime dependency
Solves following warning:
QA Issue: speech-tools requires /usr/bin/perl,
but no providers in its RDEPENDS [file-rdeps]
2014-12-11 22:06:52 +01:00
Kristof Robot 164b757d38 roslint: adding bash runtime dependency
Solves following warning:
QA Issue: roslint requires /bin/bash,
but no providers in its RDEPENDS [file-rdeps]
2014-12-11 22:06:52 +01:00
Gauthier Monserand ba3ff94092 roslaunch: Use as documented environment
roscore-default: Removing not supported variable in variable
roscore-default: Adding PATH, LD_LIBRARY_PATH and PYTHONPATH
roscore.service: Using /opt/ros/hydro/bin instead of /usr/bin to launch
roscore

You can now install roslaunch-systemd :

opkg install roslaunch-systemd

and start roscore :

systemctl start roscore
2014-12-02 23:16:43 +01:00
Lukas Bulwahn 192a25c424 dropping unmaintained test-reports git submodule (resolves #297) 2014-12-02 08:41:55 +01:00
Lukas Bulwahn 50e9f25b81 robot-model: updating to 1.10.21 2014-12-01 11:27:47 +01:00
Lukas Bulwahn 3bd824377f robot-state-publisher: updating to 1.9.12 2014-12-01 11:27:47 +01:00
Lukas Bulwahn 0325e1be9b packagegroup-ros-world: adding new packages to this group 2014-12-01 11:24:39 +01:00