Advertisement
popsdeco

PROCFW on devkitPSP r16 (gcc 4.6.2)

Apr 25th, 2012
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.71 KB | None | 0 0
  1. diff -r 775b9c814ce8 CIPL/combine/combine.py
  2. --- a/CIPL/combine/combine.py   Mon Feb 13 00:44:26 2012 +0100
  3. +++ b/CIPL/combine/combine.py   Wed Apr 11 13:45:12 2012 +0100
  4. @@ -41,7 +41,7 @@
  5.     fp.close()
  6.  
  7.     if len(buf) < inputsize:
  8. -       buf += b'\0' * (inputsize - len(buf))
  9. +       buf += '\0' * (inputsize - len(buf))
  10.  
  11.     assert(len(buf) == inputsize)
  12.  
  13. diff -r 775b9c814ce8 CIPL/mainbinex/linkfile.l
  14. --- a/CIPL/mainbinex/linkfile.l Mon Feb 13 00:44:26 2012 +0100
  15. +++ b/CIPL/mainbinex/linkfile.l Wed Apr 11 13:45:12 2012 +0100
  16. @@ -6,8 +6,8 @@
  17.  SECTIONS
  18.  {
  19.    . = 0x040e0000;
  20. -  .text.start : {
  21. -    *(.text.start)
  22. +  .text.startup : {
  23. +    *(.text.startup)
  24.    }
  25.    .text : {
  26.      *(.text)
  27. diff -r 775b9c814ce8 CIPL/payloadex/linkfile.l
  28. --- a/CIPL/payloadex/linkfile.l Mon Feb 13 00:44:26 2012 +0100
  29. +++ b/CIPL/payloadex/linkfile.l Wed Apr 11 13:45:12 2012 +0100
  30. @@ -6,8 +6,8 @@
  31.  SECTIONS
  32.  {
  33.    . = 0x88fc0000;
  34. -  .text.start : {
  35. -    *(.text.start)
  36. +  .text.startup : {
  37. +    *(.text.startup)
  38.    }
  39.    .text : {
  40.      *(.text)
  41. diff -r 775b9c814ce8 PXE/RebootexPXE/linkfile.l
  42. --- a/PXE/RebootexPXE/linkfile.l    Mon Feb 13 00:44:26 2012 +0100
  43. +++ b/PXE/RebootexPXE/linkfile.l    Wed Apr 11 13:45:12 2012 +0100
  44. @@ -6,8 +6,8 @@
  45.  SECTIONS
  46.  {
  47.    . = 0x88FC0000;
  48. -  .text.start : {
  49. -    *(.text.start)
  50. +  .text.startup : {
  51. +    *(.text.startup)
  52.    }
  53.    .text : {
  54.      *(.text)
  55. diff -r 775b9c814ce8 Rebootex_bin/linkfile.l
  56. --- a/Rebootex_bin/linkfile.l   Mon Feb 13 00:44:26 2012 +0100
  57. +++ b/Rebootex_bin/linkfile.l   Wed Apr 11 13:45:12 2012 +0100
  58. @@ -6,8 +6,8 @@
  59.  SECTIONS
  60.  {
  61.    . = 0x88FC0000;
  62. -  .text.start : {
  63. -    *(.text.start)
  64. +  .text.startup : {
  65. +    *(.text.startup)
  66.    }
  67.    .text : {
  68.      *(.text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement