<?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>Handy Codeworks</title>
	<atom:link href="http://handycodeworks.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://handycodeworks.com</link>
	<description></description>
	<lastBuildDate>Tue, 13 Mar 2012 04:38:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Chroot for Embedded development environments</title>
		<link>http://handycodeworks.com/?p=81</link>
		<comments>http://handycodeworks.com/?p=81#comments</comments>
		<pubDate>Tue, 13 Mar 2012 04:38:45 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=81</guid>
		<description><![CDATA[TweetWhen working on embedded devices, the build system doesn&#8217;t work out of the box for the latest Linux distributions. This leads the developer to either choose to keep their whole system on the older version or attempt to patch all the problems that have crept in. It shouldn&#8217;t be that way, you can have your [...]]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton81" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D81&amp;text=Chroot%20for%20Embedded%20development%20environments%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D81" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=81"></g:plusone></div><p>When working on embedded devices, the build system doesn&#8217;t work out of the box for the latest Linux distributions. This leads the developer to either choose to keep their whole system on the older version or attempt to patch all the problems that have crept in. It shouldn&#8217;t be that way, you <u>can</u> have your cake and eat it too.</p>
<p>The way you get around this conundrum is by creating a <a href="http://en.wikipedia.org/wiki/Chroot">chroot environment</a> to do your building in. The basic idea is you have a folder that contains all the Linux system file inside it and they you &#8220;change your root folder&#8221; to be that folder. You&#8217;re running the same kernel just a different filesystem. For Ubuntu, there is a nice tool called &#8220;schroot&#8221; to manage this process. See the <a href="https://help.ubuntu.com/community/DebootstrapChroot">Ubuntu wiki page</a> for details. </p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=81</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Build Same Kernel</title>
		<link>http://handycodeworks.com/?p=77</link>
		<comments>http://handycodeworks.com/?p=77#comments</comments>
		<pubDate>Mon, 02 Jan 2012 05:36:06 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=77</guid>
		<description><![CDATA[TweetHere some tips on how to get the source for a given Linux kernel that you would like to tweak. I needed to do this to play with the Android emulator. So when the kernel boots after decompression you&#8217;ll see a line like this: Linux version 2.6.29-00177-g24ee4d2 (veenstra@jackv.mtv.corp.google.com) (gcc version 4.4.0 (GCC) ) #21 Thu [...]]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton77" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D77&amp;text=Android%20Build%20Same%20Kernel%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D77" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=77"></g:plusone></div><p>Here some tips on how to get the source for a given Linux kernel that you would like to tweak. I needed to do this to play with the Android emulator. So when the kernel boots after decompression you&#8217;ll see a line like this:</p>
<p><code><br />
Linux version<strong> 2.6.29</strong>-00177-g<strong>24ee4d2</strong> (veenstra@jackv.mtv.corp.google.com) (<strong>gcc version 4.4.0</strong> (GCC) ) #21 Thu Aug 6 20:39:45 PDT 2009<br />
</code></p>
<p>I&#8217;ve highlighted in bold the bits we need. The first tells us the kernel version so we know what branch to look for, but really all we need is the second bit which is the SHA1 git hash for the tree containing the kernel. So if we go to the right kernel repository (See my <a href="http://handycodeworks.com/?p=74">previous entry</a> about that) all we have to do is checkout that tree:</p>
<p><code>git checkout 24ee4d2</code></p>
<p>Lastly, we need the configuration for the kernel. Luckily the Android kernel usually has a copy in the /proc directory called <strong>/proc/config.gz</strong>. All we have to do is copy that to the kernel directory, gunzip it, rename it .config and run:</p>
<p><code>make oldconfig</code></p>
<p>This command will prompt for any new options that are not defined in the .config file so if we found the right kernel tree and config file, there will be no prompts. If there are prompts, keep searching because you haven&#8217;t found it yet. I&#8217;m not sure exactly what happens when you patch the kernel, build it, and don&#8217;t commit it in because there wouldn&#8217;t be a SHA1 generated. Let&#8217;s just hope the Android developers don&#8217;t do that&#8230; seriously, that&#8217;s bad&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=77</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Android kernel to manifest</title>
		<link>http://handycodeworks.com/?p=74</link>
		<comments>http://handycodeworks.com/?p=74#comments</comments>
		<pubDate>Sun, 25 Dec 2011 19:40:15 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=74</guid>
		<description><![CDATA[TweetSo say you want to grab the Android linux kernel along with the rest of the project. By default the kernels are not included in the manifest to save bandwidth for the vast majority of developers that don&#8217;t need it. I like to add them back for convience and to track new code dumps automatically. [...]]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton74" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D74&amp;text=Adding%20Android%20kernel%20to%20manifest%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D74" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=74"></g:plusone></div><p>So say you want to grab the Android linux kernel along with the rest of the project. By default the kernels are not included in the manifest to save bandwidth for the vast majority of developers that don&#8217;t need it. I like to add them back for convience and to track new code dumps automatically. There are a few kernel projects listed at the bottom of the <a href="http://source.android.com/source/downloading.html">AOSP page</a> based on the SoC used. I&#8217;ve made a short list for reference:</p>
<ul>
<li>common &#8211; Collects changes from each the platform variants</li>
<li>goldfish &#8211; Emulator</li>
<li>msm &#8211; Qualcomm</li>
<li>omap &#8211; Texas Instruments</li>
<li>samsung &#8211; Samsung</li>
<li>tegra &#8211; NVidia</li>
</ul>
<p>So once you know which kernel(s) you want to add to your repo manifest. Here&#8217;s how you can do it (Note: $AOSP is the top directory of your Android tree):</p>
<p><code><br />
$ cd $AOSP/.repo/manifests  # Goto manifests directory<br />
$ git checkout -b with_kernel # Make a new branch to add kernel(s)<br />
</code></p>
<p>Then you need to edit the default.xml manifest to add your kernel(s) between the <manifest></manifest> tags:<br />
<code>
<project path="kernel/samsung" name="kernel/samsung"/></code></p>
<p>By default you&#8217;ll get the master branch, which is empty. To find the one you really want, sync with repo then list all the branches available:<br />
<code><br />
$ repo sync<br />
$ cd $AOSP/kernel/$KERNEL_NAME<br />
$ git branch -la<br />
</code></p>
<p>Then you need to edit the default.xml manifest again with the correct branch (called revision in manifest):<br />
<code>
<project path="kernel/samsung" name="kernel/samsung" revision="android-samsung-3.0-ics-mr1"/></code></p>
<p>Now when you sync you&#8217;ll get the kernel tree. Since you just did a sync remotely, you can just a do a local sync to avoid going out to the internet to check for changes and speed it up:<br />
<code><br />
$ repo sync -l<br />
<code></p>
<p>If all this works, then you should commit the changes to your default.xml and repo will merge them into new versions for you:<br />
<code><br />
$ git commit -a -m "Added kernels to manifest"<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=74</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux Module Examples</title>
		<link>http://handycodeworks.com/?p=75</link>
		<comments>http://handycodeworks.com/?p=75#comments</comments>
		<pubDate>Thu, 22 Dec 2011 04:28:10 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=75</guid>
		<description><![CDATA[TweetI&#8217;ve been working through the book from the Linux kernel training course I took last week, thanks to my scholarship from the Linux foundation. All my work is posted on github in the form of small modules, enjoy: https://github.com/fmaker/module_examples]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton75" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D75&amp;text=Linux%20Module%20Examples%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D75" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=75"></g:plusone></div><p>I&#8217;ve been working through the book from the <a href="https://training.linuxfoundation.org/courses/linux-developer/linux-kernel-internals-and-debugging">Linux kernel training course</a> I took last week, thanks to <a href="http://www.linuxfoundation.org/news-media/announcements/2011/08/linux-foundation-announces-linux-training-scholarship-recipients">my scholarship from the Linux foundation</a>. All my work is posted on github in the form of small modules, enjoy:</p>
<p><center><a href="https://github.com/fmaker/module_examples">https://github.com/fmaker/module_examples</a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=75</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing Virtual Terminal from VMware</title>
		<link>http://handycodeworks.com/?p=73</link>
		<comments>http://handycodeworks.com/?p=73#comments</comments>
		<pubDate>Thu, 15 Dec 2011 18:17:24 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=73</guid>
		<description><![CDATA[TweetThis is too useful to be so hard to find: If you have linux running in VMware Workstation and want to access one of the virtual terminals, you need to hit CTRL-ALT-SPACE and then let go of the SPACE (while continuing to hold the CTRL-ATL) and hit the virtual terminal you want to access (one [...]]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton73" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D73&amp;text=Accessing%20Virtual%20Terminal%20from%20VMware%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D73" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=73"></g:plusone></div><p>This is too useful to be so hard to find:</p>
<blockquote><p>If you have linux running in VMware Workstation and want to access one of the virtual terminals, you need to hit CTRL-ALT-SPACE and then let go of the SPACE (while continuing to hold the CTRL-ATL) and hit the virtual terminal you want to access (one of the function keys (F1-F12).</p></blockquote>
<p>From: <a href="http://jim-zimmerman.com/?p=321" title="http://jim-zimmerman.com/?p=321">http://jim-zimmerman.com/?p=321</a></p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save time navigating directories using bash bookmarks</title>
		<link>http://handycodeworks.com/?p=70</link>
		<comments>http://handycodeworks.com/?p=70#comments</comments>
		<pubDate>Mon, 14 Nov 2011 19:16:43 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=70</guid>
		<description><![CDATA[TweetDo you always find yourself going to the same directories in bash? Are you sick of hitting tab complete all the time to get there? Use bash bookmarks, it will save you so much time! http://www.linuxjournal.com/article/10585]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton70" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D70&amp;text=Save%20time%20navigating%20directories%20using%20bash%20bookmarks%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D70" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=70"></g:plusone></div><p>Do you always find yourself going to the same directories in bash? Are you sick of hitting tab complete all the time to get there? Use bash bookmarks, it will save you so much time!</p>
<p><a href="http://www.linuxjournal.com/article/10585" title="http://www.linuxjournal.com/article/10585">http://www.linuxjournal.com/article/10585</a></p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=70</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning Android Systems Development</title>
		<link>http://handycodeworks.com/?p=68</link>
		<comments>http://handycodeworks.com/?p=68#comments</comments>
		<pubDate>Fri, 16 Sep 2011 16:52:41 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=68</guid>
		<description><![CDATA[TweetGetting started in systems development is tough. There are as many developers or nearly as many books, blogs, etc. to learn from. But if you make it up the curve the rewards are great. Not to mention you don&#8217;t have to worry about looks, just get it done. So here&#8217;s some tips I have for [...]]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton68" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D68&amp;text=Learning%20Android%20Systems%20Development%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D68" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=68"></g:plusone></div><p>Getting started in systems development is tough. There are as many developers or nearly as many books, blogs, etc. to learn from. But if you make it up the curve the <a href="http://news.dice.com/2011/05/25/more-linux-applications-means-more-demand-for-linux-experts/">rewards</a> are <a href="http://www.readwriteweb.com/mobile/2010/11/demand-for-android-skills-up-710-percent.php">great</a>. Not to mention you don&#8217;t have to worry about looks, just get it done. So here&#8217;s some tips I have for up-and-comers on getting going with Android systems development. <em>If any readers have more tips, I&#8217;d love to add them to this post, please email me</em></p>
<p>So unfortunately there isn&#8217;t too much out there in the way of proper overviews. Systems developers generally have to consult the code, which once you get used to it is actually not as hard as it sounds. A few things to check out:</p>
<ul>
<li>The linux kernel has a <a href="http://lxr.linux.no/linux+v3.0.4/Documentation/">Documentation directory</a></li>
<li>Android is a superset of embedded Linux so the book <a href="http://shop.oreilly.com/product/9780596529680.do" title="Building Embedded Linux Systems"></a> is quite helpful</li>
<li>The <a href="http://free-electrons.com/pub/video/2011/abs/android-2011-yaghmour-android-internals-x450p.webm">Android Internals</a> talk by Karim Yaghmour, author of the previously mentioned book, from this year&#8217;s <a href="http://events.linuxfoundation.org/events/android-builders-summit">Android Builder&#8217;s Summit</a> is good: http://free-electrons.com/blog/abs-2011-videos/</li>
<li>The <a href="http://source.android.com/index.html">Android Open Source Project</a> (AOSP) website has a little info, but the <a href="http://source.android.com/community/index.html">mailing lists</a> are even more helpful: </li>
<li>The<a href=" http://elinux.org/Main_Page"> Embedded Linux wiki</a> is great, but can often be outdated</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=68</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://free-electrons.com/pub/video/2011/abs/android-2011-yaghmour-android-internals-x450p.webm" length="256320145" type="video/webm" />
		</item>
		<item>
		<title>Offline AOSP tips</title>
		<link>http://handycodeworks.com/?p=61</link>
		<comments>http://handycodeworks.com/?p=61#comments</comments>
		<pubDate>Sun, 11 Sep 2011 03:15:25 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=61</guid>
		<description><![CDATA[TweetSo android.git.kernel.org is still down which has forced me to learn a few tricks on building AOSP: If you only want to synchronize your working tree and NOT download the latest sources from the server (or in my case you can&#8217;t), just do a &#8220;local&#8221; sync: $ repo sync -l Update 9/25/11: Seems to work [...]]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton61" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D61&amp;text=Offline%20AOSP%20tips%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D61" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=61"></g:plusone></div><p>So android.git.kernel.org is still down which has forced me to learn a few tricks on building AOSP:</p>
<p>If you only want to synchronize your working tree and NOT download the latest sources from the server (or in my case you can&#8217;t), just do a &#8220;local&#8221; sync:</p>
<p><code>$ repo sync -l</code></p>
<p><strong>Update 9/25/11:</strong></p>
<p>Seems to work much better to switch branches if you just use repo init to update your manifest (inside $AOSP/.repo) and then sync:<br />
<code>$ repo init -b &lt;BRANCH_NAME&gt;<br />
$ repo sync -j16</code></p>
<p><s>If you want to build a specific version of Android without having to do new repo init (<a href="http://groups.google.com/group/android-building/browse_thread/thread/d6c505873a8680a7">Thanks JBQ!</a>). For example, say you want to build gingerbread which is API level 6.</p>
<p><code>$ repo forall -c git checkout korg/gingerbread<br />
$ repo forall external/qemu sdk -c git checkout korg/tools_r6</code></p>
<p><strong>Update:</strong> You also need this patch for $AOSP/external/jsilver:<br />
<code></p>
<p>diff --git Android.mk Android.mk<br />
index ce1ab5c..2f0f83b 100644<br />
--- Android.mk<br />
+++ Android.mk<br />
@@ -24,4 +24,6 @@ LOCAL_MODULE := jsilver<br />
 LOCAL_JAVA_LIBRARIES := guavalib<br />
 LOCAL_JAVA_RESOURCE_DIRS := src</p>
<p>+LOCAL_MODULE_TAGS := optional<br />
+<br />
 include $(BUILD_HOST_JAVA_LIBRARY)<br />
</code></s></p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=61</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>O&#8217;Reilly Radar Blog Post</title>
		<link>http://handycodeworks.com/?p=60</link>
		<comments>http://handycodeworks.com/?p=60#comments</comments>
		<pubDate>Sun, 28 Aug 2011 16:15:27 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=60</guid>
		<description><![CDATA[TweetI recently did an interview with O&#8217;Reilly&#8217;s radar blog about reducing power consumption on Android applications. If this is of interest to you, it is definitely worth a read.]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton60" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D60&amp;text=O%26%238217%3BReilly%20Radar%20Blog%20Post%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D60" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=60"></g:plusone></div><p>I recently did an interview with O&#8217;Reilly&#8217;s radar blog about reducing power consumption on Android applications. If this is of interest to you, it is definitely worth a read.</p>
<p><a href="http://radar.oreilly.com/2011/08/android-app-power-use.html" title="Is your Android app getting enough sleep?"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=60</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Training Scholarship</title>
		<link>http://handycodeworks.com/?p=56</link>
		<comments>http://handycodeworks.com/?p=56#comments</comments>
		<pubDate>Tue, 09 Aug 2011 00:00:37 +0000</pubDate>
		<dc:creator>Frank</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://handycodeworks.com/?p=56</guid>
		<description><![CDATA[TweetGood news, I won a training scholarship from the Linux foundation! The scholarship pays for one Linux training class. I&#8217;m definately going with Linux Kernel and Internals. It will be super helpful getting up to speed. The kernel is difficult to get acquainted with and often requires a lot of experience to comfortable. Thank you [...]]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton56" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D56&amp;text=Linux%20Training%20Scholarship%20-%20Handy%20Codeworks&amp;related=FrankMaker&amp;lang=en&amp;count=none&amp;counturl=http%3A%2F%2Fhandycodeworks.com%2F%3Fp%3D56" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://handycodeworks.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><div class="plus-one-wrap"><g:plusone count="false" href="http://handycodeworks.com/?p=56"></g:plusone></div><p>Good news, I won a training scholarship from the Linux foundation! The scholarship pays for one Linux training class. I&#8217;m definately going with <a href="http://training.linuxfoundation.org/courses/linux-developer/linux-kernel-internals-and-debugging" title="Linux Kernel and Internals">Linux Kernel and Internals</a>. It will be <b>super</b> helpful getting up to speed. The kernel is difficult to get acquainted with and often requires a lot of experience to comfortable. Thank you so much Linux foundation!</p>
]]></content:encoded>
			<wfw:commentRss>http://handycodeworks.com/?feed=rss2&#038;p=56</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

