<br>normally in embedded uboot is the bootloader.   and to trace this is simple:<div><br></div><div>a.   understand how uboot works - and this is highly platform specific (uboot is highly hardware dependent)...and examine the point where control passed is passed to kernel image file (which still run at 16 bit real mode), and from there u can trace everything.</div>

<div><br></div><div>b.   well u need assembly, as everything starting is written in assembly.   for ARM (as u asked for Android), the place is &quot;start_kernel&quot; inside:</div><div><br></div><div>arch/arm/kernel/head-common.S</div>

<div><br></div><div>and then u must learn linker scripting (for ARM is arm/kernel/vmlinux.ld.S) as well, that is how u tell the compiler to generate a image that can be loaded directly into memory and executed directly on the hardware in memory - using the hardware-specific reset vector as the starting point.   there is no loader at this stage to load the binary.   (uboot will load it as a image, but executeable).</div>

<div><br></div><div>the rest is yours...</div><div><br><div class="gmail_quote">On Mon, Feb 4, 2013 at 12:34 PM, Ranganath T.M <span dir="ltr">&lt;<a href="mailto:ranganathtm88@gmail.com" target="_blank">ranganathtm88@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi All,<div><br></div><div>I am trying to find out how the kernel will <b>start</b> from the uboot and how the kernel will call there respective static modules which are built as <b>.o</b> file and also how the <b>probe</b> of every modules will be called.</div>


<div><br></div><div>Thanks And Regards</div><span><font color="#888888"><div>Ranganath </div>
</font></span><br>_______________________________________________<br>
Kernelnewbies mailing list<br>
<a href="mailto:Kernelnewbies@kernelnewbies.org" target="_blank">Kernelnewbies@kernelnewbies.org</a><br>
<a href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies" target="_blank">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br>Regards,<br>Peter Teoh
</div>