Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
jassired
Old
(Last edited by jassired; 6th May 2011 at 05:10 PM.)
#1  
Senior Member - OP
Thanks Meter 68
Posts: 182
Join Date: May 2010
Default Official custom kernel building guide released

Sony Ericsson blog has posted post on how to build custom kernel....they also mentioned that they would be monitoring xda forum

Since the launch of the unlock boot loader site, we have received a lot of really great feedback. The Sony Ericsson Developer Program wants to continue to build on this open dialogue with external developers.

Developers and advanced users can now unlock the boot loader, which is the first step to be able to flash your own image. Now we have seen quite a few comments in different forums like the XDA forum, where developers run into problems when building their own image, and and trying to flash the image using Fastboot.*With the help of our Master Software Architect, James Jacobsson, we put together a short article on how to do this.

Before moving on, we’d like to remind you again*that there is no turning back when unlocking the boot loader. You may void the warranty of the phone, and you will not be able to revert the phone to a locked or original state if you unlock it.

What is the Linux kernel?
The Xperia™ line of smartphones run on the Android™, the mobile operating system based on the Linux kernel. Though it is only a small part of the operating system, the kernel ensures that all other processes in the system are synchronized to work together properly.

Why rebuild the kernel?*
Rebuilding the kernel enables end users to make modifications to their devices that are normally not intended by the device manufacturer, such as theming the device by changing system icons and removing/modifying system components.*Please note that*Sony Ericsson is not recommending this. *

Considerations before building your own kernel and reflashing your device
As mentioned in the beginning of this article, the first step is to unlock the boot loader. When the boot loader is unlocked, the sensitive data is removed, such as DRM certificates, and the user partition of the file system is wiped out. But all other functionality, such as the camera and other drivers, is left intact. Please note that content, like music files, that require the DRM certificate will not be accessible any more. But most importantly, you may void the warranty of your phone if you decide to unlock it. Aside from the considerations mentioned above, the functionality is there, just waiting for you to take advantage of it. So, if you’re ready, here’s how to get started.

Building the kernel
It takes a few main steps to build the kernel. Below we’ll*show you how to build a Linux kernel and flash it onto the device.

Step*A – Download the necessary software
Download the following software to get started:

The kernel source code can be downloaded from the copyleft archives on Sony Ericsson Developer World.*You*can use the file called*3.0.A.2.181_182.tar.bz2*for our*Android™*Gingerbread devices.*This is the source code for the Linux kernel as used in the Xperia™ PLAY.
The Fastboot client which is part of the Android SDK. This is the standard Android flashing utility. This allows you to flash the image you are about to create onto the device.
The Init RAM disk. The initial RAM disk (also known as the initrd) is the initial filesystem that the kernel will mount and start running processes off. You can configure the Init RAM disk to grant root access. How you create or download your own Init RAM disk is beyond the scope of this article.
The ARM cross-compiler. A cross-compiler is used to build ARM binaries on a different architecture, such as x86. This allows you to compile software (such as the kernel) into a format that the device can run. We recommend getting the CodeSourcery Lite compiler, especially the GNU/Linux variant, as you’ll need that if you want to build binaries for a full-blown Linux system on the device later. However, any EABI ARM compiler capable of compiling the Linux kernel should be enough for this step.
Step*B – Building the kernel
To build the kernel, you first need to*unpack the kernel.*Once you’ve unpacked the kernel, you need to configure it, and then build it. The example below is based on you using the file*called*3.0.A.2.181_182.tar.bz2.

1.*Go into the kernel directory:

cd kernel

2.*Configure the kernel:

ARCH=arm CROSS_COMPILE=/opt/arm-2010q1/bin/arm-none-eabi- make semc_zeus_defconfig

Note: Replace /opt/arm-2010q1 with where you installed your cross-compiler. Also, this example is for Xperia™ PLAY. Replace defconfig with the following values depending on what device you want to configure it for:

Xperia™ PLAY semc_zeus_defconfig
Xperia™ arc semc_anzu_defconfig
Xperia™ neo semc_hallon_defconfig
3.*Build the kernel:

ARCH=arm CROSS_COMPILE=/opt/arm-2010q1/bin/arm-none-eabi- make

Replace /opt/arm-2010q1 with where you installed your cross-compiler. Once done, you should*have a compressed kernel-image in arch/arm/boot/zImage.

Step*C – Getting a RAM disk
The RAM disk is the initial filesystem the kernel will mount before transferring control to userspace. How you create your own root filesystem is beyond the scope of this article, but you can use the following instructions to pack/unpack the file.

Unpacking (you have ramdisk.img, and want to create a directory of files out of it):

gzip -d - < ramdisk.img > cpio -idm

Packing (You have directory of files, and want to create ramdisk.img from it):

find . | cpio --quiet -H newc -o | gzip > ramdisk.img

Step*D – Assembling the boot.img
Now that we have all the parts we need to create a flashable file. The next stop is to package the parts. To do this, you’ll need the program mkbootimg, which is part of the standard Android tree. If you don’t feel like compiling all of Android to get this tool, it is available to download from various trusted sites on the Internet.

Once you have the tool, this is the command to combine your kernel and RAM disk into a flashable file:

mkbootimg --base 0x00200000 --kernel kernel/arch/arm/boot/zImage --ramdisk ramdisk.img -o boot.img

Step*E – Flashing the file
You should flash the file using Fastboot. If you’ve unlocked the boot loader on your device, you already have Fastboot.

