Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2011
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.63 KB | None | 0 0
  1. // bobc 29/05/2010 13:39:56
  2. // This file is guesswork based on falconwing_chumby_sb.db
  3.  
  4. // Falconwing STMP378x ROM command script to load and run chumby_factory
  5.  
  6. sources
  7. {
  8.     system_init = "output/system_init.elf";
  9.     rockbox_bootloader = "../../../../../build-lyre_v2-bootloader/bootloader.elf";
  10.     //rockbox_bootloader = "../../../../../build-lyre_v2-bootloader/bootloader/imx233.o";
  11. }
  12.  
  13. section (0)
  14. {
  15.     /* initialize power, clock and SDRAM */
  16.     load system_init;
  17.     call system_init;
  18. }
  19.  
  20. section (1)
  21. {
  22.     /* load and run Rockbox bootloader */
  23.     load rockbox_bootloader > 0x40000000;
  24.     jump rockbox_bootloader;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement