<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tonyguards</id>
	<title>PaparazziUAV - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tonyguards"/>
	<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/wiki/Special:Contributions/Tonyguards"/>
	<updated>2026-04-28T21:07:10Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=LisaOveroImage&amp;diff=13837</id>
		<title>LisaOveroImage</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=LisaOveroImage&amp;diff=13837"/>
		<updated>2012-12-11T01:44:21Z</updated>

		<summary type="html">&lt;p&gt;Tonyguards: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Building an Overo image for Lisa with Open Embedded==&lt;br /&gt;
&lt;br /&gt;
The goal is to use openmbedded to build an image for the overo with the bits needed for Lisa. Currently this includes&lt;br /&gt;
# libevent&lt;br /&gt;
# linux kernel 2.6.33.5-rt23 (maintained at git://gitorious.org/linux-omap3/linux-omap3.git)&lt;br /&gt;
## based on gumstix-oe from (git://www.sakoman.com/git/linux-omap-2.6.git)&lt;br /&gt;
## antoine's patch for spi device node on overo&lt;br /&gt;
## 2.6.33.5-rt23 preempt-rt patch&lt;br /&gt;
&lt;br /&gt;
* Make sure you have bitbake and build-essential installed:&lt;br /&gt;
 apt-get install bitbake build-essential&lt;br /&gt;
* Ubuntu 10 will also get errors during bitbake unless the following is installed&lt;br /&gt;
 sudo apt-get install git-core help2man diffstat texi2html texinfo chrpath sgmlspl&lt;br /&gt;
* And don't forget to install glib&lt;br /&gt;
 sudo apt-get install libglib2.0-dev&lt;br /&gt;
* Ubuntu 10 will also need to remove the link for /bin/sh that points to dash and instead point it to bash&lt;br /&gt;
Run &lt;br /&gt;
 sudo dpkg-reconfigure dash&lt;br /&gt;
and answer no when asked whether you want to install dash as /bin/sh.&lt;br /&gt;
&lt;br /&gt;
or alternative:&lt;br /&gt;
 sudo su -&lt;br /&gt;
 cd /bin &amp;amp;&amp;amp; rm -f sh &amp;amp;&amp;amp; ln -s bash sh&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Make an overo-oe directory in your home directory!!!!!, cd into it!!:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/overo-oe&lt;br /&gt;
 cd ~/overo-oe&lt;br /&gt;
&lt;br /&gt;
* Clone Allen's openmebedded tree:&lt;br /&gt;
 git clone git://gitorious.org/linux-omap3/openembedded.git org.openembedded.dev&lt;br /&gt;