1. To flash the boot.img file, use the following the command:

fastboot –i 0x0fce flash boot boot.img

2. Now, it will prompt you to connect your device. To do so, follow these simple steps:

Make sure your device is powered down.
Hold down the Search button (Xperia™ PLAY only) or the Back button (all other Xperia™ devices). The device’s notification light should shine blue to confirm it’s in Fastboot mode.
Connect the USB cable.
Flashing should now start and complete.
3.*As a last step in the process, you need to reboot the device.*You can*either remove the USB cable and battery to power the device down. If you prefer, you can instead*issue the following command (either method will work):

fastboot –i 0x0fce reboot

Important information!
Sony Ericsson does not guarantee any support on this, but we will monitor the Building the Linux kernel for Xperia phones thread on the XDA Developers forum. However, we cannot guarantee an answer for every question asked in this forum.

Additional information for experienced Linux kernel experts
The kernel is pretty standard, all the regular things you’re used to is there, and available to use. Things that are different are the memory config and the kernel commandline. The memory config is hardcoded (i.e., ATAGs aren’t used for this). It’s set in the board-file for your target, such as kernel/arch/arm/mach-msm/board-semc_zeus.c in the function msm7x30_fixup. The kernel commandline is also not fetched from the boot.img file, but compiled into the kernel (CONFIG_CMDLINE). Some arguments are also added from the boot loader.

Additional information if porting non-Linux format files to the device
The boot loader will accept any reasonably formatted boot.img file. For example, at the*Android Kernel Git, you will see the format of the boot.img file. This allows you to create a boot.img file containing two loadable files (kernel+ramdisk), which will get loaded into RAM. Once the boot loader is loaded, it passes*the control to the first instruction of the loaded kernel image. After*control is passed, the kernel can rely on the data contained in the RAM disk already being loaded.
The Following 4 Users Say Thank You to jassired For This Useful Post: [ Click to Expand ]
 
coutts99
Old
#2  
Senior Member
Thanks Meter 263
Posts: 1,039
Join Date: Nov 2010
Location: Sunderland

 
DONATE TO ME
"Please note that content, like music files, that require the DRM certificate will not be accessible any more."

What does this affect exactly? Will it affect playing any of the playstation games for example?
 
svenk919
Old
#3  
svenk919's Avatar
Senior Member
Thanks Meter 61
Posts: 391
Join Date: Oct 2008
Location: Enschede

 
DONATE TO ME
I believe unlocking the bootloader deletes the drm certificates and crash bandicoot still works.
SE Xperia play on stock rom with doomkernel.
 
blickmanic
Old
#4  
blickmanic's Avatar
Senior Member
Thanks Meter 23
Posts: 274
Join Date: Apr 2011

 
DONATE TO ME
Quote:
Originally Posted by coutts99 View Post
"Please note that content, like music files, that require the DRM certificate will not be accessible any more."

What does this affect exactly? Will it affect playing any of the playstation games for example?
apps like 'TrackID' and PlayNow' wont work.
 
tonymontana079
Old
(Last edited by tonymontana079; 9th May 2011 at 10:33 PM.) Reason: correction
#5  
Junior Member
Thanks Meter 3
Posts: 29
Join Date: Dec 2010
Quote:
Originally Posted by blickmanic View Post
apps like 'TrackID' and PlayNow' wont work.
Hmm thats weird playnow app still works on my play only lost trackid it says cannot authenticate with server obviously because of the missing certificates. Is there any way to restore the certificate so I can use trackid or am I stuck with shazam.
 
Ireas
Old
#6  
Ireas's Avatar
Senior Member
Thanks Meter 17
Posts: 267
Join Date: Oct 2009

 
DONATE TO ME
Quote:
Originally Posted by tonymontana079 View Post
Hmm thats weird playnow app still works on my play only lost trackid it says cannot authenticate with server obviously because of the missing certificates. Is there any way to restore the certificate so I can use trackid or am I stuck with shazam now dont really like soundhound because there is no widget for the home screen.
soundhound has a widget ôo
The Following User Says Thank You to Ireas For This Useful Post: [ Click to Expand ]
 
teckhwee
Old
#7  
Member
Thanks Meter 2
Posts: 64
Join Date: Aug 2008
Can someone create a kernal that disables the auto brightness?
 
tonymontana079
Old
#8  
Junior Member
Thanks Meter 3
Posts: 29
Join Date: Dec 2010
Quote:
Originally Posted by Ireas View Post
soundhound has a widget ôo
yeah I think I didnt look into it too much I thought shazam had a bigger database so I just stuck with that but I think I might take another look at it now.
which one out of shazam or soundhound has the largest database?
 
FrAsErTaG
Old
#9  
FrAsErTaG's Avatar
Senior Member
Thanks Meter 1066
Posts: 1,341
Join Date: May 2009
Location: Canberra

 
DONATE TO ME
Quote:
Originally Posted by teckhwee View Post
Can someone create a kernal that disables the auto brightness?
PaulOBrien has just have to wait for him to publish it

Sent from my R800i using XDA Premium App
If you found my post helpful please click the thank you or donate button.


 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...

XDA PORTAL POSTS

Auto Test Your Android Apps with Robotium

You’ve just finished coding your very first app, but before you release it to the wild, you … more

Open Source CPU Info App for Windows

So you’re playing with your shiny new Windows 8 tablet PC, when one of your like-minded geeky … more

Guide to Using Adobe Air on Android

When writing an app with performance in mind, you most likely want to write it native code using the … more