<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Ak Kernel on paapereira.xyz</title><link>https://paapereira.xyz/tags/ak-kernel/</link><description>Recent content in Ak Kernel on paapereira.xyz</description><generator>Hugo</generator><language>en-US</language><copyright>&lt;a href='https://creativecommons.org/licenses/by-nc/4.0/' target='_blank' rel='noopener'>©&lt;/a> 2008-2026 / &lt;a href='https://gitlab.com/paapereira/paapereira.gitlab.io' target='_blank' rel='noopener'>source code&lt;/a></copyright><lastBuildDate>Sat, 16 Mar 2013 21:31:00 +0000</lastBuildDate><atom:link href="https://paapereira.xyz/tags/ak-kernel/index.xml" rel="self" type="application/rss+xml"/><item><title>Install atom422 in Galaxy Nexus</title><link>https://paapereira.xyz/posts/2013/03/install-atom422-in-galaxy-nexus/</link><pubDate>Sat, 16 Mar 2013 21:31:00 +0000</pubDate><guid>https://paapereira.xyz/posts/2013/03/install-atom422-in-galaxy-nexus/</guid><description>&lt;p>I&amp;rsquo;ve been using &lt;a href="http://forum.xda-developers.com/showthread.php?t=1969162">atom422&lt;/a> ROM with &lt;a href="https://paapereira.xyz/tags/ak-kernel">Ak Kernel&lt;/a> for a week now, and I must say this is the best ROM/kernel combo I had in my Galaxy Nexus. And it&amp;rsquo;s underclocked!&lt;/p>
&lt;p>I will be using atom422 v9 and Ak Kernel 731.&lt;/p>
&lt;h2 id="backing-up-your-device">Backing up your device&lt;/h2>
&lt;ul>
&lt;li>Backup using &lt;a href="https://play.google.com/store/apps/details?id=com.keramidas.TitaniumBackup">Titanium Backup&lt;/a>&lt;/li>
&lt;li>Backup &lt;a href="https://play.google.com/store/apps/details?id=com.teslacoilsw.launcher">Nova Launcher&lt;/a> settings&lt;/li>
&lt;li>Backup SMS using &lt;a href="https://play.google.com/store/apps/details?id=com.riteshsahu.SMSBackupRestore">SMS Backup &amp;amp; Restore&lt;/a>&lt;/li>
&lt;li>Reboot into recovery (I have ClockworkMod Recovery v6.0.2.3)&lt;/li>
&lt;li>Backup (backup and restore &amp;gt; backup)&lt;/li>
&lt;li>Go into &amp;ldquo;install zip from sdcard &amp;gt; choose zip from sdcard&amp;rdquo; just to guarantee that ClockworkMod Recovery is accessing the storage&lt;/li>
&lt;li>Plug the phone into a computer (I&amp;rsquo;m using Ubuntu 12.10, and have already android-sdk)&lt;/li>
&lt;li>Go into your android-sdk tools folder
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1&lt;/span>&lt;span>cd Android/android-sdk-linux_86/tools/
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;li>Go into adb shell and list the directories in your &amp;ldquo;sdcard&amp;rdquo; to decide what to backup
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1&lt;/span>&lt;span>sudo ./adb shell
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">2&lt;/span>&lt;span>ls /data/media/0
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">3&lt;/span>&lt;span>exit
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;li>Pull all the directories you want to backup
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1&lt;/span>&lt;span>sudo ./adb pull /data/media/0/examplefolder sdcard/examplefolder
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;li>The previous example will create a sdcard folder in your tools folder with the data folder pulled from your phone&lt;/li>
&lt;li>Change the owner of the pulled folders
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span style="white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1&lt;/span>&lt;span>sudo chown -R youruser:youruser sdcard
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;/ul>
&lt;p>You can also backup using FTP for example. I normally use &lt;a href="https://play.google.com/store/apps/details?id=com.gsapp.wifitransport">WellFTP Server&lt;/a>.&lt;/p></description></item><item><title>Install Ak Kernel in Galaxy Nexus</title><link>https://paapereira.xyz/posts/2013/03/install-ak-kernel-in-galaxy-nexus/</link><pubDate>Sun, 10 Mar 2013 22:06:00 +0000</pubDate><guid>https://paapereira.xyz/posts/2013/03/install-ak-kernel-in-galaxy-nexus/</guid><description>&lt;p>I started using Ak Kernel after installing Xylon, as I talked about in my previous &lt;a href="https://paapereira.xyz/posts/install-xylon-in-galaxy-nexus/">post&lt;/a>.&lt;/p>
&lt;p>&lt;img src="https://paapereira.xyz/blog/2013/2013-03-10-install-ak-kernel-in-galaxy-nexus/ak.png" alt="Ak Kernel">&lt;/p>
&lt;p>I will show how to install &lt;a href="http://forum.xda-developers.com/showthread.php?t=1883298">Ak Kernel&lt;/a> coming from another kernel an how to simply update Ak Kernel when a new version is released.&lt;/p>
&lt;p>You can also read the kernel FAQ &lt;a href="http://forum.xda-developers.com/showthread.php?t=2157193">here&lt;/a>.&lt;/p>
&lt;h2 id="ak-kernel">Ak Kernel&lt;/h2>
&lt;p>&lt;a href="http://forum.xda-developers.com/showthread.php?t=1883298">Ak Kernel&lt;/a> comes in two flavors:&lt;/p>
&lt;ul>
&lt;li>Purity edition, the stable version&lt;/li>
&lt;li>Cylon edition, a experimental branch&lt;/li>
&lt;/ul>
&lt;h2 id="install-ak-kernel-coming-from-another-kernel">Install Ak Kernel coming from another kernel&lt;/h2>
&lt;p>If you are installing Ak Kernel for the first time in your ROM, follow this steps:&lt;/p></description></item><item><title>Install Xylon in Galaxy Nexus</title><link>https://paapereira.xyz/posts/2013/03/install-xylon-in-galaxy-nexus/</link><pubDate>Sat, 09 Mar 2013 22:43:00 +0000</pubDate><guid>https://paapereira.xyz/posts/2013/03/install-xylon-in-galaxy-nexus/</guid><description>&lt;p>I was having problems in &lt;a href="https://paapereira.xyz/posts/low-ram-problems-after-aokp-build-3-update/">AOKP&lt;/a>, so I decided to try a different ROM and a different kernel.&lt;/p>
&lt;p>I&amp;rsquo;ve decided to go with &lt;a href="http://forum.xda-developers.com/showthread.php?t=1996726">Xylon&lt;/a> and &lt;a href="http://forum.xda-developers.com/showthread.php?t=1883298">Ak Kernel&lt;/a>.&lt;/p>
&lt;h2 id="what-is-xylon">What is Xylon?&lt;/h2>
&lt;p>&lt;em>&amp;ldquo;A Generally based of many kinds of features around the Android Development and fits into minimal customization. It may act up like AOKP, but totally not at all. Overall, we&amp;rsquo;re still in work in progress state of changing the base to slightly minimal like FNV before. This ROM is built off with GCC 4.7, O3, Linaro Strings enabled. (Galaxy Nexus Kernel, fusion with anarkia&amp;rsquo;s horn, O3 and Linaro GCC 4.7.3 enabled.).&amp;rdquo;&lt;/em>
&lt;em>from xda-developers&lt;/em>&lt;/p></description></item></channel></rss>