Difference between revisions of "Didj 2.6.31 Kernel"

From eLinux.org
Jump to: navigation, search
(Software Needed)
(Kernel Configuration)
 
(2 intermediate revisions by 2 users not shown)
Line 13: Line 13:
  
 
[http://dl.dropbox.com/u/12747635/Didj_LX/explorer_madrid/mmc/host/lf1000.c lf1000.c JFFS2/Partions Enabled]
 
[http://dl.dropbox.com/u/12747635/Didj_LX/explorer_madrid/mmc/host/lf1000.c lf1000.c JFFS2/Partions Enabled]
 +
 +
[http://dl.dropbox.com/u/12747635/Didj_LX/explorer_madrid/mmc/host/mes_sdhc.c mes_sdhc.c explorer/didj updated mmc driver]
  
 
== Hardware needed ==
 
== Hardware needed ==
 
[[LeapFrog_Pollux_Platform:_Console_Access| Console Access]]
 
[[LeapFrog_Pollux_Platform:_Console_Access| Console Access]]
  
== Kernel Configuration ==
+
== Driver patching and Kernel Configuration ==
Here we will configure the kernel for compiling, currently if you are using Lightning Boot 1.4 to 2.1 there is a problem with the bootloaders framebuffer and where the kernel is loaded. Two ways currently around this, create a kernel < 2mb or boot it manually with uboot and a lower address. This tutorial uses the < 2mb method, which is easy to achieve after all the modules for things Didj doesn't have are removed.
+
Here we will configure the kernel for compiling, currently if you are using Lightning Boot 1.4 to 2.1 there is a problem with the bootloaders framebuffer and where the kernel is loaded. Two ways currently around this, create a kernel < 2mb or boot it manually with uboot and a lower address. This tutorial uses the < 2mb method, which is easy to achieve after all the modules for things Didj doesn't have are removed and we've set a couple of things up like tux boot image.
 +
 
 +
Unpack your sources to a suitable dir, download the mes_sdhc.c explorer/didj updated mmc driver from the link in the software needed section, copy it to linux-2.6/drivers/mmc/host overwriting the original version.  This enables the sd0 port to be enabled at boot time for the didj and explorer.
 +
 
 +
 
 +
Now download the lf1000.c JFFS2/Partions Enabled file from the software needed section, copy it to linux-2.6/drivers/mtd/nand/, this will allow us to see and mount the didj partitions once we've got the kernel booted.
 +
 
 +
Now download the Example Config file from the software needed section, copy it to linux-2.6/arch/arm/configs, this will give you the kernel .config that we know works with all versions of lightning boot from 1.4-2.1.  If you want to see what we've done compare the lf1000_didj_defconfig you downloaded to lf1000_ts_defconfig for more details.
 +
 
 +
This will disable a few things, such as Touch Screen, Acellerometer, Camera, USB Host, 3d etc. but it will also add tux while it boots and still produces a kernel that it 1.8MB well below the limits set by lightning boot.
  
After getting your build environment set up, we'll load a default config file:
+
at the command line do:
make lf1000_ts_defconfig
 
  
Next edit .config, you can do this with a text editor, or make menuconfig, this is all one line:
+
make lf1000_didj_defconfig
CONFIG_CMDLINE="mem=14M mlc_fb=0x00E00000,0x01200000 root=179:02 rw rootfstype=ext3 rootdelay=1 debug=1   
+
 
  init=/sbin/init console=ttyS0,115200 ubi.mtd=Brio ubi.mtd=prg_Brio ubi.mtd=Cartridge ubi.mtd=EXT ubi.mtd=prg_EXT"
+
this will load the defconfig into our .config file, almost ready to compile the kernel :)
  ubi.mtd=prg_Brio ubi.mtd=Cartridge"
 
  
You will also need to disable a few things, such as Touch Screen, Acellerometer, Camera, USB Host, etc. You can check the example config file for all the options.
 
  
 
Next we need to change the Mach Type in '' /linux-2.6/arch/arm/tools/mach-types '' the number has changed to 2028 - but the boot loader only knows about 1235:
 
Next we need to change the Mach Type in '' /linux-2.6/arch/arm/tools/mach-types '' the number has changed to 2028 - but the boot loader only knows about 1235:
Line 40: Line 48:
  
  
Then just run the install script
+
Then just run the install script from linux-2.6/ directory.
 
  ./install.sh
 
  ./install.sh
  
 
zImage will be found in the path defined with $TFTP_PATH in your Environmental Variables
 
zImage will be found in the path defined with $TFTP_PATH in your Environmental Variables
 +
 +
or you can just do:
 +
make zImage
 +
zImage will be in linux-2.6/arch/arm/boot
 +
 +
Of course if you don't want to do all that you can download a prebuilt kernel from the software needed section.
 +
 +
To Do:
 +
Fixup the audio driver?  Might just need the right rootfs on the card :D
 +
fixup the volume button
 +
writeup putting a rootfs on the sd card
 +
fixup the divide by zero error in the kernel boot messages, I think its the mtd_part_size thing in the nand driver changes, it uses a null flag to tell the driver to do from that point to the end of the remaining nand without having to work things out.
  
 
[[Category:didj]]
 
[[Category:didj]]
 
[[Category:LeapFrog_Pollux_Platform]]
 
[[Category:LeapFrog_Pollux_Platform]]

Latest revision as of 20:06, 22 July 2011

Summary

This tutorial will take you through the basic steps to get the 2.6.31 Kernel (LF-Linux-2503-20110602-1237.tar.gz) loading on your Didj. This will only deal with the kernel, and will be set up to run completely from SD, rootfs included.

Prerequisites

Kernel Configuration

Software Needed

Leapster Explorer Source (LF-Linux-2503-20110602-1237.tar.gz)

Example Config File

Example Binary zImage

lf1000.c JFFS2/Partions Enabled

mes_sdhc.c explorer/didj updated mmc driver

Hardware needed

Console Access

Driver patching and Kernel Configuration

Here we will configure the kernel for compiling, currently if you are using Lightning Boot 1.4 to 2.1 there is a problem with the bootloaders framebuffer and where the kernel is loaded. Two ways currently around this, create a kernel < 2mb or boot it manually with uboot and a lower address. This tutorial uses the < 2mb method, which is easy to achieve after all the modules for things Didj doesn't have are removed and we've set a couple of things up like tux boot image.

Unpack your sources to a suitable dir, download the mes_sdhc.c explorer/didj updated mmc driver from the link in the software needed section, copy it to linux-2.6/drivers/mmc/host overwriting the original version. This enables the sd0 port to be enabled at boot time for the didj and explorer.


Now download the lf1000.c JFFS2/Partions Enabled file from the software needed section, copy it to linux-2.6/drivers/mtd/nand/, this will allow us to see and mount the didj partitions once we've got the kernel booted.

Now download the Example Config file from the software needed section, copy it to linux-2.6/arch/arm/configs, this will give you the kernel .config that we know works with all versions of lightning boot from 1.4-2.1. If you want to see what we've done compare the lf1000_didj_defconfig you downloaded to lf1000_ts_defconfig for more details.

This will disable a few things, such as Touch Screen, Acellerometer, Camera, USB Host, 3d etc. but it will also add tux while it boots and still produces a kernel that it 1.8MB well below the limits set by lightning boot.

at the command line do:

make lf1000_didj_defconfig

this will load the defconfig into our .config file, almost ready to compile the kernel :)


Next we need to change the Mach Type in /linux-2.6/arch/arm/tools/mach-types the number has changed to 2028 - but the boot loader only knows about 1235:

#zir2412		MACH_ZIR2412		ZIR2412			1235
didj			MACH_DIDJ		DIDJ			1235
...
...

#didj			MACH_DIDJ		DIDJ			2028


Then just run the install script from linux-2.6/ directory.

./install.sh

zImage will be found in the path defined with $TFTP_PATH in your Environmental Variables

or you can just do:

make zImage

zImage will be in linux-2.6/arch/arm/boot

Of course if you don't want to do all that you can download a prebuilt kernel from the software needed section.

To Do:

Fixup the audio driver?  Might just need the right rootfs on the card :D
fixup the volume button
writeup putting a rootfs on the sd card
fixup the divide by zero error in the kernel boot messages, I think its the mtd_part_size thing in the nand driver changes, it uses a null flag to tell the driver to do from that point to the end of the remaining nand without having to work things out.