Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

The IGEP X-loader

1,513 bytes added, 13:41, 3 March 2011
no edit summary
You can follow this howto about how [http://code.google.com/p/beagleboard/wiki/LinuxBootDiskFormat prepare the microsd card].
Get a new mmc and create two partitions, the first one must be fat and the second one can be formated in any format type supported by linux kernel.<br>  === Copy the files in the first (FAT) partition === In the first partition you must copy in this order: #x-loader.bin.ift (you must rename this file to MLO) / This is a signed image using contrib/signGP tool#x-loader configuration file [http://git.igep.es/?p=pub/scm/igep-x-loader.git;a=blob;f=scripts/igep.ini;h=7ecda91b2716d8984d48fa6c5eb5c74b8f0b0959;hb=HEAD igep.ini]&nbsp;also you can change the configuration file name editing the file:&nbsp;[http://git.igep.es/?p=pub/scm/igep-x-loader.git;a=blob;f=include/configs/igep0020-sdcard.h igep0020-sdcard.h]&nbsp;(#define IGEP_BOOT_CFG_INI_FILE "igep.ini")#Your desired kernel image. Images Order:<pre> 48 /* Linux Images */ 49 const char* LinuxImageNames [] = { 50 "kparam" /* Use kparam first */ 51 "zImage", /* jffs2 it's case sensitive */ 52 "zimage", /* fat name it's not case sentitive */ 53 "vmlinuz", 54 "bzImage", 55 "bzimage", 56 0, 57 }; or you can set the name for your kernel in the configuration file using the tag: kImageName</pre> Don't use a uImage kernel format (from uboot), only standard kernel formats it's supported. '''kernel build command example''':<pre>$make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- zImage modules</pre>=== Second Partition === Copy all your rootfs in this second partition.
=== <br> 4 Settings &amp; Configuration: ===