Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Meta Ros
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
uav-hds
intel-aero
Meta Ros
Commits
3c2c4002
Commit
3c2c4002
authored
12 years ago
by
Lukas Bulwahn
Browse files
Options
Downloads
Patches
Plain Diff
adding installation script for installing within the virtual machine; more README
parent
803f278f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.af_yocto
+16
-2
16 additions, 2 deletions
README.af_yocto
install.sh
+17
-0
17 additions, 0 deletions
install.sh
with
33 additions
and
2 deletions
README.af_yocto
+
16
−
2
View file @
3c2c4002
...
...
@@ -13,8 +13,14 @@ INSTALLATION and USE:
builds our specifically configured linux image.
With `runqemu qemux86-64 core-image-bmw` the linux image runs within a virtual machine.
We assume that this is running on and compiled for an x86-64 architecture. For other architectures, some settings must be adjusted.
Unpack ros_server.tar.gz somewhere, adjust pathes in fuerte-ros-base.rosinstall to the location where it has been unpacked.
After starting the virtual machine, copy the installation script from the guest system to the home directory with scp and execute it.
scp lukas@192.168.7.1:/<location of repository>/install.sh .
sh ./install.sh
CONTENT of the repository:
...
...
@@ -25,10 +31,18 @@ CONTENT of the repository:
meta/recipes-devtools/python/python-pyyaml_3.10.bb recipe for pyyaml python library
meta/recipes-devtools/python/python-rospkg_1.0.15.bb recipe for rospkg tool
RESOLVED ISSUES:
- recipes for python-pyyaml and python-rospkg create invalid shell scripts (header line refers to python-native instead of python.)
RESOLVED by patching distutils class--will be committed to yocto.
OPEN ISSUES:
- Yocto: python-setuptools requires python-modules at run-time.
- recipe for log4cxx requires another patch.
- Yocto: python-setuptools requires some python-modules at run-time.
TEMPORARILY RESOLVED by adding all python-modules in the image
SHOULD BE RESOLVED by creating an appropriate patch for python-setuptools and contributing to openembedded-core
- rospkg modules are not found when runnning python.
UNCLEAR. Maybe we need rospkg-dev?
- Compilation with make fails in the virtual machine because of insufficient memory during compilation.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
install.sh
0 → 100644
+
17
−
0
View file @
3c2c4002
# create ssh login without password
ssh-keygen
-t
rsa
cat
.ssh/id_rsa.pub | ssh lukas@192.168.7.1
'cat >> .ssh/authorized_keys'
# copy prepared rosinstall file
scp lukas@192.168.7.1:/home/lukas/ros_server/fuerte-ros-base.rosinstall
.
# run rosinstall
mkdir
~/ros
rosinstall
--catkin
~/ros fuerte-ros-base.rosinstall
# install rospkg manually
git clone ssh://lukas@192.168.7.1//home/lukas/ros_server/rospkg
cd
~/rospkg
python setup.py
install
# cmake invocation
cd
~/ros
mkdir
build
cd
build
cmake ..
-DCMAKE_INSTALL_PREFIX
=
/opt/ros/fuerte
-DSETUPTOOLS_DEB_LAYOUT
=
OFF
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment