<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.6(BH)" -->
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>Planet Maemo: category &quot;feed:a820b9e49de58112edb8309d290df351&quot;</title>
        <description>Blog entries from Maemo community</description>
        <link>http://maemo.org/news/planet-maemo/</link>
        <lastBuildDate>Sun, 24 May 2026 06:26:56 +0000</lastBuildDate>
        <generator>FeedCreator 1.7.6(BH)</generator>
        <language>en</language>
        <managingEditor>planet@maemo.org</managingEditor>
        <item>
            <title>Mini6410 – Getting started with Free Software</title>
            <link>http://fl0rian.wordpress.com/2010/09/22/mini6410-getting-started-with-free-software/</link>
            <description><![CDATA[
<p><a href="http://www.arm9.net">FriendlyARM</a> is shipping the new <a title="Official product description (Chinese)" href="http://www.arm9.net/mini6410-feature.asp">Mini6410</a> for a little while now.  It is based on a 533MHz clocked Samsung S3C6410. I do not want  to repeat all the technical details here, an English description can be found <a href="http://andahammer.com/mini6410-4/">here</a>. Lets summarize the features in a simple sentence: It is fast enough for Qt and offers lots of ports for connectivity.</p>
<div id="attachment_232" class="wp-caption alignnone" style="width: 470px"><a href="http://fl0rian.files.wordpress.com/2010/09/mini6410_gpe1.png"><img class="size-full wp-image-232" title="Mini6410 running an OpenEmbedded built GPE Image" src="http://fl0rian.files.wordpress.com/2010/09/mini6410_gpe1.png?w=460&#038;h=361" alt="Mini6410 running an OpenEmbedded built GPE Image" width="460" height="361" /></a><p class="wp-caption-text">Mini6410 running an OpenEmbedded built GPE Image</p></div>
<p>The image pretty much illustrates what we are up to do now &#8211; but lets take a look at the software shipped with the board first. Compared to the older Mini2440 the devices official support DVD offers several more options: We have pre-compiled images based on Android, XUbuntu and Qtopia and an advanced U-Boot which comes with a kind of menu for the basic tasks.  One major problem is that currently the documentation is available in Chinese only which makes it a little bit hard to handle. But translating single paragraphs of the more than 300 pages long PDF manual using Google Translator worked pretty well. The DVD contains important sources for Android, U-Boot and Linux. The Kernel is based on 2.6.28 for the SMDK 6410 reference design and heavily patched. Some parts are quite far from mainline Linux and should be updated to latest standards &#8211; apart from the fact the whole Linux support might want some rebase on 2.6.35.</p>
<p>Now we have a big pile eh&#8230; DVD with stuff that runs on the board already &#8211; what does <a href="http://www.openembedded.org">OpenEmbedded</a> help us with here? Well all the binary stuff serves some purpose but nothing is perfect &#8211; OE helps us with to become more flexible and consistent at the same time. XUbuntu is great with its large package repository to try out things &#8211; but it has quite some requirements about flash storage, RAM and screen size. With OE you have the choice to create a full featured desktop image or to build something that fits your particular need.</p>
<p>So lets take a brief look into OE setup for the Mini6410 and how to install an image built with OE.</p>
<p>If you are new to this topic you should get familiar with OpenEmbedded first. The official <a href="http://wiki.openembedded.net/index.php/Getting_started">getting started</a> document is a good thing to read first. The following section assumes you have your OE set up and cares about the Mini6410 specific bits only. Make sure to use a recent org.openembedded.dev or testing branch.</p>
<p>First set up your <em>local.conf</em> to build for the Mini6410 &#8211; if you are using multiple configuration files then make sure to distribute these bits over the files correctly:</p>
<pre>MACHINE = "mini6410"
DISTRO = "angstrom-2008.1"
LIBC = "eglibc"
GLIBC_GENERATE_LOCALES = "en_GB.UTF-8 de_DE.UTF-8 fr_FR.UTF-8 en_US.UTF-8"</pre>
<p>This will select the Mini6410 as a target device, Ångström distribution and eglibc &#8211; this is the combination I tested. The last line defines a limited set of libc locales to be generated.</p>
<p>Now let&#8217;s build a filesystem image. I built a simple GPE based filesystem image first:</p>
<pre>bitbake x11-gpe-image</pre>
<p>If everything is configured correctly, your harddisk is large enough and your Internet connection ok you should get filesystem and kernel image in <em>$TMPDIR</em>/deploy/eglibc/images/mini6410. For the impatient of you or the ones who get bored during a build (no I don not suffer from this) I have uploaded my results <a href="http://linuxtogo.org/~florian/files/mini6410/">here</a>.</p>
<p>Finally lets go ahead an install these files into the internal NAND flash. I&#8217;m using U-Boot on the boards &#8211; we want to stay open and do not rely on propitiatory software. Keep this in mind if you intend to make a product: Any component you are not able to influence has potential to cause trouble and in most cases it will do this &#8211; sooner or later.</p>
<p>There are several ways to install files and to configure U-Boot. Here we use a quite generic solution using TFTP to transfer the images and fixed addresses. Not the best solution but the simplest. First if you do not have a DHCP server you have to configure networking:</p>
<pre>setenv ipaddr &lt;some IP for the board&gt;
setenv serverip &lt;your server's IP&gt;</pre>
<p>If you have a DHCP server you can skip this step and write &#8220;dhcp&#8221; instead of &#8220;tftp&#8221; in the commands below. These will download the files and install them into the internal NAND flash:</p>
<pre>tftp 0xc0008000 uImage-mini6410.ubi
nand erase 0x80000 0x500000
nand write 0xc0008000 0x80000 0x500000

tftp 0xc0008000 x11-gpe-image-mini6410.ubi
nand erase 0x580000
nand write 0xc0008000 0x580000 ${filesize}</pre>
<p>Finally we configure the boot parameters to match the installed kernel + filesystem and save these:</p>
<pre>setenv bootargs console=ttySAC0,115200 ubi.mtd=2
   root=ubi0:rootfs-mini6410 rootfstype=ubifs
saveenv</pre>
<p>(note that the first command needs to be entered in a single line)</p>
<p>We do not have to pass information about the MTD partition layout to the kernel since we follow the kernel&#8217;s built-in default in this configuration. Just reset your board and check if it boots into your shiny new filesystem. If something is wrong then please drop me a mail providing information (e.g. bootlog, screenshot, configuration files&#8230;). This could help to improve this little text and OpenEmbedded support for the Mini6410.</p>
<p>What now?</p>
<p>Try more useful targets with OpenEmbedded. If you like to build an installable cross toolchain matching your filesystem you could build the <em>meta-toolchain-gpe</em> target for example.</p>
<p>Enjoy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=230&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=c5afb7a2f38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/c5afb7a2f38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=c5afb7a2f38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/c5afb7a2f38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Wed, 22 Sep 2010 23:15:07 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-c5afb7a2f38d11df9a6e45ecc92e3df93df9</guid>
        </item>
        <item>
            <title>Sim.One Images with OpenEmbedded</title>
            <link>http://fl0rian.wordpress.com/2010/09/03/sim-one-images-with-openembedded/</link>
            <description><![CDATA[
<p>It took me a while to get started with the blog again&#8230; so let&#8217;s start with something tiny: OpenEmbedded images for the <a href="http://simplemachines.it/index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=7">Sim.One</a>. So far we had quite some documentation about filesystems on external media but what about the internal flash? We have 8MB which is enough for a tiny filesystem we can build with OpenEmbedded.</p>
<div class="wp-caption alignnone" style="width: 624px"><img class=" " title="Sim.One (OpenEmbedded booth at LinuxTag)" src="http://linuxtogo.org/~florian/img/linuxtag2010-2.jpg" alt="" width="614" height="410" /><p class="wp-caption-text">Sim.One (OpenEmbedded booth at LinuxTag)</p></div>
<p>OE has support for the Sim.One already and I just added the parameters to build jffs2 filesystems for the internal NOR flash. In order to build jffs2 images for the Sim.One use the current org.openembedded.dev branch.</p>
<p><strong>OpenEmbedded Setup</strong><br />
I just want to introduce the basic ideas and useful settings for these images. More generic information about how to get started with OE can be found <a href="http://wiki.openembedded.net/index.php/Getting_started">here</a>. For my tests I used the <em>minimal</em> distribution definintion in OE and built a very small image. The relevant settings for your build configuration (local.conf) are as follows:</p>
<pre>MACHINE = "simone"
DISTRO = "minimal"
LIBC = "eglibc"
IMAGE_FSTYPES = "tar.gz jffs2"</pre>
<p>The <em>minimal-image</em> is a good starting point for the internal flash. The image does not include much of functionality but leaves some free space for additional software. OE does not build the filesystem only, it builds the kernel for us as well so that we can start with a consistent set of files. Let&#8217;s give it a try and install the built results &#8211; I assume you have a U-Boot shell and network+tftp server configured already.</p>
<p><strong>Install Kernel</strong></p>
<pre>erase 0x60080000 0x6027ffff
tftp  0x60080000 uImage-simone.bin</pre>
<p><strong>Install Filesystem</strong></p>
<pre>erase 0x602c0000 0x60800000
tftp 0x602c0000 simone.jffs2</pre>
<p>We need to tell the kernel where to find the patitions. The actual layout we are going to use is as follows:</p>
<pre>Device    size        name
mtd0:     000c0000 "Firmware"
mtd1: 00200000     "Kernel"
mtd2: 00540000    "Root-FS"</pre>
<p>I have set up the configuration of U-Boot in order to minimize te effort booting from some other medium.<br />
<code>setenv bootargs console=ttyAM0 root=/dev/mtdblock2 rootfstype=jffs2 video=ep93xxfb<br />
setenv bootcmd_nor 'setenv bootargs ${bootargs} ${mtdparts} ; bootm 60080000'<br />
setenv bootcmd run bootcmd_nor<br />
setenv mtdparts mtdparts=physmap-flash.0:768k@0(Firmware),<br />
2048k@0xc0000(Kernel),-@0x2c0000(Root-FS)</code></p>
<p><strong>It works&#8230; what can I do now?</strong><br />
Make the filesystem functional: Add useful things to the filesystem &#8211; a good candidate might be busybox httpd. Another useful target in OE is <em>meta-toolchain</em> which creates a cross compilation SDK for your device.</p>
<p>Now that you have read the whole text: If you do not want to build yourself you can take a look at <a href="http://www.linuxtogo.org/~florian/index.php?path=files%2Fsim.one/">my build results</a>.</p>
<p>Enjoy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/220/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=220&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=c512ac6ef38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/c512ac6ef38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=c512ac6ef38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/c512ac6ef38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Fri, 03 Sep 2010 23:47:39 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-c512ac6ef38d11df9a6e45ecc92e3df93df9</guid>
        </item>
        <item>
            <title>MeeGo – some feedback and thoughts</title>
            <link>http://fl0rian.wordpress.com/2010/02/15/meego-some-feedback-and-thoughts/</link>
            <description><![CDATA[
<p>I only had a very few free minutes today I was able to spend following the discussions and reading released information about <a href="http://meego.com">MeeGo</a>. For some reason the most intensively discussed fact among the community members  seems to be decision to use the RPM package system. This one is followed by the Qt vs. GTK+ discussion I cannot remember when it started but I still remember it even started before I wrote the first line of open source code :-)  I have seen a lot of questions about currently existing devices (N900 mostly) and software -  if they are likely to become supported in future MeeGo releases &#8211; at least for the N900 and Maemo 6 there is a <a href="http://jaaksi.blogspot.com/2010/02/this-is-next-step-step-forward.html">statement by Ari Jaaksi</a> already. The other technical questions&#8230; well, in an ideal world these should not even be relevant for the developers because there would be the perfect tools that create the packages you want and assist you to create user interfaces without thinking much about the toolkits you  use. Again &#8211; this is the theory &#8211; we all know that the real life for development is quite different. But in the end or customers / users will decide which platform and with this which applications they are going to use. Users will not care about the package format used in the platform or the toolkit that is used by some application. In fact many (mostly Linux/Unix based) platforms do not expose the software package file format to an average user any more while some quite popular ones still do (e.g. Symbian and Windows). For users the availability of a consistent and widely used software platform with a high amount of available applications is likely to be the most important criterion. Ok, I admit that the availability of sexy hardware is quite important too :-)</p>
<p>Way more interesting than technical details is to look at the landscape of mobile device software stacks and to place MeeGo in it. So how does this landscape look like now?</p>
<ul>
<li>There is Apple with the iPhone &#8211; pretty much closed but many developers and sexy hardware but quite limited amount of devices and only one manufacturer.</li>
<li>Symbian &#8211; well established with a large community but it feels like it hits its limits with modern smartphones.</li>
<li>Samsung just launched Bada which looks quite interesting but does not yet seem to have a large community of developers and users.</li>
<li>Microsoft Windows Mobile is available for many years now but seems to have lost attraction over the years.</li>
<li>Palm WebOS is interesting from both developer and user point of view but I think it will be hard for it to compete with all the major players in this area.</li>
<li>Google developed Android which enjoys a fast growing user- and developer base. It&#8217;s easy to get started with Android and there is a wide range of interesting devices available already. It is quite portable since most of the lowlevel components are open source.</li>
</ul>
<p>Among these the most likely candidate to play the dominating role in the mobile handset market might be Android. At least this is how things look like right now&#8230; we all know this market changes pretty fast and you never know what happens next. I think <a href="http://www.linuxtogo.org/meego-the-android-killer%3F">Nils asked the question</a> quite a few of us asked themselves: Will MeeGo become a kind of &#8220;Android killer&#8221;?</p>
<p>No way I will comment on this but in order to become a more generic platform MeeGo needs to focus on different things Maemo did so far. So far Maemo was focused on supporting a very few devices and contained quite some specialized bits that only worked for the Maemo specific devices and its distribution. I still remember that getting basic support for building the Maemo software stack with OpenEmbedded caused some headaches and sleepless nights. (I was mentor of a GSoC project working on this &#8211; just take a look at <a href="http://rkirti.wordpress.com/">Kirtika&#8217;s blog</a> to find out some details.)  It is good to see that it is quite obvious that MeeGo folks understand that these things will have to change. A good example is the <a href="http://meego.com/developers/hardware-enabling-process">process</a> how to get some hardware supported. For someone like me supporting various device makers the really interesting part will follow: How will the device makers adopt MeeGo and how many of them will &#8216;jump onto the MeeGo boat&#8217;? Having more hardware vendors supporting MeeGo means more users and meant to make the platform more interesting for developers. And gaining interest from developers and users is absolutely vital for any software platform that is going to play a major role in future.</p>
<p>In my opinion there is a lot of potential in MeeGo &#8211; the most important one is the fact that the key components are going to be open and portable. The project joins two (comparably small) developer and user communities and combines this new community with the support by two very successful companies. I can imagine that this base is able to attract quite some more valuable contributors like smaller device makers, software companies and open source projects.</p>
<p>I&#8217;m pretty sure that &#8216;The Big Merge&#8217; is going to cause quite some movement in the mobile device landscape&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/215/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/215/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/215/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=215&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">10 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=d08b1f9a1a9411dfa23c99b706a76b4c6b4c&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/d08b1f9a1a9411dfa23c99b706a76b4c6b4c/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=d08b1f9a1a9411dfa23c99b706a76b4c6b4c&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/d08b1f9a1a9411dfa23c99b706a76b4c6b4c/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Mon, 15 Feb 2010 22:51:14 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-d08b1f9a1a9411dfa23c99b706a76b4c6b4c</guid>
        </item>
        <item>
            <title>MeeGo or Maemo grown up</title>
            <link>http://fl0rian.wordpress.com/2010/02/15/meego-or-maemo-grown-up/</link>
            <description><![CDATA[
<p>Wee..! Big news &#8211; Intel and Nokia joining their open source software platforms Maemo and Moblin into a single one: <a href="http://meego.com/">Meego</a></p>
<p><a href="http://meego.com"><img class="alignnone size-full wp-image-211" title="MeeGo or Maemo grown up" src="http://fl0rian.files.wordpress.com/2010/02/meego1.png?w=213&#038;h=86" alt="" width="213" height="86" /></a></p>
<p>So what does this mean for developers and device manufacturers? One thing is for sure: The new platform will become the &#8220;grown up&#8221; version of Maemo and Moblin. Especially for the Maemo part this means that the focus will change from targeting a very few devices and a quite well-defined software stack to a more generic way to support multiple hard- and software environments. And this is good &#8211; only a portable and easy to support platform is attractive for the device makers while the availability of multiple devices is important for its attractively among software developers.</p>
<p>It looks like we have interesting times ahead&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=209&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">13 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=e83e05741a5011dfa03987be74eee22ae22a&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/e83e05741a5011dfa03987be74eee22ae22a/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>2 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=e83e05741a5011dfa03987be74eee22ae22a&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/e83e05741a5011dfa03987be74eee22ae22a/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Mon, 15 Feb 2010 12:22:25 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-e83e05741a5011dfa03987be74eee22ae22a</guid>
        </item>
        <item>
            <title>FOSDEM 2010</title>
            <link>http://fl0rian.wordpress.com/2010/02/09/fosdem-2010/</link>
            <description><![CDATA[
<p>Something was wrong with FOSDEM this year: The weather &#8211; it was (comparably) warm and the sun was shining all the time!  Apart from this it was a great event like always. I attended it representing the OpenEmbedded project with a small booth. From the OE project perspective FOSDEM was a great success. Apart from meeting people working on other projects that do use or could use OE we had a lot of interest from various other visitors at the booth.</p>
<div id="attachment_198" class="wp-caption alignnone" style="width: 310px"><a href="http://fl0rian.files.wordpress.com/2010/02/fosdem.jpg"><img class="size-medium wp-image-198" title="Visitors at the OE booth" src="http://fl0rian.files.wordpress.com/2010/02/fosdem.jpg?w=300&#038;h=199" alt="Visitors at the OE booth" width="300" height="199" /></a><p class="wp-caption-text">Visitors at the OE booth</p></div>
<p>Some things I noticed during my time at the booth is that we have to improve the presentation of the project a little bit. For many visitors even on a developer event like FOSDEM OpenEmbedded is a quite uncommon project and hard to present. We showed a set of different devices at FOSDEM but we always need to explain that these devices are just samples for possible OE target devices. It&#8217;s not really obvious how to communicate this&#8230; One improvement could be to add sheets with OE information to the devices we show. We should list things like this:</p>
<ul>
<li>Name</li>
<li>CPU Architecture</li>
<li>Useful OE targets</li>
</ul>
<p>Another thing I miss is a kind of poster or info sheet that summarizes OE achievements in some lists and numbers. But anyway I think we are getting better and become more and more popular.</p>
<div id="attachment_201" class="wp-caption alignnone" style="width: 310px"><a href="http://fl0rian.files.wordpress.com/2010/02/fosdem-4.jpg"><img class="size-medium wp-image-201" title="Device collection" src="http://fl0rian.files.wordpress.com/2010/02/fosdem-4.jpg?w=300&#038;h=199" alt="Device collection" width="300" height="199" /></a><p class="wp-caption-text">Device collection</p></div>
<p>We have to thank all the project members who helped with our booth &#8211; most notably Alessandro, Robert, Marcin and Henning for spending a lot of time at the booth. Special thanks should go to Ulf (from Atmel) and Vladimir (from Archos) who made it possible to have some more interesting devices to show. I think this is the first time we didn&#8217;t have a single Zaurus at the booth&#8230; :-)</p>
<p>One more project / booth I think is worth to mention is <a href="http://reprap.org/bin/view/Main/WebHome">Rep Rap</a> / <a href="http://www.makerbot.com/">Makerbot</a>. The bots for turning 3D models into real things you can touch and use gained quite some attraction.</p>
<div id="attachment_202" class="wp-caption alignnone" style="width: 310px"><a href="http://fl0rian.files.wordpress.com/2010/02/fosdem_1.jpg"><img class="size-medium wp-image-202" title="Bots at the booth" src="http://fl0rian.files.wordpress.com/2010/02/fosdem_1.jpg?w=300&#038;h=199" alt="Bots at the booth" width="300" height="199" /></a><p class="wp-caption-text">Bots at the booth</p></div>
<div id="attachment_203" class="wp-caption alignnone" style="width: 310px"><a href="http://fl0rian.files.wordpress.com/2010/02/fosdem-2.jpg"><img class="size-medium wp-image-203" title="Bot detail" src="http://fl0rian.files.wordpress.com/2010/02/fosdem-2.jpg?w=300&#038;h=199" alt="Bot detail" width="300" height="199" /></a><p class="wp-caption-text">Bot detail</p></div>
<p>Did you notice? You can even use these bots make parts for another one&#8230; I think it is worth following these projects. They might become quite important to us in near future.</p>
<div id="attachment_204" class="wp-caption alignnone" style="width: 210px"><a href="http://fl0rian.files.wordpress.com/2010/02/fosdem-5.jpg"><img class="size-medium wp-image-204" title="A working Makerbot" src="http://fl0rian.files.wordpress.com/2010/02/fosdem-5.jpg?w=200&#038;h=300" alt="" width="200" height="300" /></a><p class="wp-caption-text">A working Makerbot - just finished a job</p></div>
<p>I would have some more things to write about &#8211; there were a lot of interesting things going on at FOSDEM but like always time is lacking. More as soon as I manage to write some more lines&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=197&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=c2b1b30cf38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/c2b1b30cf38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=c2b1b30cf38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/c2b1b30cf38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Tue, 09 Feb 2010 22:32:22 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-c2b1b30cf38d11df9a6e45ecc92e3df93df9</guid>
        </item>
        <item>
            <title>Projects at kc</title>
            <link>http://fl0rian.wordpress.com/2010/02/09/spending-my-time/</link>
            <description><![CDATA[
<p>I hope a few people wondered why my blog looked a little bit neglected in the past few months. Well finally I can say that I have been busy with several larger projects I was not supposed to talk about.  For two projects I am involved in there are related press releases from our customers and business partners.</p>
<p>One project is the Linux port to the Höft &amp; Wessel skeye.pos mobile &#8211; I really like  the <a href="http://www.hoeft-wessel.com/en/press/09-11-03-pr.htm">press release</a> because it mentions the fact the supplied devices are running Linux and what the devices are used for. The filesystem on these devices is built with <a href="http://www.openembedded.org">OpenEmbedded</a> and is based on an older <a href="http://www.angstrom-distribution.org">Angström</a> release.</p>
<p>The other big project is closely related to both my job for <a href="http://www.kernelconcepts.de/en">kernel concepts</a> and OpenEmbedded which is one of my favourite open source projects. The <a href="http://www.mucross.com">µCross distribution</a> will support chip- and device vendors who are going to ship Linux-based solutions. The main idea is to combine the power OpenEmbedded and its large community with a good portion simplicity and a few additions. I do not want to mention too many boring details here so I will just introduce the basic concept: The idea is to offer customers binary packages matching their target architecture, matching toolchains and tools for assembling and configuring filesystem images for their devices.</p>
<p>There is not really an offical announcement yet but one of our business partners just <a href="http://www.avnet-memec.eu/products/newsletter/marvell/marvell-issue-43february-2010-launch-of-warpcomm-marvell-mpu-dev-kit.html">announced</a> a nice SBC module which will come with a µCross-based SDK. ﻿The TK71 is a QSeven format module powered by a Marvell 88F6281 SoC (Sheeva core based).</p>
<p>A third project that gained some love is the updated Linux port to the <a href="http://labs.kernelconcepts.de/Projects/Topas-910/">Toshiba Topas910 and TopasA900</a> boards. I am trying to maintain an upstream compatible and up to date Linux port to these devices here &#8211; for the people who do not want to use several year old kernels or this strange Aura stuff.  The latest achievement is that I got some patches to make NAND flash work which is vital for the TopasA900 because its small NOR flash can&#8217;t keep a decent filesystem image with GUI.</p>
<p>Ok now I&#8217;m done with showing off and I should return to do something useful&#8230; such as writing a short report about FOSDEM!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=194&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=c20c3008f38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/c20c3008f38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=c20c3008f38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/c20c3008f38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Tue, 09 Feb 2010 00:34:28 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-c20c3008f38d11df9a6e45ecc92e3df93df9</guid>
        </item>
        <item>
            <title>LinuxTag Summary</title>
            <link>http://fl0rian.wordpress.com/2009/07/06/linuxtag-summary/</link>
            <description><![CDATA[
<p>Finally&#8230; back from LinuxTag I had to go through a big pile of mails and write a lot of answers. I hope I didn&#8217;t forget too many important replies :-)</p>
<p><a href="http://www.linuxtag.org"><img class="alignnone" title="LinuxTag Logo" src="http://linuxtogo.org/~florian/img/ltag.png" alt="" width="102" height="66" /></a></p>
<p>I spent most of the time at the OpenEmbedded stand and even with enough OpenEmbedded people at <a href="http://www.linuxtag.org">LinuxTag</a> I didn&#8217;t manage to attend a single talk. But the OE presentation was much better prepared compared to last year: We had a nice A0-sized poster with the new logo, Marcin brought 2500 printed flyers and we had adhesive tape. (Adhesive tape is useful because people in the neighbourhood of your booth are going to like you :-) Of course we had interesting devices to show: I collected some decices at home and at the office with the focus on useful devices to get started with embedded Linux (such as the BeagleBoard and a Micro2440).</p>
<p>I built a kind of demo stand for the <a href="http://www.beagleboard.org">BeagleBoard</a> and the PICO projector to reduce the cable and device chaos a little bit. It is made from an A5 advertisement sheet holder and a cellphone tripod. The photo shows the idea but most of the necessary cables are missing.</p>
<div id="attachment_178" class="wp-caption alignnone" style="width: 470px"><a href="http://fl0rian.files.wordpress.com/2009/07/beagle-demo-display.jpg"><img class="size-full wp-image-178" title="BeagelBoard Demo Stand" src="http://fl0rian.files.wordpress.com/2009/07/beagle-demo-display.jpg?w=460&#038;h=306" alt="BeagelBoard Demo Stand" width="460" height="306" /></a><p class="wp-caption-text">BeagelBoard Demo Stand</p></div>
<p>We experienced some trouble with my old B4 BeagleBoard and latest filesystem images but the nice guys from the BeagleBoard/TI booth helped us out with a shiny new one &#8211; many thanks!</p>
<p>While we are on it&#8230; some more people deserve thanks: Marcin for flyers and his presence at the booth, Philip Balister who spent a lot of time at the booth too as well as pHilipp Zabel, Henning Heinold and Robert Schuster. Then there is <a href="http://www.tarent.de">Tarent</a> who sponsored and organized the Embedded Area and managed to bring a pretty good supply for coffee :-)</p>
<p>The next important event for OE will be the upcoming OEDEM (the OE Developer Meeting). Please take part in the <a href="http://doodle.com/participation.html?adminKey=&amp;pollId=gzyqwa9ia4zw7vf4&amp;summary=more">poll</a> for the date when it should take place. We are still searching for a good location &#8211; in central Europe preferrably&#8230; suggestions are very welcome.</p>
<p>Have a good time&#8230;</p>
<p>PS: If someone has a good picture of the OE booth&#8230; I&#8217;d like to attach one here to this blog.</p>
<p>Update: Marcin has a photo he took at the OE stand:</p>
<p><a href="http://fl0rian.files.wordpress.com/2009/07/ltag_oe_1.jpg"><img class="alignnone size-full wp-image-190" title="Devices at OE Stand" src="http://fl0rian.files.wordpress.com/2009/07/ltag_oe_1.jpg?w=459&#038;h=613" alt="Devices at OE Stand" width="459" height="613" /></a></p>
<div id="attachment_192" class="wp-caption alignnone" style="width: 469px"><a href="http://fl0rian.files.wordpress.com/2009/07/linuxtag_petra.jpg"><img class="size-full wp-image-192" title="Another photo - by Petra Kirchner" src="http://fl0rian.files.wordpress.com/2009/07/linuxtag_petra.jpg?w=459&#038;h=605" alt="Another photo - by Petra Kirchner" width="459" height="605" /></a><p class="wp-caption-text">Another photo - by Petra Kirchner</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=174&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=c12a3d88f38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/c12a3d88f38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=c12a3d88f38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/c12a3d88f38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Mon, 06 Jul 2009 22:51:20 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-c12a3d88f38d11df9a6e45ecc92e3df93df9</guid>
        </item>
        <item>
            <title>Anjuta Plugin for OpenEmbedded SDK</title>
            <link>http://fl0rian.wordpress.com/2009/06/18/openembedded-and-anjuta/</link>
            <description><![CDATA[
<p>I have always liked the idea to have an <a href="http://www.anjuta.org">Anjuta</a> plugin that simplifies the use of cross toolchains in order to develop for all sorts of mobile and embedded devices. Personally I do not rely on an IDE but I have worked with a lot of developers in the past who are not used to do application development with vi. The same applies to cross toolchains, but there are reasons why people compile natively or why tools like Scratchbox are developed.</p>
<p>Some time ago OpenedHand published an Anjuta plugin for Poky that almost fits these needs &#8211; apart from minor lacks and the fact that you can&#8217;t use it with an <a href="http://www.openembedded.org">OpenEmbedded</a> build tree because it relies on the Poky directory layout. It didn&#8217;t take me long to modify the Poky plugin to fit the needs for OpenEmbedded: I have added automatic detection of the toolchain host prefix and some functionality to deal with the (not 100% fixed) directory layout of OpenEmbedded. So what does it do?</p>
<ul>
<li>Select a toolchain or OpenEmbedded build directory to use</li>
<li>Configure and build a project</li>
<li>Deploying of binaries to a target device using rsync and ssh</li>
<li>Some debug and remote device features from the original plugin I didn&#8217;t test so far</li>
</ul>
<div id="attachment_171" class="wp-caption alignnone" style="width: 470px"><a href="http://fl0rian.files.wordpress.com/2009/06/anjuta-plugin-sdk.png"><img class="size-full wp-image-171" title="Anjuta OpenEmbedded SDK Plugin" src="http://fl0rian.files.wordpress.com/2009/06/anjuta-plugin-sdk.png?w=460&#038;h=285" alt="Anjuta OpenEmbedded SDK Plugin" width="460" height="285" /></a><p class="wp-caption-text">Anjuta OpenEmbedded SDK Plugin</p></div>
<p>It is easy to install (and build if necessary). I have created an initial website for it at <a href="http://labs.kernelconcepts.de/Tools/Anjuta-OE-SDK-Plugin/">KC Labs</a>. You can find both source archive and binary packages for Ubuntu (9.04) and Debian Lenny. Once you have it installed it you should be able to design your GUI, fill it with functionality and deploy the application to a target device withouth leaving Anjuta.</p>
<p>Feedback is very welcome &#8211; if you have ideas about new features or what you would like to see for cross development please let me know!</p>
<p>Have a nice time&#8230;</p>
<p>PS: LinuxTag is approaching &#8211; visit the Embeded Area with projects like OpenEmbedded and Coreboot!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=170&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=c082b14ef38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/c082b14ef38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=c082b14ef38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/c082b14ef38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Thu, 18 Jun 2009 23:38:44 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-c082b14ef38d11df9a6e45ecc92e3df93df9</guid>
        </item>
        <item>
            <title>LinuxTag, GSoC and some progress…</title>
            <link>http://fl0rian.wordpress.com/2009/06/03/linuxtag-gsoc-and-some-progress/</link>
            <description><![CDATA[
<p>Its time to make announcements&#8230; I should have done this earlier, but like always it takes me a while to find a free minute to write things down.</p>
<p>First is about OpenEmbedded: We will be present at <a href="http://www.linuxtag.org">LinuxTag</a> from 24th to 27th of June in Berlin/Germany. I just hope they have a little bit more space for us at the Embedded Area compared to last year. We usually have a lot of interesting devices running OE built Linux we can show. I&#8217;m really looking forward to LinuxTag &#8211; I haven&#8217;t missed one for many years and its always a nice event with a good mixture of community members, business people and users.</p>
<div class="wp-caption alignnone" style="width: 112px"><a href="http://www.linuxtag.org"><img title="LinuxTag" src="http://linuxtogo.org/~florian/img/ltag.png" alt="LinuxTag" width="102" height="66" /></a><p class="wp-caption-text">LinuxTag</p></div>
<p>Google Summer of Code is in progress for some weeks now and I&#8217;m in the great position to mentor a very interesting Maemo project&#8230; something I always wanted to see but noone found time to do it properly so far: Integrate the Maemo software framework into OpenEmbedded. The benefits are quite obvious &#8211; Maemo software will gain compatibility and quality by running on (and if necessary adapting to) various devices. Apart from the fact that Maemo is a pretty good open source framework attracting quite a lot of developers. This is something other devices can and should gain advantage from. Well rkirti made a pretty good description of the project which can be found <a href="http://www.cse.iitm.ac.in/~rkirti/maemo-oe/">here</a>.</p>
<p>It would be pretty cool to see Maemo running on this nice device I received a few days ago&#8230;</p>
<div id="attachment_164" class="wp-caption alignnone" style="width: 470px"><a href="http://fl0rian.files.wordpress.com/2009/06/micro2440_gpe1.png"><img class="size-full wp-image-164" title="Micro2440 running gpe-mini-browser2" src="http://fl0rian.files.wordpress.com/2009/06/micro2440_gpe1.png?w=460&#038;h=339" alt="micro2440_gpe" width="460" height="339" /></a><p class="wp-caption-text">Micro2440 running gpe-mini-browser2</p></div>
<p>Its a FriendlyARM Micro2440 from <a rel="#someid2" href="http://www.watterott-electronic.com/">Watterott Electronic</a> &#8211; this one is equipped with the 7 inch display which gives some more &#8220;freedom&#8221; to the applications :-) Apart from this the hardware is the same I described in my previous post.</p>
<p>The screen geometry would match the one used by all Maemo devices so far, so it would not mess up all the graphical user interfaces. But there is still some work to do till the boards become a really good development platform. We can build useful filesystem images for them but the installation is still split up into too many steps and the up to date kernels still lack proper support for the camera and the wifi module.</p>
<p>I have made a toolchain to build software for both these devices and the Topas910. Together with an updated <a href="http://labs.kernelconcepts.de/Publications/Micro24401/">install instruction</a> it can be found <a href="http://labs.kernelconcepts.de/Tools/Toolchains/#Linux-i686-ARMv4t">here</a> at <a href="http://labs.kernelconcepts.de">labs.kernelconcepts.de</a>.  Now I&#8217;m investigating ways to integrate the toolchains with IDEs in order to simplify application development for mobile and embedded devices.</p>
<div id="attachment_167" class="wp-caption alignnone" style="width: 470px"><a href="http://fl0rian.files.wordpress.com/2009/06/micro2440_ultimate1.png"><img class="size-full wp-image-167" title="Micro2440 with Ultimate++ demo application" src="http://fl0rian.files.wordpress.com/2009/06/micro2440_ultimate1.png?w=460&#038;h=339" alt="Micro2440 with Ultimate++ demo application" width="460" height="339" /></a><p class="wp-caption-text">Micro2440 with Ultimate++ demo application</p></div>
<p>Here the device runs one of the <a href="http://www.ultimatepp.org/">Ultimate++ </a>demo applications built with its IDE and the GPE-flavour cross toolchain built with OpenEmbedded. A friendly colleague found out what needs to be done to use it for ARM targets&#8230; it still needs a little help since Ultimate++ doesn&#8217;t seem to have an idea about pkgconfig and I&#8217;m not really happy with the size of the resulting binaries. But more about IDEs later&#8230;</p>
<p>Have a good time&#8230; and see you in Berlin!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=161&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">7 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=b66d946e506c11deb237f9a38dcdfc70fc70&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/b66d946e506c11deb237f9a38dcdfc70fc70/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=b66d946e506c11deb237f9a38dcdfc70fc70&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/b66d946e506c11deb237f9a38dcdfc70fc70/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Wed, 03 Jun 2009 18:04:24 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-b66d946e506c11deb237f9a38dcdfc70fc70</guid>
        </item>
        <item>
            <title>A friendly Development Board</title>
            <link>http://fl0rian.wordpress.com/2009/05/26/a-friendly-development-board/</link>
            <description><![CDATA[
<p>While we are at the topic &#8216;evaluation and development hardware&#8217;&#8230; here here a few lines about a similar piece of hardware. I promised to do something with a FriendlyARM board already &#8211; so I did. I choosed the <a href="http://www.friendlyarm.net/products/micro2440">Micro2440</a> because the board itself is very small and can be used for own design easily. The very similar <a href="http://www.friendlyarm.net/products/mini2440">Mini2440</a> has a lot of ports on board in contrast to the 2mm headers of the Micro2440. Both boards are available through local distributors in Europe and the US now so that its not necessary to place orders in China any more. <a href="http://www.watterott-electronic.com">Watterott Electronic</a> was so kind to send me a Micro2440 board and the SDK baseboard for evaluation.</p>
<p><a href="http://fl0rian.files.wordpress.com/2009/05/image_000021.png"><img class="alignnone size-full wp-image-156" title="Micro2440 SDK" src="http://fl0rian.files.wordpress.com/2009/05/image_000021.png?w=414&#038;h=287" alt="Micro2440 SDK" width="414" height="287" /></a></p>
<p>If you want to get started with embedded Linux the board might be exactly what you want: A 400MHz ARM9 based Samsung S3C2440A CPU which is pretty well supported by Linux. 64MB od RAM and the same amount of NAND flash and 2MB of NOR flash for a backup bootloader. The baseboard has the connectors for the serial ports, USB host and client, display, expansion and SD and adds an audio codec and an Ethernet chip. There are two variants available: One with a 3.5&#8243; QVGA TFT (pictured) and one with a 7&#8243; 800&#215;480 TFT.  Both displays come with a touchscreen and in addition to this the board has a few buttons that can be used for a human interface. The whole SDK kit including Micro2440, SDK board, 3.5&#8243; display cables and JTAG doesn&#8217;t cost more than 125 EUR incl. VAT which makes it even more appealing.</p>
<p>The &#8216;softer&#8217; part of the SDK quite appealing too: The hardware is pretty well documented, even the schematics are available to the public. FriendlyARM released some demo images and Linux sources that are useful (but not perfect). The &#8216;Vivi&#8217; bootloader used by the boards can be replaced with u-boot easily so that you get a 100% Open Source embedded development environment.</p>
<p>Thanks to the <a href="http://www.openmoko.org">OpenMoko</a> community the S3C is pretty well supported in Linux and u-boot. There is a public project providing up to date Linux, u-boot and QEmu supoort for these boards that can be found <a href="http://code.google.com/p/mini2440/">here</a>. Like I usually do for a new piece of embedded or mobile hardware I used <a href="http://www.openembedded.org">OpenEmbedded</a> to built a <a href="http://gpe.linuxtogo.org">GPE</a> based filesystem image for it. Like you can see in the picture it works pretty well. For people interested in this I put together some notes I took and the binary images at <a href="http://labs.kernelconcepts.de/Projects/Micro2440/">KC Labs</a>. Feel free to contact me about this&#8230; I plan to extend support for it a little bit and provide a toolchain and additional information.</p>
<p>Have a nice time!</p>
<p>PS: Sorry for the bad image this time, I had to use the webcam to capture it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fl0rian.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fl0rian.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fl0rian.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fl0rian.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&amp;blog=100118&amp;post=154&amp;subd=fl0rian&amp;ref=&amp;feed=1" width="1" height="1" /><span class="net_nemein_favourites">0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=be72d50af38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/be72d50af38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=be72d50af38d11df9a6e45ecc92e3df93df9&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/be72d50af38d11df9a6e45ecc92e3df93df9/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Tue, 26 May 2009 14:04:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-be72d50af38d11df9a6e45ecc92e3df93df9</guid>
        </item>
        <item>
            <title>Some good News</title>
            <link>http://fl0rian.wordpress.com/2009/03/14/some-good-news/</link>
            <description><![CDATA[
<div class="mceTemp mceIEcenter">
<p style="text-align:left;">While the ongoing financial and ecomomic crisis seems to be the most popular topic for months now I try to make this blog a little more positive &#8211; some pice of contrast.</p>
<p style="text-align:left;">I has been a little bit quiet around <a href="http://www.linuxtogo.org">LinuxToGo</a> for quite a while. We didn&#8217;t manage to do more than the absolutely vital administrative tasks and the machine suffered badly from the high load. But there are some lights on the horizon: First I seem to have a little bit of time to work on it again &#8211; I managed to sort out the worst I/O bottleneck caused by having all I/O load on a single disk. Thanks to Jay7 for the hints! I wrote a few lines about the server status and some statistics <a href="http://linuxtogo.org/server-updates-0">here</a>.</p>
<p style="text-align:left;">The second is that LinuxToGo has gained new sponsor: <a href="http://www.bytemark.co.uk/">Bytemark Hosting</a> sponsors a virtual server for us. Now we finally have the chance to distribute the load among two devices. Many thanks to Nick Thomas (lupine_85) for the idea and approaching us and his boss Matthew Bloch!</p>
<p style="text-align:left;">There are quite some good news in the Maemo world as well. First is that the Maemo Community Council elections have started &#8211; active community members have the chance to elect the council till the end of March 19th. <a href="http://wiki.maemo.org/Mer">Mer</a>, the community driven distribution project for Nokia Internet Tablets and some more devices seems to evolve more and more &#8211; there is a quite <a href="http://lwn.net/SubscriberLink/322693/a8f7ad16e5707268/">interesting article</a> about it at LWN.net.</p>
<p style="text-align:left;">The new Mameo 5 SDK Alpha release runs on BeagleBoard now too &#8211; Juha wrote a blog entry about this in the <a href="http://maemoteam.wordpress.com/2009/03/13/maemo-5-alpha-on-beagleboard/">Maemo DT group blog</a>.</p>
<p style="text-align:left;">While we are on this topic already&#8230; the BeagleBoard has gained an interesting companion: The <a href="http://beagleboard.org/leopard">Leopard expansion board</a> which comes with a camera and ethernet. I do not know much about it yet, but it is based on the <a href="http://www.ti.com/corp/docs/landing/davinci/dm355.html">TI DaVinci DM355</a>. I&#8217;ll try to find out more and update the information here.</p>
<p style="text-align:left;">The last thing I&#8217;d like to mention is a little bit offtopic&#8230; I found this interesting proof for engineering beeing a kind of art while repairing the amplifier in my living room:</p>
<dl class="wp-caption aligncenter">
<dt class="wp-caption-dt"><a href="http://fl0rian.files.wordpress.com/2009/03/pcb-design.jpg"><img class="size-full wp-image-119" title="pcb-design" src="http://fl0rian.files.wordpress.com/2009/03/pcb-design.jpg?w=460&#038;h=460" alt="pcb-design" width="460" height="460" /></a></dt>
<dd class="wp-caption-dd">Creative, isn&#8217;t it?</dd>
</dl>
</div>
<p>I hope you enjoyed this tiny pile of good news :-)</p>
<p>Have a nice time&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=118&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">5 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=0c3d3a4a103811de85a39b221fa78fdc8fdc&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/0c3d3a4a103811de85a39b221fa78fdc8fdc/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=0c3d3a4a103811de85a39b221fa78fdc8fdc&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/0c3d3a4a103811de85a39b221fa78fdc8fdc/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Sat, 14 Mar 2009 00:43:58 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-0c3d3a4a103811de85a39b221fa78fdc8fdc</guid>
        </item>
        <item>
            <title>The ‘other’ BeagleBoard</title>
            <link>http://fl0rian.wordpress.com/2009/03/08/the-other-beagleboard/</link>
            <description><![CDATA[
<p>I visited the Embedded World fair in Nürnberg on Wednesday this week together with some colleagues. Like always on events like this I stumble upon nice devices with Linux support&#8230; in fact embedded hardware like development platforms and devices for industrial use or consumer network stuff without running Linux seems to become uncommon. Just a few years back hackers had to search hard for useful devices or invest a lot of time reverse engineering consumer hardware. Unluckily cellphones are still problematic &#8211; even the linux ones are usually locked down so that they are not useful for developers.</p>
<p>But let&#8217;s stay with the &#8216;good&#8217; ones: Karo Electronics showed a new low cost DIMM sized embedded module based on a 400MHz ARM9 CPU (The datasheet mentions Freescale, but lacks the name the chip.) A friend bought a similar one (a TX27) which came with full Linux kernel sources.</p>
<p>A real suprise was the booth of EBV: They build and sell their own BeagleBoard called <a href="http://www.ebv.com/ebvbeagle">EBVBeagle</a>.</p>
<div id="attachment_112" class="wp-caption alignnone" style="width: 310px"><a href="http://fl0rian.files.wordpress.com/2009/03/80e63f6f39.jpg"><img class="size-medium wp-image-112" title="EBVBeagle" src="http://fl0rian.files.wordpress.com/2009/03/80e63f6f39.jpg?w=300&#038;h=252" alt="EBVBeagle (image source: EBV)" width="300" height="252" /></a><p class="wp-caption-text">EBVBeagle (image source: EBV)</p></div>
<p>Its actually a BeagleBoard revision C2 with green PCB boxed with some useful accessories. It comes as a quite complete starter kit with AC adapter, USB to Ethernet adapter, MMC card, USB hub and some cables. The official press release can be found <a href="http://www.ebv.com/en/press-print/news-pr/details/news//press-releas-54.html">here</a>. They claim (but not gurantee) to be able to deliver within two weeks. Looks like the only drawback is the minimum order value of 250 EUR which is &#8211; of course &#8211; more than the EBVBeagle kit.</p>
<p>Apropos Beagle Board &#8211; <a href="http://maemo.org">Maemo</a> (which <a href="http://maemo-beagle.garage.maemo.org/">runs on the BeagleBoard</a> too) has released some new bits. First  <a href="http://maemo.org/news/announcements/maemo_5_alpha_sdk_released/">Maemo 5 alpha SDK</a> is ready and released. This is pretty good for people using it on the Beagle Board because only the Maemo 5 SDKs support the OMAP3 SoC. For people who want to learn about Maemo development or development for Limux mobile devices in general there is a new <a href="http://maemo.org/development/training/">Maemo Tutorial release</a>. The Maemo Tutorial provides quite easy to understand and detailed information about Maemo platform and application development. It gives a lot of useful information about development for other Linux mobile device platforms as well.</p>
<p>Enjoy&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=111&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">12 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=00863b340bf611de997505a2de1099f399f3&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/00863b340bf611de997505a2de1099f399f3/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=00863b340bf611de997505a2de1099f399f3&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/00863b340bf611de997505a2de1099f399f3/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Sun, 08 Mar 2009 15:10:31 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-00863b340bf611de997505a2de1099f399f3</guid>
        </item>
        <item>
            <title>OE@FOSDEM – We do not sell keyboards!</title>
            <link>http://fl0rian.wordpress.com/2009/02/12/oefosdem-we-do-not-sell-keyboards/</link>
            <description><![CDATA[
<p style="text-align:left;">Last week I went to Brussels to help representing the <a href="http://www.openembedded.org">OpenEmbedded</a> project as <a href="http://www.fosdem.org">FOSDEM</a>. I did not manage to attend all the interesting talks but we had a pretty good time at the OE stand too. Luckily I managed to atted a talk about running <a href="http://www.maemo.org">Maemo</a> on the BeagleBoard at least.  I brought the two &#8216;<a href="http://fl0rian.wordpress.com/2009/01/19/fun-with-beagleboard-and-projector-devices/">projecting peripherals</a>&#8216; and my <a href="http://www.beagleboard.org">BeagleBoard</a> with me which gained quite some interest. I somwhow got the impression that quite a lot of the people at FOSDEM now think that OE does sell keyboards ;-) Just to make this very clear: OpenEmbedded is a community driven project about compiling software for mobile and embedded devices &#8211; no hardware sales at all!</p>
<div id="attachment_109" class="wp-caption alignnone" style="width: 310px"><a href="http://fl0rian.files.wordpress.com/2009/02/beagle_fosdem_2.jpg"><img class="size-medium wp-image-109" title="OE booth with some devices" src="http://fl0rian.files.wordpress.com/2009/02/beagle_fosdem_2.jpg?w=300&#038;h=225" alt="OE booth with some devices" width="300" height="225" /></a><p class="wp-caption-text">OE booth with some devices and visitors</p></div>
<p style="text-align:left;">But even if we PICO beamer and laser keyboard are not our key competence these were quite well eyecaters: It was very interesting to watch people using the projected keyboard and beamer and find out what they like about it and to get to know for which needs this set of devices does not fit. Combining these into a single case starts to become a very appealing project. I have a (big) case for an initial test already, but making all components fit into it is not that easy &#8211; especially if you do not have time and resoures to make a custom board layout for it and you want GSM network connectivity included as well.</p>
<p style="text-align:left;">
<div class="wp-caption alignnone" style="width: 330px"><a href="http://linuxtogo.org/~florian/img/beagle_p2.jpg"><img title="Beagleboard and keyboard engine with parts of the case" src="http://linuxtogo.org/~florian/img/beagle_p2_s.jpg" alt="Beagleboard and keyboard engine with parts of the case" width="320" height="213" /></a><p class="wp-caption-text">Beagleboard and keyboard engine with parts of the case</p></div>
<p style="text-align:left;">My Telit GSM modem evaluation kit would have been nice to use but its too big to fit into the case. I have ordered an UMTS modem with USB connector instead.</p>
<p style="text-align:left;">But back to OE:</p>
<p style="text-align:left;">I have to thank all the OE developers who helped to man the booth &#8211; most important Phillip (Crofton), Mans (mru) and Graeme (XorA) who where at the booth almost the whole time. And of course there is <a href="http://www.atmel.com">Atmel</a> &#8211; they sponsored some NGW100 evaluation boards for interested OE developers and one for a raffle among our visitors.</p>
<p style="text-align:left;">Have a good time&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=108&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">8 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=9ee71658f8a611ddb4b03792092593f793f7&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/9ee71658f8a611ddb4b03792092593f793f7/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=9ee71658f8a611ddb4b03792092593f793f7&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/9ee71658f8a611ddb4b03792092593f793f7/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Thu, 12 Feb 2009 00:40:42 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-9ee71658f8a611ddb4b03792092593f793f7</guid>
        </item>
        <item>
            <title>Maemo Summit</title>
            <link>http://fl0rian.wordpress.com/2008/07/22/maemo-summit/</link>
            <description><![CDATA[
<p>Good news for me&#8230; after missing GUADEC and other interesting events it looks like I&#8217;ll make it to the first <a href="http://maemo.org/news/events/maemo_summit-001/">Maemo Summit</a> in Berlin. The list of participants is quite impressive &#8211; I guess this will be a really interesting event. Just join us there :-)</p>
<p>I read a few lines about <a href="http://sudharsh.wordpress.com/2008/05/22/odeviced-progress-report-p/">odeviced</a>&#8230; anyone else who thinks that using something like this for Maemo might be a goo idea?</p>
<p>I do not have much time left for blogging and coding currently &#8211; family and work keep me busy these times. But a few good things are in prgress &#8211; <a href="http://www.opensync.org/roadmap">OpenSync&#8217;s roadmap</a> indicates that they are close to a new release. This will be a much better base for MaemoSync than current SVN trunk. Even <a href="http://gpe.linuxtogo.org">GPE</a> makes a little bit of progress. Graham continues fixing various PIM bugs and gpe-memo is close to become ready for its first release.</p>
<p>Have a nice time&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fl0rian.wordpress.com/62/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fl0rian.wordpress.com/62/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=62&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">5 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=a1c22e82584511dda25445424b20bbf3bbf3&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/a1c22e82584511dda25445424b20bbf3bbf3/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=a1c22e82584511dda25445424b20bbf3bbf3&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/a1c22e82584511dda25445424b20bbf3bbf3/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Tue, 22 Jul 2008 22:20:46 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-a1c22e82584511dda25445424b20bbf3bbf3</guid>
        </item>
        <item>
            <title>LinuxTag 2008 summary</title>
            <link>http://fl0rian.wordpress.com/2008/05/31/linuxtag-2008-summary/</link>
            <description><![CDATA[
<p>Linke every year we had a really good time at LinuxTag! It is always a great event talking to interested users, business people and other developers. For the projects sharing this booth such as MyStep, Jalimo, GPE and OpenEmbedded it was a great success. For me it was the first time representing OpenEmbedded at a fair like this &#8211; with good results: We had quite some people who knew OE and asked specific questions and many developers with interest in using it.</p>
<p>LinuxTag always gives a lot of inspiration for new things to do and projects to check out. I know about some interesting software we need in OE soon &#8211; things like the Sugar framework for the OLPC and x2go. Other important tasks are to publish a list of evices that are defined in OE metadata and pushing the mobile-linux project forward.</p>
<p>In the Maemo track I had a short talk about GPE applications for Maemo &#8211; the slides of my talk can be found <a href="http://linuxtogo.org/~florian/files/gpeandmaemo_ltag2008.pdf">here</a>. Unluckily I was not able to attend more of the interesting talks in this track. But I found out that the Mamona people seem to like OpenEmbedded at least :-)</p>
<p><img src="http://www.linuxtogo.org/~florian/img/ltag2008-1.jpg" alt="Linuxtag1" width="640" height="480" /></p>
<p>The Tarent and Mobile booth right after opening in the morning&#8230; it was way more crowded a short time later.</p>
<p><img src="http://www.linuxtogo.org/~florian/img/ltag2008-2.jpg" alt="Linuxtag2" width="640" height="480" /></p>
<p>Many thanks to all the people organizing LinuxTag and Tarent for booth and the big red sofa for sitting down to write my blog.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fl0rian.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fl0rian.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=59&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">5 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=dc4eed9e2f2611dd8f1f499df71712731273&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/dc4eed9e2f2611dd8f1f499df71712731273/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=dc4eed9e2f2611dd8f1f499df71712731273&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/dc4eed9e2f2611dd8f1f499df71712731273/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Sat, 31 May 2008 15:30:00 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-dc4eed9e2f2611dd8f1f499df71712731273</guid>
        </item>
        <item>
            <title>LinuxTag is (almost) there</title>
            <link>http://fl0rian.wordpress.com/2008/05/27/linuxtag-is-almost-there/</link>
            <description><![CDATA[
<p>In a few hours LinuxTag 2008 will open its gates. There is a large booth for mobile and embedded Open Source projects in hall 7b &#8211; I&#8217;ll be there for <a href="http://www.openembedded.org">OpenEmbedded</a>. <a href="http://gpe.linuxtogo.org">GPE</a> is there and right next to us there is the booth of the OpenMoko folks.<br />
<a href="http://www.linuxtag.org"><img src="http://linuxtogo.org/~florian/img/ltag.png" alt="Logo" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fl0rian.wordpress.com/58/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fl0rian.wordpress.com/58/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=58&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=f87755622c3b11dda07605b16d3e59565956&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/f87755622c3b11dda07605b16d3e59565956/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=f87755622c3b11dda07605b16d3e59565956&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/f87755622c3b11dda07605b16d3e59565956/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Tue, 27 May 2008 22:00:22 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-f87755622c3b11dda07605b16d3e59565956</guid>
        </item>
        <item>
            <title>Using CMake for Maemo development</title>
            <link>http://fl0rian.wordpress.com/2008/04/11/using-cmake-for-maemo-development/</link>
            <description><![CDATA[
<p>Since OpenSync switched to CMake build system I had to get along with CMake in the Maemo SDK. I have to admit the fun was limited. In fact CMake has some advantages over autotools &#8211; most notably: It is much faster. One major drawback is that it is more complicated to use pkg-config with it.</p>
<p>I have never worked with CMake before, but OpenSync had some quite good examples how to check and support additional libraries. So I hacked cmake support for some basic Maemo components (libhildon, libosso) and Maemo-like Debian packages.</p>
<p>My cmake files can be found here:</p>
<p><a href="http://www.kernelconcepts.de/~fuchs/maemo/">http://www.kernelconcepts.de/~fuchs/maemo/</a></p>
<p>CMake itself is in the official extras-devel repository at maemo.org. Just add this line to your sources.list:<br />
<code><br />
deb http://repository.maemo.org/extras-devel chinook free<br />
</code></p>
<p>The package is available for all other SDKs from the same location.</p>
<p>The DpkgDeb.cmake file is based on the updated DpkgDeb.cmake by Mehdi Rabah. The other ones are based on random files found in OpenSync SVN.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fl0rian.wordpress.com/56/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fl0rian.wordpress.com/56/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=56&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">1 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=f6e1a64c081611dd814347f447db4f2b4f2b&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/f6e1a64c081611dd814347f447db4f2b4f2b/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>3 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=f6e1a64c081611dd814347f447db4f2b4f2b&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/f6e1a64c081611dd814347f447db4f2b4f2b/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Fri, 11 Apr 2008 22:29:41 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-f6e1a64c081611dd814347f447db4f2b4f2b</guid>
        </item>
        <item>
            <title>Maemo Sync packages</title>
            <link>http://fl0rian.wordpress.com/2008/04/02/maemo-sync-packages/</link>
            <description><![CDATA[
<br /><p>I have made an installable package for Maemo Sync, but do not expect too much. Its a basic port of the current Multisync-gui to Maemo. It is only tested to so far that the GUI starts up and registeres correctly. The fact that I had to use cmake for building Maemo software caused some headaches here&#8230; the quality of the source distribution package is still quite bad.</p>
<p><img src="http://linuxtogo.org/~florian/img/maemo-sync2.png" /></p>
<p>I also did not decide if I want it to become a project forked from Multisync-gui or to maintained with Multisync-gui adding optional support for Maemo environment.  The always changing OpenSync API would be a reason to stay with Multisync-gui, but the fact that I have different opinions about UI design, Glade is involved and cmake are reasons for making it a separate project.</p>
<p>Binary package and  sources are located <a href="http://linuxtogo.org/~florian/index.php?path=maemosync/">here</a>. You also need the OpenSync packages from <a href="http://cobb.uk.net/NokiaIT/daily.html">Graham&#8217;s daily repository</a>.</p>
<p>Another minor improvement of the GPE application packages in this repository is that latest Starling supports OGG playback. You only need to have an OGG plugin for GStreamer installed. The mogg package provides this for example.</p>
<p>Any feedback is welcome &#8211; if you manage to sync data with either the command line tool msynctool or using Maemo Sync please drop me a line. I would like to collect information which sync peers work with latest OpenSync and how to set up these.</p>
<p>Enjoy!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fl0rian.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fl0rian.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fl0rian.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fl0rian.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fl0rian.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fl0rian.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fl0rian.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fl0rian.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fl0rian.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fl0rian.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fl0rian.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fl0rian.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fl0rian.wordpress.com&blog=100118&post=55&subd=fl0rian&ref=&feed=1" /><span class="net_nemein_favourites">6 <a href="http://maemo.org/news/?net_nemein_favourites_execute=fav&net_nemein_favourites_execute_for=aaf24d0c00a711dd8276db8b434c71717171&net_nemein_favourites_url=https://maemo.org/news/favorites//json/fav/midgard_article/aaf24d0c00a711dd8276db8b434c71717171/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-favorite.png" style="border: none;" alt="Add to favourites" title="Add to favourites" /></a>0 <a href="http://maemo.org/news/?net_nemein_favourites_execute=bury&net_nemein_favourites_execute_for=aaf24d0c00a711dd8276db8b434c71717171&net_nemein_favourites_url=https://maemo.org/news/favorites//json/bury/midgard_article/aaf24d0c00a711dd8276db8b434c71717171/" class="net_nemein_favourites_create"><img src="http://static.maemo.org:81/net.nemein.favourites/not-buried.png" style="border: none;" alt="Bury" title="Bury" /></a></span>]]></description>
            <author>Florian Boor &lt;florian.boor@kernelconcepts.de&gt;</author>
            <category>feed:a820b9e49de58112edb8309d290df351</category>
            <pubDate>Wed, 02 Apr 2008 16:14:07 +0000</pubDate>
            <guid>http://maemo.org/midcom-permalink-aaf24d0c00a711dd8276db8b434c71717171</guid>
        </item>
    </channel>
</rss>
