<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Linux on any device</title>
	<atom:link href="http://www.igelle.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.igelle.net</link>
	<description>on advancement of Linux and open source software in various different devices</description>
	<pubDate>Tue, 26 Aug 2008 05:54:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>How to build a standalone GCC cross compiler using Melas</title>
		<link>http://www.igelle.net/archives/33</link>
		<comments>http://www.igelle.net/archives/33#comments</comments>
		<pubDate>Wed, 13 Aug 2008 10:29:57 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Melas]]></category>

		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[cross-compilation]]></category>

		<category><![CDATA[cross-compiler]]></category>

		<category><![CDATA[cross-gcc]]></category>

		<category><![CDATA[gcc]]></category>

		<category><![CDATA[gnu compiler]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=33</guid>
		<description><![CDATA[Building GNU GCC cross-compilers can be a somewhat dark art, and can be quite complicated if you are trying to do it for the first time, and especially frustrating if it is something that you need to do in order to reach some very different goal. Numerous tutorials have been written about how to do [...]]]></description>
			<content:encoded><![CDATA[<p>Building GNU GCC cross-compilers can be a somewhat dark art, and can be quite complicated if you are trying to do it for the first time, and especially frustrating if it is something that you need to do in order to reach some very different goal. Numerous tutorials have been written about how to do this (for various versions of GCC, Binutils and glibc/uclibc), as well as a number of tools, the most famous of which is probably Dan Kegel&#8217;s <a href="http://www.kegel.com/crosstool/" target="_blank">crosstool</a>.</p>
<p><a href="http://melas.ossproject.org" target="_blank">Melas</a> is a generic build assistant tool, which can make this procedure quite easy in some scenarios, given the right mls file that describes the procedure. This post explains how to easily make a gcc cross-compiler with Melas using an existing mls definition file.</p>
<p><span id="more-33"></span></p>
<p><b>Prerequisites</b></p>
<ul>
<li>A working GNU C Compiler (gcc) setup for your host machine that can produce functioning executables</li>
<li>An active internet connection to download the necessary source code files</li>
<li>Melas installed on your computer, and <i>mls-build</i> in your path.</li>
</ul>
<p>To install Melas, download and install the latest version first from the <a href="http://melas.ossproject.org" target="_blank">Melas project page</a>.</p>
<p><b>Toolchain versions</b></p>
<p>A complete GCC (cross-)compiler toolchain consists of a number of components; namely binutils, gcc itself, and libc (usually glibc or uclibc). Each of these is released and versioned separately, and sometimes a specific mix/match of these is preferred or required. Luckily, the procedure to build is often <b>roughly</b> the same, and hopefully no great differences will be introduced by different versions. The exact versions to build can be configured in the mls file, a sample of which can be downloaded from the Melas project site at <a href="http://melas.ossproject.org/gcc4-cross.mls" target="_blank">http://melas.ossproject.org/gcc4-cross.mls</a> (this one is borrowed from the Igelle OS source tree).</p>
<p>As of this writing, the above file defaults to the following versions:</p>
<ul>
<li>Binutils 2.18</li>
<li>GCC 4.2.4</li>
<li>Glibc 2.7</li>
<li>uClibc 0.9.29 (experimental)</li>
</ul>
<p>As mentioned, uClibc support in the mls file is experimental, and may not work properly. All patches are obviously quite welcome to correct any issues :). If other versions are preferred, this can be achieved by editing the mls file accordingly.</p>
<p><b>Target architecture</b></p>
<p>Since we are building a cross-compiler, it is essential to be aware of the target architecture, which is usually expressed by a &#8220;target tuple&#8221;, eg. &#8220;i486-unknown-linux-gnu&#8221;, or &#8220;armv4t-unknown-linux-gnueabi&#8221;, etc. Any suitable target architecture can be chosen for this procedure, although much of them haven&#8217;t probably been tested. All feedback for this will be most welcome.</p>
<p>The supplied mls file has a particular speciality, though: if the string &#8220;uclibc&#8221; is supplied as part of the tuple, then a uclibc toolchain build is attempted. Otherwise, a glibc build is assumed. This allows, for instance, tuples like &#8220;armv4t-uclibc-linux-gnueabi&#8221; or &#8220;i486-uclibc-linux-gnu&#8221; to be used as targets for uclibc -based toolchains.</p>
<p><b>Executing the build</b></p>
<p>Once all the issues above have been considered and addressed, executing the actual build is quite easy:</p>
<pre>
GCCARCHTUPLE=your-arch-tuple mls-build --run=rebuild \
    http://melas.ossproject.org/gcc4-cross.mls
</pre>
<p>Here, you must obviously substitute the &#8220;your-arch-tuple&#8221; to your desired tuple, as mentioned above. Then sit back and relax, this will take quite some time, but happily the whole process is managed for you (binutils get compiled, then a bootstrap gcc, then libc, then gcc again, etc.).</p>
<p>Obviously, if you have downloaded the mls file and made your own modifications, you must point mls-build to your modified mls file instead of the URL above.</p>
<p><b>The end-result</b></p>
<p>After a successful build, you will end up with a .deb file in your current directory representing your full cross-compiler toolchain. This is complete with gcc, g++, binutils (linker, assembler, etc.), as well as header files and link libraries for developing working binaries for the target.</p>
<p><i>(You can actually even extract the whole libc from within the packet to deploy on the target to make a running system, however if this is what you are after, it is probably best to look at <a href="http://www.igelle.org" target="_blank">Igelle</a>, which includes a build system (based on Melas also) to make a complete functioning Linux system.)</i></p>
<p>Then, simply install the .deb file and start using the new cross-compiler; handy links are installed in /usr/bin so that the compiler is automatically in your PATH. Simply run <i>[your-arch-tuple]-gcc</i> to compiler, eg.</p>
<p>armv4t-glibc-linux-gnueabi test.c -o test-arm</p>
<p>(to compile an ARM program).</p>
<p><b>Expected issues</b></p>
<p>As mentioned, uclibc support has not been tested, and probably doesn&#8217;t work well on all targets. Similarly, different versions of the toolchain components have not been tested. All feedback on any successes, failures or other experiences is most welcome, as well as obviously initiatives for further improvements on this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/33/feed</wfw:commentRss>
		</item>
		<item>
		<title>Introducing Igelle Connector (v0.3.0)</title>
		<link>http://www.igelle.net/archives/32</link>
		<comments>http://www.igelle.net/archives/32#comments</comments>
		<pubDate>Fri, 04 Jul 2008 10:19:06 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Igelle Connector]]></category>

		<category><![CDATA[bluetooth networking]]></category>

		<category><![CDATA[dhcp]]></category>

		<category><![CDATA[network manager]]></category>

		<category><![CDATA[wireless data]]></category>

		<category><![CDATA[wireless lan]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=32</guid>
		<description><![CDATA[Igelle Connector is a network management tool for Linux-like operating systems, capable of connecting to different kinds of networks and managing the created connections. It is similar to other applications such as NetworkManager and Wicd, and can be used as a replacement of these applications. It is written in Python and shell scripts, and is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://igelle-connector.ossproject.org" target="_blank">Igelle Connector</a> is a network management tool for Linux-like operating systems, capable of connecting to different kinds of networks and managing the created connections. It is similar to other applications such as NetworkManager and Wicd, and can be used as a replacement of these applications. It is written in Python and shell scripts, and is probably compatible with all modern Linux distributions.<br />
<span id="more-32"></span><br />
This is the first release of Igelle Connector, and as such is still incomplete in features here and there; user friendliness is still to be improved; and there are surely bugs present. Current featureset includes:</p>
<ul>
<li>Command line interface</li>
<li>GTK+ -based graphical user interface</li>
<li>Wired ethernet connections</li>
<li>Wireless LAN</li>
<li>Fixed and automatic IP address (DHCP) support</li>
<li>GSM/3G Wireless data connections</li>
<li>Bluetooth wireless modem support</li>
</ul>
<p>Installation packages are provided in DEB and tar.bz2 form, and are available under the <a href="http://www.ossproject.org/projects/igelle-connector/download" target="_blank">download section of the project site</a>. <a target="_blank" href="http://www.ossproject.org/projects/igelle-connector/screenshots">Screenshots are also available</a>. The software can be installed alongside an existing network manager (such as NetworkManager or wicd) without any problems, but will probably collide with other network managers in runtime if configuring the same interfaces. Regardless, installing and testing IC does not necessarily require uninstallation of any existing network managers.</p>
<p>All feedback and testing are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/32/feed</wfw:commentRss>
		</item>
		<item>
		<title>ossdeveloper.com provides open source programming resources</title>
		<link>http://www.igelle.net/archives/31</link>
		<comments>http://www.igelle.net/archives/31#comments</comments>
		<pubDate>Tue, 01 Jul 2008 11:33:36 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[development resources]]></category>

		<category><![CDATA[development tools]]></category>

		<category><![CDATA[open source software development]]></category>

		<category><![CDATA[ossdeveloper]]></category>

		<category><![CDATA[software development]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=31</guid>
		<description><![CDATA[A new site, ossdeveloper.com, provides resources related to open source software development. This includes categorized content with links to tools, documentation, articles, howtos, tutorials and such, all related to development of open source software, developing on open source platforms, as well as generally doing software development using open source tools and technologies.
The site aims to [...]]]></description>
			<content:encoded><![CDATA[<p>A new site, <a href="http://www.ossdeveloper.com" target="_blank">ossdeveloper.com</a>, provides resources related to open source software development. This includes categorized content with links to tools, documentation, articles, howtos, tutorials and such, all related to development of open source software, developing on open source platforms, as well as generally doing software development using open source tools and technologies.</p>
<p>The site aims to be a collection of useful information for those who are starting out in (open source) software development, or wish to learn more and/or keep up-to-date. New content submissions are highly welcome, as well as any comments and suggestions for improvement.</p>
<p>Happy developing! <img src='http://www.igelle.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/31/feed</wfw:commentRss>
		</item>
		<item>
		<title>BarPanel v0.4.0</title>
		<link>http://www.igelle.net/archives/30</link>
		<comments>http://www.igelle.net/archives/30#comments</comments>
		<pubDate>Fri, 13 Jun 2008 01:10:51 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[BarPanel]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[desktop panel]]></category>

		<category><![CDATA[panel]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=30</guid>
		<description><![CDATA[BarPanel is a powerful desktop panel that enables you to have all you want just one-click-far. It is extensible through plugins and fully is themeable. Barpanel is a continuation of the work done in the Foopanel project.
BarPanel v0.4.0 adds a number of new features and fixes to the panel:

New features/plugins:

staticmenu: A static menu of launchers [...]]]></description>
			<content:encoded><![CDATA[<p>BarPanel is a powerful desktop panel that enables you to have all you want just one-click-far. It is extensible through plugins and fully is themeable. Barpanel is a continuation of the work done in the Foopanel project.</p>
<p>BarPanel v0.4.0 adds a number of new features and fixes to the panel:<br />
<span id="more-30"></span><br />
New features/plugins:</p>
<ul>
<li>staticmenu: A static menu of launchers (customizable via the config file)</li>
<li>windowmenu: An experimental window menu plugin: requires a recent libwnck-python</li>
<li>battery: A battery status plugin (requires HAL)</li>
</ul>
<p>Fixes and adjustments:</p>
<ul>
<li>New default configuration to reflect some of the new features</li>
<li>If available, provide an easy way to start the Alacarte menu editor</li>
<li>Ability to reload configuration on request (SIGHUP)</li>
<li>Fixed popups that overflow from right side of the screen</li>
<li>The web search textbox was made white</li>
<li>Added a &#8220;search&#8221; button in the web search popup window</li>
<li>Now handles &#8216;%u&#8217; and &#8216;%f&#8217; handling in desktop files properly</li>
<li>Allow reloading of configuration (and menus) through the GUI</li>
<li>Sticky flag set properly to (hopefully) keep the panel visible on all virtual desktops</li>
</ul>
<p>Known (big) issues:</p>
<ul>
<li>The embedder plugin is not completely implemented</li>
<li>Should provide graphical feedback when reloading config</li>
<li>No graphical configuration interface is yet available</li>
</ul>
<p>Initial testing of this has been done on Ubuntu 7.04, Ubuntu 8.04 and Igelle (git head). Please post any further testing results as comments below as necessary.</p>
<p>For downloads and more information, please proceed to the <a href="http://www.ossproject.org/projects/barpanel" target="_blank">BarPanel project page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/30/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ige package manager v0.4.0</title>
		<link>http://www.igelle.net/archives/29</link>
		<comments>http://www.igelle.net/archives/29#comments</comments>
		<pubDate>Thu, 12 Jun 2008 04:39:47 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Ige]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=29</guid>
		<description><![CDATA[Ige is a simple, uncomplicated and powerful package manager application for Linux-based (or Linux-like) operating systems.
Ige has been a part of the Igelle operating system for some time now; at this time, it is now also released properly as a standalone project. Ige is a very small, very simple, but very usable and powerful software [...]]]></description>
			<content:encoded><![CDATA[<p>Ige is a simple, uncomplicated and powerful package manager application for Linux-based (or Linux-like) operating systems.</p>
<p>Ige has been a part of the Igelle operating system for some time now; at this time, it is now also released properly as a standalone project. Ige is a very small, very simple, but very usable and powerful software package manager tool that can do various things:<br />
<span id="more-29"></span><br />
* Installation, removal and updating of software packages<br />
* Fully compatible with deb and ipk formats<br />
* Automatic dependency resolution<br />
* Local or HTTP -based installations<br />
* Very small in terms of code and footprint</p>
<p>&#8220;Very small&#8221; above relates currently to 943 lines of C code, and ~42kb compiled binary on i386 and ~16kb compiled binary on ARMv4t. It does depend in runtime on some standard utilities, such as gzip, tar and wget (for HTTP support).</p>
<p>Code is still early and surely has bugs and issues remaining - regardless, it is mature enough for everyday use and has been used as the package manager of <a href="http://www.igelle.org/" target="_blank">Igelle</a> for some time already. All testing and comments are, as usual, highly appreciated.</p>
<p>For downloads and more information, please refer to the <a href="http://www.ossproject.org/projects/ige" target="_blank">Ige project site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/29/feed</wfw:commentRss>
		</item>
		<item>
		<title>Rearranging the Igelle project websites</title>
		<link>http://www.igelle.net/archives/27</link>
		<comments>http://www.igelle.net/archives/27#comments</comments>
		<pubDate>Wed, 04 Jun 2008 07:40:34 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[BarPanel]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[Igelle]]></category>

		<category><![CDATA[Melas]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=27</guid>
		<description><![CDATA[Much of the web content related to the Igelle operating system and related projects (BarPanel, Melas) was moved around a little bit today. Here&#8217;s a summary of the changes and new URLs:

All three projects (Igelle, BarPanel and Melas) were given a new project page at the new ossproject.org hosting site. The new project pages are [...]]]></description>
			<content:encoded><![CDATA[<p>Much of the web content related to the Igelle operating system and related projects (BarPanel, Melas) was moved around a little bit today. Here&#8217;s a summary of the changes and new URLs:<br />
<span id="more-27"></span><br />
All three projects (Igelle, BarPanel and Melas) were given a new project page at the new <a href="http://www.ossproject.org" target="_blank">ossproject.org</a> hosting site. The new project pages are arranged as follows:</p>
<ul>
<li>Igelle, <a href="http://www.ossproject.org/projects/igelle" target="_blank">http://www.ossproject.org/projects/igelle</a></li>
<li>BarPanel, <a href="http://www.ossproject.org/projects/barpanel" target="_blank">http://www.ossproject.org/projects/barpanel</a></li>
<li>Melas, <a href="http://www.ossproject.org/projects/melas" target="_blank">http://www.ossproject.org/projects/melas</a></li>
</ul>
<p>At the same time, the old project sites under <a href="http://www.igelle.org/" target="_blank">www.igelle.org</a> were changed to simply link to the new addresses. Please update your bookmarks accordingly.</p>
<p>www.igelle.org will then be the official homepage for resources related to the Igelle operating system. Obviously, this blog remains at www.igelle.net</p>
<p>All of this is new, so please inform of any troubles with these new arrangements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/27/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to build and install WebKit and the Midori Browser using the Melas packaging tool</title>
		<link>http://www.igelle.net/archives/26</link>
		<comments>http://www.igelle.net/archives/26#comments</comments>
		<pubDate>Mon, 26 May 2008 05:47:51 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Melas]]></category>

		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[compile]]></category>

		<category><![CDATA[deb]]></category>

		<category><![CDATA[midori]]></category>

		<category><![CDATA[web browser]]></category>

		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=26</guid>
		<description><![CDATA[The Midori Browser is an attractive, lightweight web browser utilizing the WebKit backend. For me, the elegance of the Midori/WebKit combo is something impressive; when compiled and installed, the complete browser runs from two files; one shared library (webkit*.so) and one executable (midori). For me, this is truly refreshing after the &#8220;mess&#8221; that comes when [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://software.twotoasts.de/?page=midori" target="_blank">Midori Browser</a> is an attractive, lightweight web browser utilizing the <a href="http://webkit.org/" target="_blank">WebKit</a> backend. For me, the elegance of the Midori/WebKit combo is something impressive; when compiled and installed, the complete browser runs from two files; one shared library (webkit*.so) and one executable (midori). For me, this is truly refreshing after the &#8220;mess&#8221; that comes when building/installing Firefox.</p>
<p>The downside? Midori and WebKit are both non-stable, rapidly changing softwares and no binary packages are really available for either. Numerous instructions exist for how to compile these, though. Here&#8217;s one more to add to that list, but this time using Melas; and you actually get .deb packages that you can then remove and/or upgrade. These instructions, therefore, assume a .deb -based system. This was tested on Ubuntu 7.04, but shouldn&#8217;t (hopefully) be much different for any other recent Ubuntu.<br />
<span id="more-26"></span><br />
<strong>1. Build dependencies</strong></p>
<p>Usual build essentials (compiler, etc.) should obviously be present, as well as a number of development packages. These should be installable via (under Ubuntu or other apt-get -based systems &#8212; also, you will probably need to have the universe repositories enabled);</p>
<pre>
sudo apt-get install build-essential libcurl3-dev \
    libicu36-dev libgtk2.0-dev libsqlite3-dev \
    libfreetype6-dev libxslt1-dev libsexy-dev \
    libxml2-dev
</pre>
<p><strong>2. Install Melas</strong></p>
<p>Install the latest Melas package available from the <a href="http://www.igelle.org/melas" target="_blank">Melas project site</a>.</p>
<p><strong>3. Make a build directory</strong></p>
<p>Execute your build in an empty directory created for this purpose, eg.;</p>
<pre>
mkdir midori
cd midori
</pre>
<p><strong>4. Build and install WebKit</strong></p>
<p>Build WebKit with the following command:</p>
<pre>
mls-build http://www.igelle.org/mk/webkit.mls --run=rebuild
</pre>
<p>The install with your favourite package manager, eg.;</p>
<pre>
sudo dpkg --install webkit*.deb
</pre>
<p><strong>5. Build and install Midori</strong></p>
<p>Then build Midori itself:</p>
<pre>
mls-build http://www.igelle.org/mk/midori.mls --run=rebuild
</pre>
<p>And again install with your favourite package manager, eg.;</p>
<pre>
sudo dpkg --install midori*.deb
</pre>
<p>The browser should then appear in your application menus, and/or can be started from the command line as</p>
<pre>
/usr/bin/midori
</pre>
<p>Happy browsing! <img src='http://www.igelle.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/26/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to install Igelle on your FIC NEO1973</title>
		<link>http://www.igelle.net/archives/24</link>
		<comments>http://www.igelle.net/archives/24#comments</comments>
		<pubDate>Fri, 23 May 2008 07:45:58 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Igelle]]></category>

		<category><![CDATA[Tips and Tricks]]></category>

		<category><![CDATA[dfu-util]]></category>

		<category><![CDATA[neo]]></category>

		<category><![CDATA[neo1973]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=24</guid>
		<description><![CDATA[Although the Igelle NEO images are still a little bit incomplete in terms of features, they have already given me much joy, and in case you&#8217;ll want to try them on your NEO, here&#8217;s a quick howto;

Although any Neo owner is probably quite familiar to flashing his/her device by now, here&#8217;s a quick rundown of [...]]]></description>
			<content:encoded><![CDATA[<p>Although the Igelle NEO images are still a little bit incomplete in terms of features, they have already given me much joy, and in case you&#8217;ll want to try them on your NEO, here&#8217;s a quick howto;<br />
<span id="more-24"></span><br />
Although any Neo owner is probably quite familiar to flashing his/her device by now, here&#8217;s a quick rundown of the necessary steps;</p>
<p><strong>1. Install dfu-util</strong></p>
<p>You can download a readily compiled deb file for dfu-util (for i386) from <a href="http://www.igelle.org/igelle" target="_blank">the Igelle project site</a>, and install as usual (where dpkg applicable, of course);</p>
<pre>
sudo dpkg --install dfu-util_4448_i386.deb
</pre>
<p>In case the deb file doesn&#8217;t work for you, or if you can&#8217;t work with debs, you can also get dfu-util straight from the <a href="http://wiki.openmoko.org/wiki/Dfu-util" target="_blank">OpenMoko site</a>.</p>
<p><strong>2. Download the installers</strong></p>
<p>Again, download the latest FIC GTA01 files from <a href="http://www.igelle.org/igelle" target="_blank">the Igelle project site</a>. As of now you&#8217;ll need two files: the kernel (*.uImage) and the root filesystem image (*.jffs2).</p>
<p><strong>3. Prepare your Neo</strong></p>
<p>Power up the Neo in bootloader mode (press AUX and Power simultaneously). Once in bootloader, connect it to your PC/laptop via a USB cable.</p>
<p><strong>4. Flash the images</strong></p>
<p>Flashing the images can be done as follows;</p>
<pre>
sudo dfu-util -a kernel -R -d 1457:5119 \
    -D linux-ficgta01_*.uImage
</pre>
<p>and</p>
<pre>
sudo dfu-util -a 5 -R -d 1457:5119 \
    -D igelle-ficgta01-image_*.jffs2
</pre>
<p>Once finished, detach the USB cable and choose &#8220;Boot&#8221; from the Neo&#8217;s boot menu (or power off and on to start from scratch).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/24/feed</wfw:commentRss>
		</item>
		<item>
		<title>Igelle v0.4.1: armv4t and NEO1973 support</title>
		<link>http://www.igelle.net/archives/25</link>
		<comments>http://www.igelle.net/archives/25#comments</comments>
		<pubDate>Fri, 23 May 2008 07:43:56 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Igelle]]></category>

		<category><![CDATA[armv4t]]></category>

		<category><![CDATA[fic]]></category>

		<category><![CDATA[neo1973]]></category>

		<category><![CDATA[openmoko]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=25</guid>
		<description><![CDATA[Igelle is a Linux-based operating system distribution that is designed to run on various different devices, including desktop/laptop computers, cellular phones, mobile internet devices and other small or large computers.
Igelle v0.4.1 is a minor version release over v0.4.0 (due to only small differences in the code), however the release is a major one in that [...]]]></description>
			<content:encoded><![CDATA[<p>Igelle is a Linux-based operating system distribution that is designed to run on various different devices, including desktop/laptop computers, cellular phones, mobile internet devices and other small or large computers.</p>
<p>Igelle v0.4.1 is a minor version release over v0.4.0 (due to only small differences in the code), however the release is a major one in that the first images for an ARM device are released here. New in this release is initial support for the FIC NEO1973 OpenMoko phone, together with a fully compilable array of packages for the armv4t architecture used by the device. No notable differences for other platforms in this release.</p>
<p>(Note that the NEO images in this release are still incomplete in features, and not really usable for any real task, however they do work well and <a href="http://www.igelle.net/screenshots#igelle">look beautiful</a>.)</p>
<p>As usual, proceed to the <a href="http://www.igelle.org/igelle" target="_blank">Igelle project site</a> for downloads and installation instructions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/25/feed</wfw:commentRss>
		</item>
		<item>
		<title>First taste of Igelle on the FIC NEO1973 OpenMoko phone</title>
		<link>http://www.igelle.net/archives/23</link>
		<comments>http://www.igelle.net/archives/23#comments</comments>
		<pubDate>Thu, 22 May 2008 10:43:55 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Igelle]]></category>

		<category><![CDATA[neo]]></category>

		<category><![CDATA[neo1973]]></category>

		<category><![CDATA[openmoko]]></category>

		<guid isPermaLink="false">http://www.igelle.net/?p=23</guid>
		<description><![CDATA[The latest git trunk of the Igelle operating system now compiles and boots to GUI on the FIC NEO1973 OpenMoko phone. Arguably Igelle on Neo is still a work-in-progress, and not very functioning yet, but provides even today a wonderous proof of concept. It runs all the same software as the PC version, as the [...]]]></description>
			<content:encoded><![CDATA[<p>The latest git trunk of the <a href="http://www.igelle.org/igelle" target="_blank">Igelle operating system</a> now compiles and boots to GUI on the FIC NEO1973 OpenMoko phone. Arguably Igelle on Neo is still a work-in-progress, and not very functioning yet, but provides even today a wonderous proof of concept. It runs all the same software as the PC version, as the screenshots show, and is compiled from the same code tree using the same build procedures.</p>
<p>Installable binaries with installation instructions will be posted after some stabilization and feature richness has been achieved. In the meantime, please take a look at the <a href="http://www.igelle.net/screenshots#igelle">screenshots</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igelle.net/archives/23/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
