<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>stockwerk &#187; Research</title>
	<atom:link href="http://www.stockwerk.biz/blog/category/research/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stockwerk.biz/blog</link>
	<description>Mobile Software and Hardware R&#38;D</description>
	<lastBuildDate>Sat, 30 Apr 2011 16:30:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>USB ethernet adapter 0xdroid (Android) configuration on the BeagleBoard</title>
		<link>http://www.stockwerk.biz/blog/2010/04/usb-ethernet-adapter-0xdroid-configuration-beagleboard/</link>
		<comments>http://www.stockwerk.biz/blog/2010/04/usb-ethernet-adapter-0xdroid-configuration-beagleboard/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 08:37:50 +0000</pubDate>
		<dc:creator>Boris Stock</dc:creator>
				<category><![CDATA[BeagleBoard]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[0xdroid]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[ethernet]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.stockwerk.biz/blog/?p=82</guid>
		<description><![CDATA[If you&#8217;ve compiled the kernel with the correct drivers and enabled the general ethernet support correctly you should see the following entries when you type netcfg in the console: lo UP 127.0.0.1 255.0.0.0 usb0 UP 0.0.0.0 0.0.0.0 eth0 DOWN 0.0.0.0 0.0.0.0 The usb0 interface is the USB OTG ethernet gadget device (which is by default [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve compiled the kernel with the correct drivers and enabled the general ethernet support correctly you should see the following entries when you type</p>
<pre>netcfg</pre>
<p>in the console:</p>
<pre>lo    UP    127.0.0.1  255.0.0.0
usb0  UP    0.0.0.0    0.0.0.0
eth0  DOWN  0.0.0.0    0.0.0.0
</pre>
<p>The usb0 interface is the USB OTG ethernet gadget device (which is by default enabled in the kernel).<br />
Now (do not forget to connect a network cable to your USB ethernet adapter and your router/switch) type the following commands in the console to configure the eth0 interface:</p>
<pre>netcfg eth0 dhcp</pre>
<p>This triggers the eth0 interface to get the IP etc. via DHCP (of course you need a router with DHCP enabled).<br />
The eth0 interface now should have assigned a valid IP address if everything works like expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stockwerk.biz/blog/2010/04/usb-ethernet-adapter-0xdroid-configuration-beagleboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USB bluetooth and ethernet adapter support in 0xdroid (Android) on the BeagleBoard</title>
		<link>http://www.stockwerk.biz/blog/2010/04/usb-bluetooth-and-ethernet-adapter-support-0xdroid-android-beagleboard/</link>
		<comments>http://www.stockwerk.biz/blog/2010/04/usb-bluetooth-and-ethernet-adapter-support-0xdroid-android-beagleboard/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 18:09:43 +0000</pubDate>
		<dc:creator>Boris Stock</dc:creator>
				<category><![CDATA[BeagleBoard]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[0xdroid]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[ethernet]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[menuconfig]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.stockwerk.biz/blog/?p=51</guid>
		<description><![CDATA[If you&#8217;re using a build of 0xdroid on your BeagleBoard, you might come to a point where you want to use an USB bluetooth dongle or an USB ethernet adapter instead of the USB-OTG ethernet gadget solution. USB ethernet and bluetooth support is by default enabled in the 0xdroid kernel, but you might have to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using a build of 0xdroid on your BeagleBoard, you might come to a point where you want to use an USB bluetooth dongle or an USB ethernet adapter instead of the USB-OTG ethernet gadget solution. USB ethernet and bluetooth support is by default enabled in the 0xdroid kernel, but you might have to enable some drivers for your USB dongle to get everything working as expected.</p>
<p>To easily change the drivers which have to be integrated into the kernel or have to be loadable as a module <a href="http://gitorious.org/0xdroid/pages/Build-from-Scratch#kernel" target="_blank">follow the instructions on the 0xdroid kernel wiki page</a>.</p>
<p>The key to an easy kernel configuration is</p>
<pre>$ make menuconfig</pre>
<p>which gives you a graphical interface to configure the kernel and selected the wanted drivers. Store the custom kernel configuration as <code>.config</code>.</p>
<p>Then build the kernel with the following commands:</p>
<pre>$ make ARCH=arm .config
$ make ARCH=arm CROSS_COMPILE=../beagle-donut/prebuilt/linux-x86/toolchain/arm-android-eabi-4.4.1/bin/arm-android-eabi- uImage
$ make ARCH=arm CROSS_COMPILE=../beagle-donut/prebuilt/linux-x86/toolchain/arm-android-eabi-4.4.1/bin/arm-android-eabi- modules</pre>
<p>If the build fails, deactivate the support for the faulty driver.</p>
<p>Then copy <code>arch/arm/boot/uImage</code> to <code>0xkernel-beagle.bin</code>, copy the file on the SD card along with the <code>android-beagle.ubi</code> system image and the <a href="http://downloads.0xlab.org/installer/dailybuild/uImage.bin" target="_blank">installer</a> as <code>uImage</code> (copy the installer <code>uImage</code> as the first file on the SD card, then all the others). Insert the SD card into your board and boot it. The new kernel along with the 0xdroid Android build should be flashed to the NAND of the BeagleBoard. <strong>Beware: Your current installation will be wiped!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stockwerk.biz/blog/2010/04/usb-bluetooth-and-ethernet-adapter-support-0xdroid-android-beagleboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android (0xdroid, eclair build) running on the BeagleBoard</title>
		<link>http://www.stockwerk.biz/blog/2010/04/android-0xdroid-eclair-build-running-on-the-beagleboard/</link>
		<comments>http://www.stockwerk.biz/blog/2010/04/android-0xdroid-eclair-build-running-on-the-beagleboard/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 10:22:30 +0000</pubDate>
		<dc:creator>Boris Stock</dc:creator>
				<category><![CDATA[BeagleBoard]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[0xdroid]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.stockwerk.biz/blog/?p=41</guid>
		<description><![CDATA[After getting all necessary accessories and having everything wired up (aprox. 100 cables) I&#8217;ve compiled 0xdroid (a Android port for the BeagleBoard) from scratch and flashed it to the BeagleBoard NAND from the SD Card. It compiled without any problems on my Ubuntu 9.10 virtual machine by following the instructions. Now Android is up and [...]]]></description>
			<content:encoded><![CDATA[<p>After getting all necessary accessories and having everything wired up (aprox. 100 cables) I&#8217;ve compiled <a href="http://code.google.com/p/0xdroid/" target="_blank">0xdroid</a> (a Android port for the BeagleBoard) from scratch and flashed it to the BeagleBoard NAND from the SD Card.</p>
<p>It compiled without any problems on my Ubuntu 9.10 virtual machine by following the <a href="http://code.google.com/p/0xdroid/wiki/Source" target="_blank">instructions</a>.</p>
<p>Now Android is up and running on my BeagleBoard connected (via HDMI) to a HP 22&#8243; display.</p>

<a href='http://www.stockwerk.biz/blog/2010/04/android-0xdroid-eclair-build-running-on-the-beagleboard/img_0466/' title='IMG_0466'><img width="150" height="150" src="http://www.stockwerk.biz/blog/wp-content/uploads/2010/04/IMG_0466-150x150.jpg" class="attachment-thumbnail" alt="IMG_0466" title="IMG_0466" /></a>
<a href='http://www.stockwerk.biz/blog/2010/04/android-0xdroid-eclair-build-running-on-the-beagleboard/img_0467/' title='IMG_0467'><img width="150" height="150" src="http://www.stockwerk.biz/blog/wp-content/uploads/2010/04/IMG_0467-150x150.jpg" class="attachment-thumbnail" alt="IMG_0467" title="IMG_0467" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.stockwerk.biz/blog/2010/04/android-0xdroid-eclair-build-running-on-the-beagleboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More BeagleBoard accessories</title>
		<link>http://www.stockwerk.biz/blog/2010/04/more-beagleboard-accessories/</link>
		<comments>http://www.stockwerk.biz/blog/2010/04/more-beagleboard-accessories/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 08:24:58 +0000</pubDate>
		<dc:creator>Boris Stock</dc:creator>
				<category><![CDATA[BeagleBoard]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[accessories]]></category>

		<guid isPermaLink="false">http://www.stockwerk.biz/blog/?p=39</guid>
		<description><![CDATA[To be more flexible and to have more USB-ports available I&#8217;ve also ordered the following accessories at Reichelt: 5 Volt, 15 Watt external power supply Wall plug/cable for the power supply USB 2.0 4-port self powered hub (the beagleboard needs a self powered usb hub if you want to connect a lot of devices) 8GB [...]]]></description>
			<content:encoded><![CDATA[<p>To be more flexible and to have more USB-ports available I&#8217;ve also ordered the following accessories at <a href="http://www.reichelt.de" target="_blank">Reichelt</a>:</p>
<p><a href="http://www.reichelt.de/?ACTION=3;ARTICLE=35146;PROVID=2402" target="_blank">5 Volt, 15 Watt external power supply</a></p>
<p><a href="http://www.reichelt.de/?ACTION=3;ARTICLE=3901;PROVID=2402" target="_blank">Wall plug/cable for the power supply</a></p>
<p><a href="http://www.reichelt.de/?ACTION=3;ARTICLE=85624;PROVID=2402" target="_blank">USB 2.0 4-port self powered hub</a> (the beagleboard needs a self powered usb hub if you want to connect a lot of devices)</p>
<p><a href="http://www.reichelt.de/?ACTION=3;ARTICLE=79279;PROVID=2402" target="_blank">8GB SDHC Card</a> (this is the actual &#8220;hard disk&#8221; of the BeagleBoard which I will boot Android from)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stockwerk.biz/blog/2010/04/more-beagleboard-accessories/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BeagleBoard accessories</title>
		<link>http://www.stockwerk.biz/blog/2010/03/beagleboard-accessories/</link>
		<comments>http://www.stockwerk.biz/blog/2010/03/beagleboard-accessories/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 15:06:24 +0000</pubDate>
		<dc:creator>Boris Stock</dc:creator>
				<category><![CDATA[BeagleBoard]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[accessories]]></category>
		<category><![CDATA[serial]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.stockwerk.biz/blog/?p=35</guid>
		<description><![CDATA[I&#8217;ve also ordered the following accessories to get my BeagleBoard up and running (all ordered at Mükra Elektronik): USB-Serial Adapter (you can get the drivers for MAC OS X and Windows here) Serial Null-Modem Cable (9-pin d-sub to 9-pin d-sub) USB 2.0 Mini-A Cable (for connecting the BeagleBoard USB OTG port to my MacBook as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve also ordered the following accessories to get my BeagleBoard up and running (all ordered at Mükra Elektronik):</p>
<p><a href="http://www.muekra.com/ca-usb-seriell2-0.html" target="_blank">USB-Serial Adapter</a> (you can get the drivers for <a href="http://www.ftdichip.com/Drivers/VCP/MacOSX/FTDIUSBSerialDriver_v2_2_14.dmg" target="_blank">MAC OS X</a> and <a href="http://www.ftdichip.com/Drivers/CDM/CDM%202.06.00%20WHQL%20Certified.zip" target="_blank">Windows</a> <a href="http://www.ftdichip.com/Drivers/VCP.htm" target="_blank">here</a>)</p>
<p><a href="http://www.muekra.com/nmk9bb-1-8mgo.html" target="_blank">Serial Null-Modem Cable (9-pin d-sub to 9-pin d-sub)</a></p>
<p><a href="http://www.muekra.com/usb2-0-a-mini-1-8m.html" target="_blank">USB 2.0 Mini-A Cable</a> (for connecting the BeagleBoard USB OTG port to my MacBook as the power source)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stockwerk.biz/blog/2010/03/beagleboard-accessories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The BeagleBoard arrived!</title>
		<link>http://www.stockwerk.biz/blog/2010/03/the-beagleboard-arrived/</link>
		<comments>http://www.stockwerk.biz/blog/2010/03/the-beagleboard-arrived/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 14:50:32 +0000</pubDate>
		<dc:creator>Boris Stock</dc:creator>
				<category><![CDATA[BeagleBoard]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[0xdroid]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[mükra]]></category>
		<category><![CDATA[rowboat]]></category>

		<guid isPermaLink="false">http://www.stockwerk.biz/blog/?p=30</guid>
		<description><![CDATA[I&#8217;ve finally received my BeagleBoard which I&#8217;ve ordered at Mükra Elektronik (Shop Link). It shipped two days after my order: Thumbs up to Mükra for the fast and reliable shipping. I will soon post my first research results here. Stay tuned! After getting used to the environment I will start my first project: A customized [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally received my BeagleBoard which I&#8217;ve ordered at Mükra Elektronik (<a href="http://www.muekra.com/beagleboard.html" target="_blank">Shop Link</a>).<br />
It shipped two days after my order: Thumbs up to Mükra for the fast and reliable shipping.</p>
<p>I will soon post my first research results here. Stay tuned!</p>
<p>After getting used to the environment I will start my first project: A customized Android UI (based on <a href="http://code.google.com/p/rowboat/" target="_blank">rowboat</a> or <a href="http://code.google.com/p/0xdroid/" target="_blank">0xdroid</a>).</p>
<p><img class="alignnone" title="BeagleBoard unwrapped" src="http://photos-f.ak.fbcdn.net/hphotos-ak-snc3/hs375.snc3/24042_1342758443071_1054524717_31002694_3494117_n.jpg" alt="" width="453" height="604" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stockwerk.biz/blog/2010/03/the-beagleboard-arrived/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

