Advertisement
Guest User

Untitled

a guest
Nov 14th, 2011
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. options
  2. {
  3. productVersion = "0.2.4";
  4. componentVersion = "0.2.4";
  5. flags = 0x100;
  6. }
  7.  
  8. sources
  9. {
  10. stage0 = "____.0.elf";
  11. /* ... */
  12. mlc0 = "mlc_.0.elf";
  13. /* ... */
  14. host0 = "host.0.elf";
  15. /* ... */
  16. play0 = "play.0.elf";
  17. /* ... */
  18. mmc0 = "mmc_.0.elf";
  19. /* ... */
  20. hSst0 = "hSst.0.elf";
  21. /* ... */
  22. pSay = "pSay.0.elf";
  23. /* ... */
  24. hvm2 = "hvm2.bin";
  25. hvmi = "hvmi.bin";
  26. pvm2 = "pvm2.bin";
  27. pvmi = "pvmi.bin";
  28. hSm2 = "hSm2.bin";
  29. hSmi = "hSmi.bin";
  30. pSmi = "pSmi.bin";
  31. rsrc = "rsrc.bin";
  32. }
  33.  
  34. section(0)
  35. {
  36. load stage0;
  37. call stage0;
  38. /* ... follow output of sbtoelf */
  39. }
  40.  
  41. section('mlc_')
  42. {
  43. load mlc0;
  44. call mlc0;
  45. /* ... */
  46. }
  47.  
  48. section('host')
  49. {
  50. load host0;
  51. call host0;
  52. }
  53.  
  54. section('play')
  55. {
  56. load play0;
  57. call play0;
  58. }
  59.  
  60. section('mmc_')
  61. {
  62. load play0;
  63. call play0;
  64. }
  65.  
  66. section('hSst')
  67. {
  68. load hSst0;
  69. call hSst0;
  70. }
  71.  
  72. section('pSay')
  73. {
  74. load pSay0;
  75. call pSay0;
  76. }
  77.  
  78. section('hvm2'; cleartext=true, alignment=8192) <= hvm2;
  79. section('hvmi'; cleartext=true, alignment=4096) <= hvmi;
  80. section('pvm2'; cleartext=true, alignment=32768) <= pvm2;
  81. section('pvmi'; cleartext=true, alignment=8192) <= pvmi;
  82. section('hSm2'; cleartext=true, alignment=8192) <= hSm2;
  83. section('hSmi'; cleartext=true, alignment=8192) <= hSmi;
  84. section('pSm2'; cleartext=true, alignment=8192) <= pSm2;
  85. section('pSmi'; cleartext=true, alignment=8192) <= pSmi;
  86. section('rsrc'; cleartext=true, alignment=8192) <= rsrc;
  87.  
  88.  
  89.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement