<?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>Amazon Kindle 3 and Kindle DX Review and News Blog &#187; Kindle Mod</title>
	<atom:link href="http://blogkindle.com/category/kindle-mod/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogkindle.com</link>
	<description>Daily News about Amazon&#039;s new e-book reader</description>
	<lastBuildDate>Sun, 05 Sep 2010 11:21:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Jailbreaking the International Kindle</title>
		<link>http://blogkindle.com/2009/10/jailbreaking-the-international-kindle/</link>
		<comments>http://blogkindle.com/2009/10/jailbreaking-the-international-kindle/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 18:28:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Hacks]]></category>
		<category><![CDATA[Kindle International]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[clarknova]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[Jean-Yves Avenard]]></category>
		<category><![CDATA[mobileread forums]]></category>
		<category><![CDATA[RSA]]></category>
		<category><![CDATA[screensaver]]></category>
		<category><![CDATA[tarbomb]]></category>

		<guid isPermaLink="false">http://blogkindle.com/?p=2398</guid>
		<description><![CDATA[I was quite close to publishing similar findings myself but Jean-Yves Avenard beat me to it. It is now possible to create custom updates for International Kindle that runs firmware 2.2.* Fortunately there is no need for hardware changes&#8230; A little background information first. A while back Igor Skochinsky found serial console connector on Kindle [...]]]></description>
			<content:encoded><![CDATA[

<p>I was quite close to publishing similar findings myself but Jean-Yves Avenard <a href="http://jyavariousideas.blogspot.com/2009/10/how-to-create-packages-for-kindle-2.html" target="_blank">beat me to it</a>. It is now possible to create custom updates for <a href="http://www.amazon.com/gp/product/B0015T963C?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0015T963C" rel="nofollow">International Kindle</a> that runs firmware 2.2.* Fortunately there is no need for <a href="http://blogkindle.com/2009/10/hacking-the-international-kindle-first-attempt/">hardware changes</a>&hellip;</p>
<p>A little background information first. A while back Igor Skochinsky found serial console connector on Kindle 1 and reverse engineered scripts that Kindle uses to update it&rsquo;s firmware. Since Amazon is paying for it&rsquo;s wireless traffic they don&rsquo;t push full firmware dumps as updates but rather compressed linux patches that only change the things that need to be changed and are relatively small. In Kindle 2 same scripts were used. The only thing that changed was device ID. This was to safeguard against installing update for wrong Kindle device rather than to prevent custom update installation altogether. Kindle DX was a similar story.</p>
<p>However it all changed when Kindle 2 International came out. There was a device ID change as well but updates still failed to install. Using debug commands that still worked (you need to type then in the home screen search box &ndash; they are quite harmless will not break your Kindle):</p>
<ul>
<li>;debugOn</li>
<li>;dumpMessages</li>
</ul>
<p>Amonng other housekeeping messages it returned the folloing lines:</p>
<blockquote><p>091021:102422 EXT3 FS on mmcblk0p1, internal journal<br>
091021:102422 system: I _otaupexec:def:processing update /mnt/us/update_tool.bin<br>
091021:102422 system: I _otaupexec:def:version is &ldquo;FC02&Prime;<br>
091021:102422 system: I _otaupexec:def:update image checksum OK<br>
091021:102422 system: <strong>E _otaupexec:def:signature does not exist for &ldquo;tool.sh&rdquo;</strong><br>
091021:102422 system: <strong>E _otaupexec:def:signature verification failed</strong></p></blockquote>
<p>So it looked like Amazon was signing update packages now. Worst case scenario would have been usage of asymmetric encryption keys like RSA that would be impossible to break until we have working full-scale quantum computers. Best case would be Amazon using something simple &ndash; like tar file scrambling that they are using to &ldquo;encrypt&rdquo; the whole update file.</p>
<p>I was trying to break into the Kindle via serial console that can be exposed by sliding the top plastic cover off the device but fried my Kindle in the process.</p>
<p>While I was waiting for the new device to arrive, mobileread.com member clarknova suggested using a tarbomb to break into the new Kindle. He assumed that new Kindle would still use the old code to extract files from the update before verifying the signatures. It proved to be true. A tarbomb exploits the fact that linux tar would extract anything that is given to it and might put it somewhere where package receiver didn&rsquo;t intent it to go. For example older versions would honor relative paths, so if tarball contained file ../../etc/rc5.d/S00kill-code and most likely user would try to unpack the file in /home/username, the malicious file would go into /etc/rc5.d/ and get executed on the startup. While version of tar that is installed on Kindle discards parent directory references, it allows to unpack a symlink that points anywhere in the filesystem.&nbsp;This allowed to craft an update that would still fail to install but in the process would deposit a startup script that would unlock further access to Kindle internals.</p>
<p>Unfortunately Amazon did use the asymmetric encryption to sign the packages. Fortunately there is a very nice way around. Kindle doesn&rsquo;t use just one key to verify the signature &ndash; it enumerates all key files in /etc/uks directory and if any of the keys yields a positive signature validation &ndash; the file passes the test. So Jean-Yves Avenard created a tarbomb that would add extra public key to that directory. He also modified Igor&rsquo;s script to use corresponding private key to sign all the files in the package.</p>
<p>Nice thing about this mod is that it doesn&rsquo;t change any files in Kindle filesystem, it just adds. So it will not cause checksum conflicts when installing official Amazon updates in the future. However if you use this jailbreak mod to install other updates like Unicode Font Hack, screensaver, savory, etc that DO change files then standard rules apply &ndash; official updates will fail and you&rsquo;ll need to revert the hacks, install official update manually and then reinstall the hacks. Although I doubt that we&rsquo;ll see many official Amazon updates anytime soon. I&rsquo;ll make a separate post on this topic at some other time.</p>
<p>I&rsquo;m pretty sure that in the next version of the device (International Kindle DX perhaps or whatever comes next), Amazon will fix this vulnerability and serial console might be required to install things on Kindle or perhaps some other security exploit. But for now here are specifics:</p>
<p>You can download the &ldquo;jailbreak&rdquo; update <a href="http://www.avenard.org/kindle2/packager.tar.gz">here</a>. I&rsquo;ve tested it on my Kindle and it works perfectly. It also contains the updated script to create your own packages. However I would strongly advise you to do it only if you really-really need to, really-really know that you are doing and are willing to brick your device. Several people were known to irreversible brick their Kindle eBook readers by experimenting with them. I bricked two so far trying to create unicode font hack &ndash; one US Kindle 2 a while back another Kindle 2 International recently.</p>
<p>So if you are not sure about what are you doing &ndash; stick to pre-canned hacks from verified sources that have been tested to work and have uninstallers available. These are relatively safe though again there is always a chance of something going wrong and hacking the Kindle absolutely does void the warranty.</p>
<p>I&rsquo;ve tested the pre-canned screensaver hack that can be downloaded <a href="http://www.avenard.org/kindle2/kindle-k2i-screensaver-0.1.zip">here</a> and it does work perfectly.</p>
<p>To avoid having to jailbreak Kindle multiple times and creating potentially conflicting hacks I recommend to all Kindle modders out there to use Jean-Yves Avenard&rsquo;s packager and private/public key pair for creating Internaional Kindle hacks. I&rsquo;m going to use it for Unicode Font Hack myself.</p>
<p>Right after publishing this post I&rsquo;m going to reorganize the Unicode Font Hack a bit and release a new version for all Kindle versions including the international one. Stay tuned!</p>

<h3>Related Posts</h3><ul class="related_post"><li>June 22, 2009 -- <a href="http://blogkindle.com/2009/06/kindle-dx-screensaver-hack/" title="Kindle DX Screensaver Hack">Kindle DX Screensaver Hack (4)</a></li><li>March 11, 2009 -- <a href="http://blogkindle.com/2009/03/kindle-1-screensaver-hack/" title="Kindle 1 Screensaver Hack">Kindle 1 Screensaver Hack (5)</a></li><li>March 9, 2009 -- <a href="http://blogkindle.com/2009/03/kindle-2-screensaver-hack/" title="Kindle 2 Screensaver Hack">Kindle 2 Screensaver Hack (34)</a></li><li>October 5, 2009 -- <a href="http://blogkindle.com/2009/10/solution-for-cracked-kindle-problem/" title="Solution for cracked Kindle problem">Solution for cracked Kindle problem (1)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/10/jailbreaking-the-international-kindle/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Hacking the International Kindle &#8211; First Attempt</title>
		<link>http://blogkindle.com/2009/10/hacking-the-international-kindle-first-attempt/</link>
		<comments>http://blogkindle.com/2009/10/hacking-the-international-kindle-first-attempt/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 23:51:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Hacks]]></category>
		<category><![CDATA[Kindle International]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[serial console]]></category>

		<guid isPermaLink="false">http://blogkindle.com/?p=2394</guid>
		<description><![CDATA[If you were wondering why there were no posts lately &#8211; I&#8217;ve been busy trying to come up with a way to install Unicode Font Hack on Kindle 2 International. Rather than ordering ready-made USB-RS232-TTL converter I&#8217;ve decided to have some fun with little hardware project and create one myself. Unfortunately I&#8217;ve short-circuited something within [...]]]></description>
			<content:encoded><![CDATA[

<p><div id="attachment_2395" class="wp-caption alignright" style="width: 360px"><img class="size-full wp-image-2395" title="RS-232 to TTL converter for Kindle" src="http://blogkindle.com/wp-content/uploads/2009/10/kindle-rs232-ttl-conveter.jpg" alt="RS-232 to TTL converter for Kindle" width="350" height="314"><p class="wp-caption-text">RS-232 to TTL converter for Kindle</p></div>
</p>
<p>If you were wondering why there were no posts lately &ndash; I&rsquo;ve been busy trying to come up with a way to install <a href="http://blogkindle.com/unicode-fonts-hack/">Unicode Font Hack</a> on <a href="http://www.amazon.com/gp/product/B0015T963C?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B0015T963C" rel="nofollow">Kindle 2 International</a>. Rather than ordering ready-made USB-RS232-TTL converter I&rsquo;ve decided to have some fun with little hardware project and create one myself.</p>
<p>Unfortunately I&rsquo;ve short-circuited something within Kindle when connecting wires to the serial console and pretty much bricked the unit. This is yet another reminder to people that you shouldn&rsquo;t try to hack something like Kindle unless you are willing to brick it.</p>
<p>Right now I&rsquo;m waiting for the next specimen to arrive as I&rsquo;m determined to make Unicode Font Hack to work and make International Kindle truly international.</p>
<p>I bricked one Kindle a while back when I was creating the original Unicode Font Hack and succeeded on the second attempt. I hope that with international Kindle this will also be the case&hellip;</p>

<h3>Related Posts</h3><ul class="related_post"><li>October 30, 2009 -- <a href="http://blogkindle.com/2009/10/unicode-font-hack-v0-2-now-for-kindle-international-too/" title="Unicode Font Hack v0.2, now for Kindle International too!">Unicode Font Hack v0.2, now for Kindle International too! (41)</a></li><li>October 30, 2009 -- <a href="http://blogkindle.com/2009/10/kindle-anti-brick-hack/" title="Kindle anti-brick hack">Kindle anti-brick hack (5)</a></li><li>March 1, 2009 -- <a href="http://blogkindle.com/2009/03/kindle-2-disassembled/" title="Kindle 2 Disassembled">Kindle 2 Disassembled (0)</a></li><li>September 18, 2008 -- <a href="http://blogkindle.com/2008/09/hacking-the-kindle/" title="Hacking the kindle.">Hacking the kindle. (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/10/hacking-the-international-kindle-first-attempt/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Modding the Kindle For European Wireless</title>
		<link>http://blogkindle.com/2009/08/modding-the-kindle-for-european-wireless/</link>
		<comments>http://blogkindle.com/2009/08/modding-the-kindle-for-european-wireless/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 13:28:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle 2 Hacks]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Whispernet]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[iKindle3GS.EU]]></category>
		<category><![CDATA[ireaderreview]]></category>
		<category><![CDATA[SIM card]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://blogkindle.com/?p=1960</guid>
		<description><![CDATA[iReaderReview reports interesting piece of news.&#160;Someone has started a project to hack the Kindle for use with European wireless networks.&#160; It looks like they&#8217;ve already managed to switch the modem and add a SIM card, but haven&#8217;t yet figured out the software end of the mod. If you want to make your Kindle&#8217;s hardware compatible [...]]]></description>
			<content:encoded><![CDATA[

<p><div id="attachment_1961" class="wp-caption alignright" style="width: 310px"><img class="size-full wp-image-1961" src="http://blogkindle.com/wp-content/uploads/2009/08/8.jpg" alt="from iKindle3GS.EU" width="300" height="225"><p class="wp-caption-text">from iKindle3GS.EU</p></div>
</p>
<p><a href="http://ireaderreview.com/2009/08/25/diy-kindle-mod-for-europe-wireless-use/" target="_blank">iReaderReview</a> reports interesting piece of news.&nbsp;Someone has started a project to hack the <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00154JDAI" rel="nofollow">Kindle</a> for <a href="http://ikindle3gs.eu/" target="_blank">use with European wireless networks</a>.&nbsp; It looks like they&rsquo;ve already managed to switch the modem and add a SIM card, but haven&rsquo;t yet figured out the software end of the mod.</p>
<p>If you want to make your Kindle&rsquo;s hardware compatible with European networks, the process seems fairly straightforward.&nbsp; Just take the device apart, add the above mentioned pieces to the puzzle, and zip it back up.&nbsp; But be warned: you won&rsquo;t actually be able to use wireless until someone releases the requisite software hack.</p>
<p>A fun fact from the project: the hardware is designed in a way that adding your own SIM card is ridiculously easy.&nbsp; Some would even argue that the Kindle was actually <a href="http://ireaderreview.com/2009/08/25/diy-kindle-mod-for-europe-wireless-use/" target="_blank">meant to be modded for Europe</a>.&nbsp; I find it unlikely that Amazon had hackers in mind, but they probably did design the device with Europe somewhat in mind.&nbsp; Once the Kindle does hit Europe, the hardware will be more or less ready to go without any real changes in the manufacturing process.</p>

<h3>Related Posts</h3><ul class="related_post"><li>October 12, 2009 -- <a href="http://blogkindle.com/2009/10/international-kindle-may-come-to-canada-and-new-zealand-soon/" title="International Kindle may come to Canada and New Zealand soon">International Kindle may come to Canada and New Zealand soon (5)</a></li><li>September 25, 2009 -- <a href="http://blogkindle.com/2009/09/irex-gets-verizon-as-3g-carrier/" title="iRex Gets Verizon As 3G Carrier">iRex Gets Verizon As 3G Carrier (1)</a></li><li>September 23, 2009 -- <a href="http://blogkindle.com/2009/09/sony-reader-touchpocket-vs-kindle/" title="Sony Reader Touch/Pocket vs. Kindle">Sony Reader Touch/Pocket vs. Kindle (2)</a></li><li>August 28, 2009 -- <a href="http://blogkindle.com/2009/08/irex-reader-will-also-use-barnes-nobles-platform/" title="iRex Reader Will Also Use Barnes &amp; Noble&#8217;s Platform">iRex Reader Will Also Use Barnes &amp; Noble&#8217;s Platform (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/08/modding-the-kindle-for-european-wireless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unicode Fonts for Kindle 2 v0.1</title>
		<link>http://blogkindle.com/2009/04/unicode-fonts-for-kindle-2-v01/</link>
		<comments>http://blogkindle.com/2009/04/unicode-fonts-for-kindle-2-v01/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 09:42:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basic Web]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Kindle 2]]></category>
		<category><![CDATA[Kindle 2 Hacks]]></category>
		<category><![CDATA[Kindle Hacks]]></category>
		<category><![CDATA[Kindle International]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Tips & Tricks]]></category>
		<category><![CDATA[Chinse]]></category>
		<category><![CDATA[cyrillic]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Japanese]]></category>
		<category><![CDATA[Liberation]]></category>
		<category><![CDATA[Russian]]></category>
		<category><![CDATA[UFHack]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=1183</guid>
		<description><![CDATA[Patches were tested by several volunteers and all results were positive. The patch works and doesn&#8217;t cause any problems. You can now read books on your Amazon Kindle 2 in Russian, Chinese, Japanese and probably number of other languages. Currently I&#8217;m releasing hack with two different fonts: Liberation that comes from RedHat Linux and Droid [...]]]></description>
			<content:encoded><![CDATA[

<p>Patches were tested by several volunteers and all results were positive. The patch works and doesn&rsquo;t cause any problems. You can now read books on your <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=blogkindle0e-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B00154JDAI" rel="nofollow">Amazon Kindle 2</a> in Russian, Chinese, Japanese and probably number of other languages.</p>
<p>Currently I&rsquo;m releasing hack with two different fonts: Liberation that comes from RedHat Linux and Droid that comes from Google Android project. Both fonts are open-source and they are the best ones I could find that suit the needs of this hack. Finding good fonts was much harder than creating the hack itself.</p>
<p><a href="http://www.blogkindle.com/unicode-fonts-hack/"><strong>Instructions and download links can be found here</strong></a>. Please-please-please-please-please do be very-very-very-very-very careful if you decide to experiment with adding your own fonts to the hack. If you find good free or reasonably priced fonts that work &ndash; please let me know &ndash; I&rsquo;ll test them and make more versions of the hack available here and give you proper credit. Please spread the word about this hack as it will increase chances of someone finding better fonts that can be used with it.</p>
<p>Here are some screenshots of what Kindle 2 with hacked fonts looks like:</p>
<p><img class="attachment wp-att-1188" src="http://www.blogkindle.com/wp-content/uploads/2009/04/kindle-ufhack-v01-liberation.jpg" alt="kindle-ufhack-v01-liberation" width="500" height="468" align="none"></p>
<p>&hellip;</p>
<p><img class="attachment wp-att-1186" src="http://www.blogkindle.com/wp-content/uploads/2009/04/kindle-ufhack-v01-droid.jpg" alt="kindle-ufhack-v01-droid" width="500" height="608" align="none"></p>
<p>I would like to thank <a href="http://hybernationmusic.blogspot.com" target="_blank">John</a>, Ted and some other folks for helping me test this patch. Another big thank you goes to Igor who created the <a href="http://igorsk.blogspot.com/2007/12/hacking-kindle-part-3-root-shell-and.html">python script</a> that creates Kindle 2 update packages.</p>
<p>I&rsquo;ll now shift my attention to figuring out creating custom recovery mode updates. Once this is done &ndash; I&rsquo;ll have much more freedom in messing with fonts and other settings without fear of bricking my Kindle 2.</p>

<h3>Related Posts</h3><ul class="related_post"><li>June 21, 2009 -- <a href="http://blogkindle.com/2009/06/unicode-font-hack-for-kindle-dx/" title="Unicode Font Hack for Kindle DX">Unicode Font Hack for Kindle DX (9)</a></li><li>June 19, 2009 -- <a href="http://blogkindle.com/2009/06/unicode-on-kindle-dx-via-pdf/" title="Unicode on Kindle DX via PDF">Unicode on Kindle DX via PDF (6)</a></li><li>April 2, 2009 -- <a href="http://blogkindle.com/2009/04/cyrillic-kindle-beta-testers-needed/" title="Cyrillic Kindle &#8211; Beta testers needed!">Cyrillic Kindle &#8211; Beta testers needed! (40)</a></li><li>September 5, 2010 -- <a href="http://blogkindle.com/2010/09/mangle-manga-meets-the-kindle/" title="Mangle: Manga Meets the Kindle">Mangle: Manga Meets the Kindle (3)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/04/unicode-fonts-for-kindle-2-v01/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Kindle 2 Screensaver Hack</title>
		<link>http://blogkindle.com/2009/03/kindle-2-screensaver-hack/</link>
		<comments>http://blogkindle.com/2009/03/kindle-2-screensaver-hack/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 17:40:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle 2 Hacks]]></category>
		<category><![CDATA[Kindle Hacks]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Tips & Tricks]]></category>
		<category><![CDATA[mobileread forums]]></category>
		<category><![CDATA[screensaver]]></category>
		<category><![CDATA[updating kindle software]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=993</guid>
		<description><![CDATA[For people who wanted to replace author pictures in Kindle 2 Screensaver with any pictures of their own there is now a solution. clarknova from MobileRead Forums created a custom update that allows you to replace Amazon-supplied pictures that are shown when Kindle 2 goes to sleep with any pictures of your own. Before you [...]]]></description>
			<content:encoded><![CDATA[

<p>For people who wanted to replace author pictures in <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00154JDAI" rel="nofollow">Kindle 2</a> Screensaver with any pictures of their own there is now a solution. clarknova from <a href="http://www.mobileread.com/forums/showpost.php?p=380345&amp;postcount=53" target="_blank">MobileRead Forums</a> created a custom update that allows you to replace Amazon-supplied pictures that are shown when Kindle 2 goes to sleep with any pictures of your own.</p>
<p>Before you continue with instructions below, please understand that you are doing it at your own risk and this can potentially void your warranty. On the bright side, the update seems small, straightforward and reversable and several people (myself included &ndash; see pictures below) have successfully applied it to their devices.</p>
<p>Important thing to remember is that this update changes some configuration files. Official Amazon updates verify file checksums before installing. So while you have this hack installed updates that would try to change the same file will fail. Solution is to reverse this hack (instructions below), apply Amazon update and then reapply the hack.</p>
<p>Before proceeding you may want to take a look at &ldquo;<a href="http://www.blogkindle.com/2009/03/updating-kindle-firmware/">Updating Kindle Software Post</a>&rdquo; and make sure that you have the most recent software on your Kindle.</p>
<p><strong>To enable custom screensavers</strong>:</p>
<ol>
<li>Download <a href="http://www.mobileread.com/forums/attachment.php?attachmentid=25054&amp;d=1236268975">kindle_screensaver_hack-0.3.zip</a>. This seems to the latest version now and I&rsquo;ll try to keep this post updated with more versions as they become available.</li>
<li>Unpack it.</li>
<li>Connect your Kindle to your PC via USB. Go to the Kindle drive (usually K:\)</li>
<li>If you don&rsquo;t see system folder, you need to <a href="http://www.bleepingcomputer.com/tutorials/tutorial62.html" target="_blank">configure Windows to show hidden files and folders</a>. Otherwise go the next step.</li>
<li>Go to the \system folder and create screen_saver subfolder in it.</li>
<li>Copy all of the images you want your screensaver to randomly cycle tough. Both PNG and JPEG formats are OK. While Kindle will resize images it&rsquo;s best to resize them to 600&times;800 beforehand. Definitely don&rsquo;t try putting 10 megapixel photos from your camera there as screensaver would then take long time to load and image will not display right. Good freeware tool to edit images is <a href="http://paint.net/" target="_blank">Paint.NET</a>
</li>
<li>Copy Update_kindle2_user_screen_savers.bin that you&rsquo;ve unpacked in step 2 to the root directory of your Kindle 2.</li>
<li>Unplug the USB cable.</li>
<li>Press &ldquo;Menu&rdquo;, select &ldquo;Settings&rdquo;, press &ldquo;Menu&rdquo;, select &ldquo;Update Your Kindle&rdquo;.</li>
<li>It normally should take under a minute to update and reboot your Kindle. And you&rsquo;re done!</li>
</ol>
<p>If you did everything right you should see the following in at the bottom of your settings screen.</p>
<p><img class="attachment wp-att-995" src="http://www.blogkindle.com/wp-content/uploads/2009/03/kindle-screensaver-hack-ver.jpg" alt="kindle-screensaver-hack-version" width="500" height="94" align="none"></p>
<p>&hellip;</p>
<p><img class="attachment wp-att-997" src="http://www.blogkindle.com/wp-content/uploads/2009/03/kindle-screensaver-hack.jpg" alt="kindle-screensaver-hack" width="500" height="608" align="none"></p>
<p>&hellip;</p>
<p>To revert to standard screensavers:</p>
<ol>
<li>Connect your Kindle to your PC via USB. Go to the Kindle drive (usually K:\)</li>
<li>Copy Update_kindle2_restore_default_screen_savers.bin to the root directory of your Kindle 2.</li>
<li>Unplug the USB cable.</li>
<li>Press &ldquo;Menu&rdquo;, select &ldquo;Settings&rdquo;, press &ldquo;Menu&rdquo;, select &ldquo;Update Your Kindle&rdquo;.</li>
<li>It normally should take under a minute to update and reboot your Kindle. And you&rsquo;re done!</li>
<li>If you want to disable custom screensavers for good rather than temporarily disable the hack to install Amazon Update, you may want to delete the \system\screen_saver directory you&rsquo;ve created before. Be extra careful not to delete anything else in the \system directory!</li>
</ol>
<p><a href="http://commons.wikimedia.org/wiki/Main_Page" target="_blank">Wikimedia.org</a> may be a good place to stock up on nice copyright-free images.</p>
<p>If you try this hack, please take a minute to post your experience in the comments as I&rdquo;m sure most people who read this post will be interested in them.</p>

<h3>Related Posts</h3><ul class="related_post"><li>October 30, 2009 -- <a href="http://blogkindle.com/2009/10/jailbreaking-the-international-kindle/" title="Jailbreaking the International Kindle">Jailbreaking the International Kindle (7)</a></li><li>June 22, 2009 -- <a href="http://blogkindle.com/2009/06/kindle-dx-screensaver-hack/" title="Kindle DX Screensaver Hack">Kindle DX Screensaver Hack (4)</a></li><li>March 11, 2009 -- <a href="http://blogkindle.com/2009/03/kindle-1-screensaver-hack/" title="Kindle 1 Screensaver Hack">Kindle 1 Screensaver Hack (5)</a></li><li>October 5, 2009 -- <a href="http://blogkindle.com/2009/10/solution-for-cracked-kindle-problem/" title="Solution for cracked Kindle problem">Solution for cracked Kindle problem (1)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/03/kindle-2-screensaver-hack/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>DIY Kindle 1 USB Charger</title>
		<link>http://blogkindle.com/2009/03/diy-kindle-1-usb-charger/</link>
		<comments>http://blogkindle.com/2009/03/diy-kindle-1-usb-charger/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 17:15:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Hacks]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Tips & Tricks]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[usb charger]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=972</guid>
		<description><![CDATA[While researching Kindle USB chargers I found these instructions by Alan from SnarkyBytes.com on building your own USB charger cable for Kindle 1. To make one yourself you&#8217;ll need: Some basic tools and skills to use them (don&#8217;t try this if you don&#8217;t know what are you doing; &#8220;A&#8221; tip and pigtail for it (available [...]]]></description>
			<content:encoded><![CDATA[

<p>While researching Kindle USB chargers I found <a href="http://snarkybytes.com/?p=425" target="_blank">these instructions</a> by Alan from SnarkyBytes.com on building your own USB charger cable for Kindle 1. To make one yourself you&rsquo;ll need:</p>
<ul>
<li>Some basic tools and skills to use them (don&rsquo;t try this if you don&rsquo;t know what are you doing;</li>
<li>&ldquo;A&rdquo; tip and pigtail for it (available from RadioShack)</li>
<li>USB cable that will be converted into charger (any USB cable that you can spare will do)</li>
<li>Optionally, a shrink-tube if you want it to look neat.</li>
</ul>
<p>In the end you&rsquo;ll have a cable that can be used to charge your Kindle1 from any PC or Mac with USB port or any other universal USB power adapters available on the market. Please use these instructions at your own risk.</p>

<h3>Related Posts</h3><ul class="related_post"><li>September 9, 2009 -- <a href="http://blogkindle.com/2009/09/make-your-own-kindle-case-that-doubles-as-a-stand/" title="Make Your Own Kindle Case That Doubles as a Stand">Make Your Own Kindle Case That Doubles as a Stand (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/03/diy-kindle-1-usb-charger/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reflashing Kindle 2 with custom firmware may soon be a reality.</title>
		<link>http://blogkindle.com/2009/03/reflashing-kindle-2-with-custom-firmware-may-soon-be-a-reality/</link>
		<comments>http://blogkindle.com/2009/03/reflashing-kindle-2-with-custom-firmware-may-soon-be-a-reality/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 00:02:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Kindle 2]]></category>
		<category><![CDATA[Kindle 2 Hacks]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Jesse Vincent]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=942</guid>
		<description><![CDATA[It looks like Jesse Vincent has found a way to re-flash Kindle 2 with custom hand-made firmwares. At the moment he&#8217;s not uncovering any details of the process. Hopefully, he or somebody else would soon come up with firmware that would support full range of Unicode international characters to enable proper display of Asian, Cyrillic [...]]]></description>
			<content:encoded><![CDATA[

<p>It looks like Jesse Vincent has found a way to <a href="http://blog.fsck.com/2009/03/a-couple-quick-updates.html" target="_blank">re-flash Kindle 2 with custom hand-made firmwares</a>. At the moment he&rsquo;s not uncovering any details of the process. Hopefully, he or somebody else would soon come up with firmware that would support full range of Unicode international characters to enable proper display of Asian, Cyrillic and other characters on web-pages and in downloaded eBooks and documents.</p>
<p>It took <a href="http://www.amazon.com/gp/product/B001EQ0HAW?ie=UTF8&amp;tag=blogkindle0e-20&amp;link_code=as3&amp;camp=211189&amp;creative=373489&amp;creativeASIN=B001EQ0HAW" rel="nofollow">Microsoft Zune</a> more than a year to put a Unicode font in the firmware (even considering that Zune is a Windows Mobile-based device, and Windows Mobile had proper Unicode support for ages). This is why I don&rsquo;t believe we would see Unicode support in official firmware updates from Amazon and <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00154JDAI" rel="nofollow">Kindle</a> community would be better off helping themselves.</p>

<h3>Related Posts</h3><ul class="related_post"><li>September 4, 2009 -- <a href="http://blogkindle.com/2009/09/kindle-2-hacked-to-run-ubuntu/" title="Kindle 2 Hacked to Run Ubuntu">Kindle 2 Hacked to Run Ubuntu (1)</a></li><li>April 7, 2009 -- <a href="http://blogkindle.com/2009/04/epub-and-pdf-support/" title="ePub and PDF support">ePub and PDF support (8)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/03/reflashing-kindle-2-with-custom-firmware-may-soon-be-a-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle 2 Disassembled</title>
		<link>http://blogkindle.com/2009/03/kindle-2-disassembled/</link>
		<comments>http://blogkindle.com/2009/03/kindle-2-disassembled/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 15:15:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[E-Book Readers]]></category>
		<category><![CDATA[Kindle 2]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Reader]]></category>
		<category><![CDATA[Battery]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[Dissection]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[K4X1G323PC]]></category>
		<category><![CDATA[MC13783VK5]]></category>
		<category><![CDATA[MCIMX31LVKN5C]]></category>
		<category><![CDATA[ram]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=880</guid>
		<description><![CDATA[Folks from iFixIt.com have disassembled Kindle 2 and here is brief scoop of what they&#8217;ve found: Battery used is 3.7V 1530mAh Li-Pol battery model number S11S01A. It weights 1.1 oz which is 10% of total weight of the device. It has slightly less capacity than iPhone 3G battery which is 1400mAh. Freescale MC13783VK5 is used [...]]]></description>
			<content:encoded><![CDATA[

<p>Folks from <a href="http://www.ifixit.com/Guide/First-Look/Kindle-2/624/1" target="_blank">iFixIt.com</a> have disassembled <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00154JDAI" rel="nofollow">Kindle 2</a> and here is brief scoop of what they&rsquo;ve found:</p>
<ul>
<li>Battery used is 3.7V 1530mAh Li-Pol battery model number S11S01A. It weights 1.1 oz which is 10% of total weight of the device. It has slightly less capacity than iPhone 3G battery which is 1400mAh. Freescale MC13783VK5 is used as a battery power management chip.</li>
<li>There is no protective cover on the display. So if you scratch it or break it repairs would be quite expensive.</li>
<li>Main processor used is MCIMX31LVKN5C M91E CTAH0850V. It is ARM-11 CPU that runs at 533 Mhz and is manufactured by 90nm process. This is an upgrade from Kindle 1 which used 400 Mhz Marvell PXA255 CPU marked with LUPXA255A0 G7171929.2 0744 KR C400.</li>
<li> RAM is represented by 128MB DDR Samsung K4X1G323PC chip. This is an upgrade compared to 64MB RAM found in Kindle 1.</li>
<li>Flash memory is 2GB moviNAND. Major upgrade from 256MB built in Kindle 1, but as we know it comes at a cost of not having external SD slot.</li>
<li>There is unused space on the PCB for SIM card. This hints to possibility of international versions of Kindle.</li>
</ul>
<p>We&rsquo;ll probably get much more comprehensive coverage on Kindle 2 once <a href="http://igorsk.blogspot.com/" target="_blank">Igor from Reversing Everything</a> gets his hands on one.</p>

<h3>Related Posts</h3><ul class="related_post"><li>June 15, 2009 -- <a href="http://blogkindle.com/2009/06/kindle-dx-disassembled/" title="Kindle DX Disassembled">Kindle DX Disassembled (0)</a></li><li>August 28, 2010 -- <a href="http://blogkindle.com/2010/08/new-kindle-3-review-hands-on/" title="New Kindle 3 Review (hands-on)">New Kindle 3 Review (hands-on) (44)</a></li><li>October 30, 2009 -- <a href="http://blogkindle.com/2009/10/unicode-font-hack-v0-2-now-for-kindle-international-too/" title="Unicode Font Hack v0.2, now for Kindle International too!">Unicode Font Hack v0.2, now for Kindle International too! (41)</a></li><li>October 30, 2009 -- <a href="http://blogkindle.com/2009/10/kindle-anti-brick-hack/" title="Kindle anti-brick hack">Kindle anti-brick hack (5)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/03/kindle-2-disassembled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gmail on Kindle</title>
		<link>http://blogkindle.com/2009/02/gmail-on-kindle/</link>
		<comments>http://blogkindle.com/2009/02/gmail-on-kindle/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 15:00:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle 2]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Reader]]></category>
		<category><![CDATA[Kindle Tips & Tricks]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Email on Kindle]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[gmail on kindle]]></category>
		<category><![CDATA[kindle basic web]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=856</guid>
		<description><![CDATA[It is perfectly possible to access your Gmail account using Amazon Kindle browser. All you need to do is visit the mobile version at http://m.gmail.com rather than full version. Loading full version will cause some kind of error after you enter your login and password. I don&#8217;t think it would render well anyway. So here [...]]]></description>
			<content:encoded><![CDATA[

<p>It is perfectly possible to access your Gmail account using <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00154JDAI" rel="nofollow">Amazon Kindle</a> browser. All you need to do is visit the mobile version at <a href="http://m.gmail.com" target="_blank">http://m.gmail.com</a> rather than full version. Loading full version will cause some kind of error after you enter your login and password. I don&rsquo;t think it would render well anyway.</p>
<p>So here you go: you can now send and receive emails using your Amazon Kindle anywhere there is WhisperNet (read Sprint) coverage absolutely free of charge courtesy of Amazon :)</p>

<h3>Related Posts</h3><ul class="related_post"><li>November 25, 2009 -- <a href="http://blogkindle.com/2009/11/instapaper-kindle-problems-find-a-free-solution/" title="Instapaper + Kindle Problems Find A (Free) Solution">Instapaper + Kindle Problems Find A (Free) Solution (5)</a></li><li>October 12, 2009 -- <a href="http://blogkindle.com/2009/10/browser-and-blogs-update-for-mexico-hong-kong-and-japan/" title="Browser And Blogs Update for Mexico, Hong Kong and Japan">Browser And Blogs Update for Mexico, Hong Kong and Japan (4)</a></li><li>March 12, 2009 -- <a href="http://blogkindle.com/2009/03/kindle-2-features-i-would-love-to-see/" title="Kindle 2 Features I would love to see">Kindle 2 Features I would love to see (15)</a></li><li>March 2, 2009 -- <a href="http://blogkindle.com/2009/03/23k-free-kindle-books-at-munseyscom/" title="23K+ Free Kindle Books at munseys.com">23K+ Free Kindle Books at munseys.com (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/02/gmail-on-kindle/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Kindle 2 Easter Eggs</title>
		<link>http://blogkindle.com/2009/02/kindle-2-easter-eggs/</link>
		<comments>http://blogkindle.com/2009/02/kindle-2-easter-eggs/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 07:05:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle 2]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Reader]]></category>
		<category><![CDATA[Kindle Tips & Tricks]]></category>
		<category><![CDATA[Kindle 2 Easter Eggs]]></category>
		<category><![CDATA[Kindle Easter Eggs]]></category>
		<category><![CDATA[kindle hidden settings]]></category>
		<category><![CDATA[kindle ii]]></category>
		<category><![CDATA[Kindle Minesweeper]]></category>
		<category><![CDATA[Kindle Picture Viewer]]></category>
		<category><![CDATA[kindle screenshots]]></category>
		<category><![CDATA[kindle search commands]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=844</guid>
		<description><![CDATA[I can&#8217;t believe that I never did a post about Kindle easter eggs. Here is the most complete one. I&#8217;ve checked them all one by one and here are the ones that still work in Kindle 2: Minesweeper can be started by pressing Alt-Shift-M in the home screen. Picture viewer is hidden within Kindle 2. [...]]]></description>
			<content:encoded><![CDATA[

<p>I can&rsquo;t believe that I never did a post about Kindle easter eggs. Here is the <a href="http://ireaderreview.com/2008/01/15/kindle-bonus-undocumented-shortcuts-features-and-easter-eggs/" target="_blank">most complete one</a>. I&rsquo;ve checked them all one by one and here are the ones that still work in <a href="http://www.amazon.com/gp/product/B00154JDAI?ie=UTF8&amp;tag=blogkindle0e-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B00154JDAI" rel="nofollow">Kindle 2</a>:</p>
<ul>
<li>
<strong>Minesweeper</strong> can be started by pressing Alt-Shift-M in the home screen.</li>
<li>
<strong>Picture viewer </strong>is hidden within Kindle 2. To activate it connect Kindle via USB cable to your PC and create &ldquo;pictures&rdquo; folder in Kindle USB disk. Create subfolders there and copy pictures. Subfolders will become &ldquo;book&rdquo; names and pictures will be pages. JPG, PNG and GIF files are known to be supported. Once you&rsquo;ve copied the files, disconnect the USB cable and press Alt-Z in the home screen &ndash; you should see your picture folders among books now.</li>
<li>You can take <strong>screenshots</strong> of almost any screen in Kindle by pressing ALt-Shift-G. Screenshots are stored as GIF files in the /documents folder</li>
<li>
<strong>Symbol shortcuts</strong>. When entering text folling shortcuts work:
<ul>
<li>Alt-6 &ndash; ? (question mark)</li>
<li>Alt-7 &ndash; , (comma)</li>
<li>Alt-8 &ndash; : (colon)</li>
<li>Alt-9 &ndash; &rdquo; (double quotes)</li>
<li>Alt-0 &ndash; &lsquo; (apostrophe)</li>
</ul>
</li>
<li>
<strong>Search commands</strong>. Typing @help in the search string will display other supported search commands like @dict, @url etc.</li>
<li>
<strong>Hidden settings</strong>.<strong> </strong>While in settings type one of the following:
<ul>
<li>411 &ndash; shows diagnostic data</li>
<li>611 &ndash; shows current radio diagnostics data and keeps refreshing it</li>
</ul>
</li>
</ul>
<p>Sadly, all location based Google maps services in the browser seem to be disabled.</p>
<p><img class="attachment wp-att-845 aligncenter" src="http://www.blogkindle.com/wp-content/uploads/2009/02/kindle-minesweeper.gif" alt="kindle-minesweeper" width="500" height="667" align="left"></p>

<h3>Related Posts</h3><ul class="related_post"><li>October 4, 2009 -- <a href="http://blogkindle.com/2009/10/copy-paste-for-search-and-notes/" title="Copy-paste for search and notes">Copy-paste for search and notes (5)</a></li><li>June 11, 2009 -- <a href="http://blogkindle.com/2009/06/first-kindle-dx-review/" title="&#8230;First Kindle DX review">&#8230;First Kindle DX review (8)</a></li><li>February 25, 2009 -- <a href="http://blogkindle.com/2009/02/received-my-kindle-2/" title="Received my Kindle 2">Received my Kindle 2 (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2009/02/kindle-2-easter-eggs/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Hacking the kindle.</title>
		<link>http://blogkindle.com/2008/09/hacking-the-kindle/</link>
		<comments>http://blogkindle.com/2008/09/hacking-the-kindle/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 04:13:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Reader]]></category>
		<category><![CDATA[easter eggs]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[hidden features]]></category>
		<category><![CDATA[Kindle]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=764</guid>
		<description><![CDATA[Recently I stumbled upon a blog which describes how to hack Kindle in great details. Even though I&#8217;m not a big hacker myself it is quite interesting to see what is going on in my Kindle internals and what steps I would need to take in order to modify it. Based on his post in [...]]]></description>
			<content:encoded><![CDATA[

<p>Recently I stumbled upon a blog which describes how to hack Kindle in great details. Even though I&rsquo;m not a big hacker myself it is quite interesting to see what is going on in my Kindle internals and what steps I would need to take in order to modify it.</p>
<p>Based on his post in order to see Kindle boot sequence you will have to do some additional electrical wiring. That&rsquo;s how <a href="http://bp3.blogger.com/_KFKbB1o0M_8/R2nQSu4SMXI/AAAAAAAAAAo/5z32UsdHc4s/s1600-h/Img0005.jpg">crude final connected version looks like.</a></p>
<p>If you want to hack you Kindle you&rsquo;ll need several things:</p>
<p>- Some electrical engineering education&hellip; Or be a hacker in your soul.</p>
<p>- a TTL-RS232 or TTL-USB converter.</p>
<p>- a 20-pin 0.5mm pitch flat flex cable with a connector.</p>
<p>- Strong desire to do it.</p>
<p>Or you can keep it simple and send your Kindle to Igor and ask him to hack it :)</p>
<p>Read his entire post on <a title="connecting kindle to a hacking device" href="http://igorsk.blogspot.com/2007/12/hacking-kindle-part-1-getting-console.html">connecting Kindle to a hacking device</a>.</p>
<p>In the next post I&rsquo;ll try to cover more aspects on kindle hack process I read about in Igor&rsquo;s blog. It will include some hidden features and easter eggs you have in your Kindle.</p>
<p>If you have tried hacking Kindle and successfully done so please send details to me. I would love to post about them.</p>

<h3>Related Posts</h3><ul class="related_post"><li>July 9, 2010 -- <a href="http://blogkindle.com/2010/07/kindle-reading-speed-study-badly-misunderstood/" title="Kindle Reading Speed Study: Badly Misunderstood">Kindle Reading Speed Study: Badly Misunderstood (11)</a></li><li>June 29, 2010 -- <a href="http://blogkindle.com/2010/06/kindle-in-the-airports/" title="Kindle in the Airports">Kindle in the Airports (1)</a></li><li>June 24, 2010 -- <a href="http://blogkindle.com/2010/06/kindle-vs-nook-what-do-you-get/" title="Kindle vs nook: What Do You Get?">Kindle vs nook: What Do You Get? (12)</a></li><li>June 16, 2010 -- <a href="http://blogkindle.com/2010/06/kids-books-going-digital/" title="Kids Books Going Digital">Kids Books Going Digital (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2008/09/hacking-the-kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SDK, does the Kindle need one?</title>
		<link>http://blogkindle.com/2008/08/kindle-sdk-does-the-kindle-need-one/</link>
		<comments>http://blogkindle.com/2008/08/kindle-sdk-does-the-kindle-need-one/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 09:10:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Applications]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Thoughts]]></category>
		<category><![CDATA[Kindle SDK]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[SDK]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=488</guid>
		<description><![CDATA[These days if company&#8217;s want a device to be a success it has to support as many different standards as possible, be as useful to the user as possible, be as cheap as possible and be as open as possible. There are always exception to the rule, take iPhone for example, but on the whole [...]]]></description>
			<content:encoded><![CDATA[

<p><img class="attachment wp-att-673" src="http://www.blogkindle.com/wp-content/uploads/2008/08/kindle-time.jpg" alt="Kindle Time Magazine" width="260" height="320" align="right">These days if company&rsquo;s want a device to be a success it has to support as many different standards as possible, be as useful to the user as possible, be as cheap as possible and be as open as possible. There are always exception to the rule, take iPhone for example, but on the whole its an accurate statement.</p>
<p>One way of opening a device up is by offering a software development kit (SDK), I was reading <a href="http://k.indled.com/The-Amazon-Kindle/if-kindle-had-an-sdk-what-would-you-do-with-it/">k.indled</a> today and the question came, If Kindle had an SDK, What would you do with it?</p>
<p>One thing I would do is add support for the .epub format, I&rsquo;m not sure if it would be possible because I am no programmer, but I feel that Kindle must support .epub one day, its the industry standard and I think this will get a lot more publishers on board, especially the ones who have a lot of technical content which isn&rsquo;t easy to render on the Kindle.</p>
<p>I think Amazon will have to eventually open up the Kindle and they should do it sooner rather than later, having an &lsquo;app store&rsquo; similar to the iPhone app store I think would go a long way in helping the Kindle attain mainstream acceptance, and it could open up a while host of other uses for the Kindle.</p>
<p>What would you create with a Kindle SDK?</p>
<p>Source: <a href="http://k.indled.com/The-Amazon-Kindle/if-kindle-had-an-sdk-what-would-you-do-with-it/">k.indled</a></p>

<h3>Related Posts</h3><ul class="related_post"><li>September 28, 2009 -- <a href="http://blogkindle.com/2009/09/opening-the-kindle-to-third-party-developers/" title="Opening the Kindle to Third Party Developers">Opening the Kindle to Third Party Developers (1)</a></li><li>January 21, 2010 -- <a href="http://blogkindle.com/2010/01/kindle-sdk-kdk-to-be-available-next-month/" title="Kindle SDK (KDK) to be available next month">Kindle SDK (KDK) to be available next month (10)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2008/08/kindle-sdk-does-the-kindle-need-one/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Touch screen Kindle could be on its way</title>
		<link>http://blogkindle.com/2008/05/touch-screen-kindle-could-be-on-its-way/</link>
		<comments>http://blogkindle.com/2008/05/touch-screen-kindle-could-be-on-its-way/#comments</comments>
		<pubDate>Fri, 23 May 2008 22:59:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle 2]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle News]]></category>
		<category><![CDATA[Kindle Reader]]></category>
		<category><![CDATA[eInk Technology]]></category>
		<category><![CDATA[eInk]]></category>
		<category><![CDATA[F-Origin]]></category>
		<category><![CDATA[Prime View International]]></category>
		<category><![CDATA[PVI]]></category>
		<category><![CDATA[zTouch]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=236</guid>
		<description><![CDATA[Have you ever wished that you could use a stylus to write notes on a page or use your fingers to turn the virtual page on your Kindle? well your wish might be about to come true, the company which supplies Amazon with its Kindle EInk displays, PVI (Prime View International), has partnered with a [...]]]></description>
			<content:encoded><![CDATA[

<p><img class="alignright" style="float: right;" src="http://www.pvi.com.tw/en/images/head_06.jpg" alt="PVI touch screen Kindle" width="294" height="46">Have you ever wished that you could use a stylus to write notes on a page or use your fingers to turn the virtual page on your Kindle? well your wish might be about to come true, the company which supplies Amazon with its Kindle EInk displays, PVI (Prime View International),  has partnered with a company called <a href="http://www.f-origin.com/">F-Origin</a> (of which it owns a 20 percent stake) to incorporate <a href="http://biz.yahoo.com/prnews/080520/aqtu117.html?.v=41">zTouch</a>, a proprietary touch screen technology, into EInk display panels.</p>
<p>From the F-Origin press release:</p>
<blockquote><p>The functionality and flexibility in design provided by zTouch is the perfect solution for ebooks and other products that utilize PVI&rsquo;s ePaper displays. zTouch enables users to control book navigation and numerous management functions, such as turning pages, making selections or simply making edits or comments via touch and through gestures and hand writing recognition. The ease of use and high-functionality of zTouch are an ideal match for eBooks by PVI.</p></blockquote>
<p>From the separate PVI press release:</p>
<blockquote><p>When a user touches the display, proprietary software calculates the location and intensity of the touch with input from the sensors. There is no additional layer of materials on top of the display as there is in traditional touch technologies; as such, there is no impact to the reflective qualities of the display. This technology requires no ITO (the most fragile component in traditional touch panels), hence exhibits superior robustness. Unlike capacitive touch panels which requires the touch medium be conductive (such as a finger), this force sensing technology works with either stylus or fingers</p></blockquote>
<p>You can read the full accompanying <a href="http://www.pvi.com.tw/en/news/news_view.php?lists=8">press release</a> from PVI&rsquo;s perspective on their website and you can read up on the <a href="http://www.blogkindle.com/wp-content/uploads/2008/05/1198865217_zt30_productpage_12.pdf">zTouch 3.0 Technology</a> [PDF warning] with this product information guide provided by F-Origin.</p>
<p>What does this mean? will the next Kindle offer a touch screen interface as standard? The Kindle isn&rsquo;t mentioned by name by either PVI or F-Origin in the press releases, but its hard to see this technology not making it onto any future incarnation of the Kindle. These certainly are interesting developments and would strongly suggest that Amazon is working on a Kindle v2.</p>
<p>Source: <a href="http://www.teleread.org/blog/2008/05/21/touch-screens-ahead-for-kindle-sony-reader-other-machines-using-f-origins-technology/">Teleread</a></p>

<h3>Related Posts</h3><ul class="related_post"><li>June 2, 2009 -- <a href="http://blogkindle.com/2009/06/eink-corporation-acquired-by-pvi-for-215-million/" title="eInk Corporation Acquired by PVI for $215 million">eInk Corporation Acquired by PVI for $215 million (0)</a></li><li>August 19, 2008 -- <a href="http://blogkindle.com/2008/08/pvi-expects-10x-growth-in-epd-market-over-next-three-years/" title="PVI expects 10x growth in EPD market over next three years">PVI expects 10x growth in EPD market over next three years (0)</a></li><li>August 30, 2010 -- <a href="http://blogkindle.com/2010/08/kindle-3-positive-reviews-summary/" title="Kindle 3 Positive Reviews Summary">Kindle 3 Positive Reviews Summary (0)</a></li><li>April 28, 2010 -- <a href="http://blogkindle.com/2010/04/changing-the-feel-of-kindle/" title="Changing the Feel of Kindle">Changing the Feel of Kindle (1)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2008/05/touch-screen-kindle-could-be-on-its-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kindle Photo of the Day #20: Frank&#8217;s Kindle</title>
		<link>http://blogkindle.com/2008/05/kindle-photo-of-the-day-20-franks-kindle/</link>
		<comments>http://blogkindle.com/2008/05/kindle-photo-of-the-day-20-franks-kindle/#comments</comments>
		<pubDate>Wed, 21 May 2008 15:49:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle POTD]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=204</guid>
		<description><![CDATA[Frank sent me an email about his experiences with the Kindle and how had modified it to create a better reading experience. Here is what Frank thinks about his Kindle: The Kindle met 95% of my expectations for a perfect reading device. I spend 3 &#8211; 5 days each week either on a plane or [...]]]></description>
			<content:encoded><![CDATA[

<p><a title="Frank\'s Kindle" href="http://www.blogkindle.com/wp-content/uploads/2008/05/franks-kindle.jpg"><img class="attachment wp-att-205" src="http://www.blogkindle.com/wp-content/uploads/2008/05/franks-kindle.jpg" alt="Frank\'s Kindle" width="500" height="375" align="none"></a></p>
<p>Frank sent me an email about his experiences with the Kindle and how had modified it to create a better reading experience. Here is what Frank thinks about his Kindle:</p>
<blockquote>
<p>The Kindle met 95% of my expectations for a perfect reading device.  I spend 3 &ndash; 5 days each week either on a plane or waiting on a flight.  The Kindle has reduced my carry on weight by at least 5lbs of reading material.  I am very satisfied with the display and easy access to obtaining reading material but the holder and all aftermarket cases left a lot to be desired.  Not only were they uncomfortable to hold but made it impossible avoid that giant next page key and the device easily falls out, especially when reading in bed.</p>
<p>Not satisfied with 95%, I made my own personal cover with a metal clip and a flexible binding that allows the cover to be folded back flat allowing the Kindle to be held on either side.</p>
</blockquote>
<p>Thanks for the email <a href="http://strangedog.com/">Frank</a>!</p>
<p>If you have an image that you would like to submit for <em>Kindle Photo of the Day,</em> then please get in touch! you can send the image via email to <img class="imageframe" src="http://www.blogkindle.com/wp-content/uploads/2007/12/email-addy.jpg" alt="email address" width="145" height="12">- please make sure you include your name and a link to your site.</p>

<h3>Related Posts</h3><ul class="related_post"><li>March 4, 2008 -- <a href="http://blogkindle.com/2008/03/hand-made-kindle-case-mod-made-to-look-like-a-book/" title="Hand Made Kindle Case Mod Made to Look Like a Book">Hand Made Kindle Case Mod Made to Look Like a Book (4)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2008/05/kindle-photo-of-the-day-20-franks-kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eat Your Kindle</title>
		<link>http://blogkindle.com/2008/05/eat-your-kindle/</link>
		<comments>http://blogkindle.com/2008/05/eat-your-kindle/#comments</comments>
		<pubDate>Sat, 17 May 2008 00:44:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Community]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Cake]]></category>
		<category><![CDATA[Kindle]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/?p=198</guid>
		<description><![CDATA[As it turns out, not only can you read books on your Kindle, you can now eat it! LilPeaPod from Team Sugar spent her Sunday afternoon cooking up this geeky cake delight and what a result. At first glance it actually looks like a Kindle device, we think it&#8217;s a shame it has to be [...]]]></description>
			<content:encoded><![CDATA[

<p><img class="attachment wp-att-201" src="http://www.blogkindle.com/wp-content/uploads/2008/05/kindle-cake.jpg" alt="Amazon Kindle Cake" width="350" height="415" align="middle"></p>
<p>As it turns out, not only can you read books on your Kindle, you can now eat it!</p>
<p>LilPeaPod from Team Sugar spent her Sunday afternoon cooking up this geeky cake delight and what a result. At first glance it actually looks like a Kindle device, we think it&rsquo;s a shame it has to be eaten!</p>
<p>Looks delicious! We love the &ldquo;Kindle Kake&rdquo;! Check out the cake <a href="http://teamsugar.com/gallery/view/1121775?page=0,0,0">gallery</a>.</p>
<p>Source: <a href="http://teamsugar.com/user/LilPeaPod/blog/1121853">TeamSugar</a></p>

<h3>Related Posts</h3><ul class="related_post"><li>July 9, 2010 -- <a href="http://blogkindle.com/2010/07/kindle-reading-speed-study-badly-misunderstood/" title="Kindle Reading Speed Study: Badly Misunderstood">Kindle Reading Speed Study: Badly Misunderstood (11)</a></li><li>June 29, 2010 -- <a href="http://blogkindle.com/2010/06/kindle-in-the-airports/" title="Kindle in the Airports">Kindle in the Airports (1)</a></li><li>June 24, 2010 -- <a href="http://blogkindle.com/2010/06/kindle-vs-nook-what-do-you-get/" title="Kindle vs nook: What Do You Get?">Kindle vs nook: What Do You Get? (12)</a></li><li>June 16, 2010 -- <a href="http://blogkindle.com/2010/06/kids-books-going-digital/" title="Kids Books Going Digital">Kids Books Going Digital (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2008/05/eat-your-kindle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hand Made Kindle Case Mod Made to Look Like a Book</title>
		<link>http://blogkindle.com/2008/03/hand-made-kindle-case-mod-made-to-look-like-a-book/</link>
		<comments>http://blogkindle.com/2008/03/hand-made-kindle-case-mod-made-to-look-like-a-book/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 04:15:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kindle Community]]></category>
		<category><![CDATA[Kindle Mod]]></category>
		<category><![CDATA[Kindle Reader]]></category>
		<category><![CDATA[Kindle Tips & Tricks]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[Case]]></category>

		<guid isPermaLink="false">http://www.blogkindle.com/archives/2008/03/hand-made-kindle-case-mod-made-to-look-like-a-book/</guid>
		<description><![CDATA[Believe it or not the above picture is not that of a fine old book, but rather a modified case cover for the Kindle! This beautiful piece was made by a user on the mobileread Kindle forum, it features a hand made leather book case, marbleized paper for the end papers, gold leaf to give [...]]]></description>
			<content:encoded><![CDATA[

<p><img src="http://www.blogkindle.com/wp-content/uploads/2008/03/hand-made-kindle-case-designed-to-look-like-a-book-1.JPG" alt="Hand made Kindle case designed to look like a book" class="imageframe" height="334" width="500"></p>
<p>Believe it or not the above picture is not that of a fine old book, but rather a modified case cover for the Kindle! This beautiful piece was made by a user on the mobileread Kindle forum, it features a hand made leather book case, marbleized paper for the end papers, gold leaf to give the impression of gilded pages and a felt-lined holder which keeps the Kindle securely in place. You still don&rsquo;t believe me do you? in that case I suggest you scroll down the page and have a look at other the images.</p>
<p>Whilst it does look pretty, a few readers on the forums have pointed out that there seem to be some usability issues. For instance on this particular case-mod the cover does not fold back upon itself which may cause readers to use both hands whilst reading content, however the creator of the case mod assured them that it is not a big issue. I guess the only way of telling if it affects usability is by actually using it.</p>
<p>This case-mod simply blows the standard case you get with the Kindle out of the water, or for that matter any other case out there. I think a commercial venture which would offer this to Kindle owners would be an excellent idea, apparently this case-mod it has already fooled some people into thinking that it is a real book!</p>
<p>Now here are some more picture for you to drool over:</p>
<p><img src="http://www.blogkindle.com/wp-content/uploads/2008/03/hand-made-kindle-case-designed-to-look-like-a-book-2.JPG" alt="Hand made Kindle case designed to look like a book" class="imageframe" height="334" width="500"></p>
<p><img src="http://www.blogkindle.com/wp-content/uploads/2008/03/hand-made-kindle-case-designed-to-look-like-a-book-3.JPG" alt="Hand made Kindle case designed to look like a book" class="imageframe" height="334" width="500"></p>
<p><img src="http://www.blogkindle.com/wp-content/uploads/2008/03/hand-made-kindle-case-designed-to-look-like-a-book-4.JPG" alt="Hand made Kindle case designed to look like a book" class="imageframe" height="334" width="500"></p>
<p>Source: <a href="http://www.mobileread.com/forums/showthread.php?t=17437">user artsci on mobileread Kindle forums </a></p>

<h3>Related Posts</h3><ul class="related_post"><li>September 9, 2009 -- <a href="http://blogkindle.com/2009/09/make-your-own-kindle-case-that-doubles-as-a-stand/" title="Make Your Own Kindle Case That Doubles as a Stand">Make Your Own Kindle Case That Doubles as a Stand (0)</a></li><li>July 17, 2009 -- <a href="http://blogkindle.com/2009/07/amazon-to-replace-broken-kindles-after-lawsuit/" title="Amazon to Replace Broken Kindles After Lawsuit">Amazon to Replace Broken Kindles After Lawsuit (14)</a></li><li>May 21, 2008 -- <a href="http://blogkindle.com/2008/05/kindle-photo-of-the-day-20-franks-kindle/" title="Kindle Photo of the Day #20: Frank&#8217;s Kindle">Kindle Photo of the Day #20: Frank&#8217;s Kindle (0)</a></li><li>December 16, 2007 -- <a href="http://blogkindle.com/2007/12/kindle-being-lent-out-by-librarys/" title="Kindle Being Lent Out By Librarys">Kindle Being Lent Out By Librarys (1)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blogkindle.com/2008/03/hand-made-kindle-case-mod-made-to-look-like-a-book/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  blogkindle.com/category/kindle-mod/feed/ ) in 1.15082 seconds, on Sep 6th, 2010 at 6:12 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Sep 6th, 2010 at 7:12 am UTC -->