README
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Creation of the self-extracting compressed kernel image (vmlinuz)
  2. -----------------------------------------------------------------
  3. $Id: README,v 1.1 2000/11/22 17:20:46 bjornw Exp $
  4. This can be slightly confusing because it's a process with many steps.
  5. The kernel object built by the arch/etrax100/Makefile, vmlinux, is split
  6. by that makefile into text and data binary files, vmlinux.text and 
  7. vmlinux.data.
  8. Those files together with a ROM filesystem can be catted together and
  9. burned into a flash or executed directly at the DRAM origin.
  10. They can also be catted together and compressed with gzip, which is what
  11. happens in this makefile. Together they make up piggy.img. 
  12. The decompressor is built into the file decompress.o. It is turned into
  13. the binary file decompress.bin, which is catted together with piggy.img
  14. into the file vmlinuz. It can be executed in an arbitrary place in flash.
  15. Be careful - it assumes some things about free locations in DRAM. It
  16. assumes the DRAM starts at 0x40000000 and that it is at least 8 MB,
  17. so it puts its code at 0x40700000, and initial stack at 0x40800000.
  18. -Bjorn