&lt;br /&gt;
(If you want to take a look at the repository beforehand you can find it [http://gitorious.org/linux-omap3/openembedded Here])&lt;br /&gt;
&lt;br /&gt;
* Copy build profile into ~/overo-oe, source it:&lt;br /&gt;
&lt;br /&gt;
 cp -r org.openembedded.dev/contrib/jei/build .&lt;br /&gt;
 source ~/overo-oe/build/profile&lt;br /&gt;
&lt;br /&gt;
* Use bitbake to build the image:&lt;br /&gt;
 bitbake omap3-lisa-image&lt;br /&gt;
&lt;br /&gt;
On July 9 2010, on an up to date lucid lynx, the build is broken due to a bug in bug in gzip ( yeah.. they still have that... )&lt;br /&gt;
&lt;br /&gt;
ERROR:&lt;br /&gt;
....expat_2.0.1.bb do_unpack failed &lt;br /&gt;
&lt;br /&gt;
solution to this error:&lt;br /&gt;
&lt;br /&gt;
http://www.facebook.com/note.php?note_id=398968379361&lt;br /&gt;
&lt;br /&gt;
follow instructions of ERROR#1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In short:&lt;br /&gt;
 cd~/&lt;br /&gt;
 sudo apt-get install gzrt&lt;br /&gt;
 cd ~/overo-oe/sources/&lt;br /&gt;
 gzrecover expat-2.0.1.tar.gz;mv expat-2.0.1.tar.recovered expat-2.0.1.tar;gzip expat-2.0.1.tar&lt;br /&gt;
say yes to the overwrite&lt;br /&gt;
 md5sum expat-2.0.1.tar.gz; sha256sum expat-2.0.1.tar.gz&lt;br /&gt;
note them somewhere&lt;br /&gt;
 gedit expat-2.0.1.tar.gz.md5&lt;br /&gt;
replace with the new MD5 checksum and save&lt;br /&gt;
 cd ~/overo-oe/org.openembedded.dev/recipes/expat&lt;br /&gt;
 gedit expat_2.0.1.bb &lt;br /&gt;
change the MD5 and SHA256 checksums there to reflect the new ones, and save&lt;br /&gt;
 cd ~/overo-oe/&lt;br /&gt;
 bitbake omap3-lisa-image&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ERROR:&lt;br /&gt;
'.../overo-oe/org.openembedded.dev/recipes/libsamplerate/libsamplerate0_0.1.7.bb' failed&lt;br /&gt;
&lt;br /&gt;
solution:&lt;br /&gt;
http://old.nabble.com/Building-omap3-desktop-image-td30020826.html&lt;br /&gt;
&lt;br /&gt;
In short:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Delete the '.../overo-oe/sources/libsamplerate-0.1.7.tar.gz' file&lt;br /&gt;
&lt;br /&gt;
bitbake omap3-lisa-image&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You need to modify the checksums in the recipe&lt;br /&gt;
&lt;br /&gt;
.../overo-oe/org.openembedded.dev/recipes/libsamplerate/libsamplerate0_0.1.7.bb&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
SRC_URI[md5sum] = &amp;quot;6731a81cb0c622c483b28c0d7f90867d&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SRC_URI[sha256sum] = &amp;quot;78ed5d9ff1bf162c4a078f6a3e7432a537dd2f22dc58872b081fb01156027fcc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
from&lt;br /&gt;
&lt;br /&gt;
'#SRC_URI[md5sum] = &amp;quot;ad093e60ec44f0a60de8e29983ddbc0f&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'#SRC_URI[sha256sum] = &amp;quot;e0a646224a0323ac63f56ef009b2d7fee11452a7b8af139b19ae71d2890dbc9c&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Then run&lt;br /&gt;
&lt;br /&gt;
bitbake -c clean libsamplerate0;bitbake libsamplerate0&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://saranasukses.com/outsourcing-indonesia.html Outsourcing Indonesia]&lt;br /&gt;
* [http://littletods.com/en/content/4-perlengkapan-bayi Perlengkapan Bayi]&lt;br /&gt;
* [http://www.doxapest.co.id/index.php/pest-control-dan-anti-rayap Pest Control]&lt;br /&gt;
* [http://www.doxapest.co.id/index.php/pest-control-dan-anti-rayap Anti Rayap]&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]] [[Category:Developer_Documentation]]&lt;/div&gt;</summary>
		<author><name>Tonyguards</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=LisaOveroImage&amp;diff=13826</id>
		<title>LisaOveroImage</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=LisaOveroImage&amp;diff=13826"/>
		<updated>2012-12-10T09:28:37Z</updated>

		<summary type="html">&lt;p&gt;Tonyguards: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Building an Overo image for Lisa with Open Embedded==&lt;br /&gt;
&lt;br /&gt;
The goal is to use openmbedded to build an image for the overo with the bits needed for Lisa. Currently this includes&lt;br /&gt;
# libevent&lt;br /&gt;
# linux kernel 2.6.33.5-rt23 (maintained at git://gitorious.org/linux-omap3/linux-omap3.git)&lt;br /&gt;
## based on gumstix-oe from (git://www.sakoman.com/git/linux-omap-2.6.git)&lt;br /&gt;
## antoine's patch for spi device node on overo&lt;br /&gt;
## 2.6.33.5-rt23 preempt-rt patch&lt;br /&gt;
&lt;br /&gt;
* Make sure you have bitbake and build-essential installed:&lt;br /&gt;
 apt-get install bitbake build-essential&lt;br /&gt;
* Ubuntu 10 will also get errors during bitbake unless the following is installed&lt;br /&gt;
 sudo apt-get install git-core help2man diffstat texi2html texinfo chrpath sgmlspl&lt;br /&gt;
* And don't forget to install glib&lt;br /&gt;
 sudo apt-get install libglib2.0-dev&lt;br /&gt;
* Ubuntu 10 will also need to remove the link for /bin/sh that points to dash and instead point it to bash&lt;br /&gt;
Run &lt;br /&gt;
 sudo dpkg-reconfigure dash&lt;br /&gt;
and answer no when asked whether you want to install dash as /bin/sh.&lt;br /&gt;
&lt;br /&gt;
or alternative:&lt;br /&gt;
 sudo su -&lt;br /&gt;
 cd /bin &amp;amp;&amp;amp; rm -f sh &amp;amp;&amp;amp; ln -s bash sh&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Make an overo-oe directory in your home directory!!!!!, cd into it!!:&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/overo-oe&lt;br /&gt;
 cd ~/overo-oe&lt;br /&gt;
&lt;br /&gt;
* Clone Allen's openmebedded tree:&lt;br /&gt;
 git clone git://gitorious.org/linux-omap3/openembedded.git org.openembedded.dev&lt;br /&gt;
&lt;br /&gt;
(If you want to take a look at the repository beforehand you can find it [http://gitorious.org/linux-omap3/openembedded Here])&lt;br /&gt;
&lt;br /&gt;
* Copy build profile into ~/overo-oe, source it:&lt;br /&gt;
&lt;br /&gt;
 cp -r org.openembedded.dev/contrib/jei/build .&lt;br /&gt;
 source ~/overo-oe/build/profile&lt;br /&gt;
&lt;br /&gt;
* Use bitbake to build the image:&lt;br /&gt;
 bitbake omap3-lisa-image&lt;br /&gt;
&lt;br /&gt;
On July 9 2010, on an up to date lucid lynx, the build is broken due to a bug in bug in gzip ( yeah.. they still have that... )&lt;br /&gt;
&lt;br /&gt;
ERROR:&lt;br /&gt;
....expat_2.0.1.bb do_unpack failed &lt;br /&gt;
&lt;br /&gt;
solution to this error:&lt;br /&gt;
&lt;br /&gt;
http://www.facebook.com/note.php?note_id=398968379361&lt;br /&gt;
&lt;br /&gt;
follow instructions of ERROR#1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In short:&lt;br /&gt;
 cd~/&lt;br /&gt;
 sudo apt-get install gzrt&lt;br /&gt;
 cd ~/overo-oe/sources/&lt;br /&gt;
 gzrecover expat-2.0.1.tar.gz;mv expat-2.0.1.tar.recovered expat-2.0.1.tar;gzip expat-2.0.1.tar&lt;br /&gt;
say yes to the overwrite&lt;br /&gt;
 md5sum expat-2.0.1.tar.gz; sha256sum expat-2.0.1.tar.gz&lt;br /&gt;
note them somewhere&lt;br /&gt;
 gedit expat-2.0.1.tar.gz.md5&lt;br /&gt;
replace with the new MD5 checksum and save&lt;br /&gt;
 cd ~/overo-oe/org.openembedded.dev/recipes/expat&lt;br /&gt;
 gedit expat_2.0.1.bb &lt;br /&gt;
change the MD5 and SHA256 checksums there to reflect the new ones, and save&lt;br /&gt;
 cd ~/overo-oe/&lt;br /&gt;
 bitbake omap3-lisa-image&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ERROR:&lt;br /&gt;
'.../overo-oe/org.openembedded.dev/recipes/libsamplerate/libsamplerate0_0.1.7.bb' failed&lt;br /&gt;
&lt;br /&gt;
solution:&lt;br /&gt;
http://old.nabble.com/Building-omap3-desktop-image-td30020826.html&lt;br /&gt;
&lt;br /&gt;
In short:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Delete the '.../overo-oe/sources/libsamplerate-0.1.7.tar.gz' file&lt;br /&gt;
&lt;br /&gt;
bitbake omap3-lisa-image&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You need to modify the checksums in the recipe&lt;br /&gt;
&lt;br /&gt;
.../overo-oe/org.openembedded.dev/recipes/libsamplerate/libsamplerate0_0.1.7.bb&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
SRC_URI[md5sum] = &amp;quot;6731a81cb0c622c483b28c0d7f90867d&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SRC_URI[sha256sum] = &amp;quot;78ed5d9ff1bf162c4a078f6a3e7432a537dd2f22dc58872b081fb01156027fcc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
from&lt;br /&gt;
&lt;br /&gt;
'#SRC_URI[md5sum] = &amp;quot;ad093e60ec44f0a60de8e29983ddbc0f&amp;quot;&lt;br /&gt;
&lt;br /&gt;
'#SRC_URI[sha256sum] = &amp;quot;e0a646224a0323ac63f56ef009b2d7fee11452a7b8af139b19ae71d2890dbc9c&amp;quot;&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Then run&lt;br /&gt;
&lt;br /&gt;
bitbake -c clean libsamplerate0;bitbake libsamplerate0&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://saranasukses.com/outsourcing-indonesia.html Outsourcing Indonesia]&lt;br /&gt;
* [http://littletods.com/en/content/4-perlengkapan-bayi Perlengkapan Bayi]&lt;br /&gt;
* [http://www.doxapest.co.id/index.php/pest-control-dan-anti-rayap Pest Control]&lt;br /&gt;
* [http://www.doxapest.co.id/index.php/pest-control-dan-anti-rayap Anti Rayap]&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]] [[Category:Developer_Documentation]]&lt;/div&gt;</summary>
		<author><name>Tonyguards</name></author>
	</entry>
</feed>