linux-sg2042/arch/cris/arch-v10/boot/compressed
Jesper Nilsson 556dcee7b8 [CRIS] Move header files from include to arch/cris/include.
Change all users of header files to correct path.
Remove some unneeded headers for arch-v32.

Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
2008-10-29 17:29:44 +01:00
..
Makefile [CRIS] Rename boot-linkscripts and fix the path to them. 2008-07-14 08:59:48 +02:00
README Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
decompress.lds [CRIS] Rename boot-linkscripts and fix the path to them. 2008-07-14 08:59:48 +02:00
head.S [CRIS] Move header files from include to arch/cris/include. 2008-10-29 17:29:44 +01:00
misc.c [CRIS] Move header files from include to arch/cris/include. 2008-10-29 17:29:44 +01:00

README

Creation of the self-extracting compressed kernel image (vmlinuz)
-----------------------------------------------------------------
$Id: README,v 1.1 2001/12/17 13:59:27 bjornw Exp $

This can be slightly confusing because it's a process with many steps.

The kernel object built by the arch/etrax100/Makefile, vmlinux, is split
by that makefile into text and data binary files, vmlinux.text and 
vmlinux.data.

Those files together with a ROM filesystem can be catted together and
burned into a flash or executed directly at the DRAM origin.

They can also be catted together and compressed with gzip, which is what
happens in this makefile. Together they make up piggy.img. 

The decompressor is built into the file decompress.o. It is turned into
the binary file decompress.bin, which is catted together with piggy.img
into the file vmlinuz. It can be executed in an arbitrary place in flash.

Be careful - it assumes some things about free locations in DRAM. It
assumes the DRAM starts at 0x40000000 and that it is at least 8 MB,
so it puts its code at 0x40700000, and initial stack at 0x40800000.

-Bjorn