freemyipod r314 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r313‎ | r314 | r315 >
Date:00:50, 3 December 2010
Author:theseven
Status:new
Tags:
Comment:
apps: Oops, commit some forgotten changes
Modified paths:
  • /apps/helloworld/ls.x (modified) (history)
  • /apps/installer-nano2g/ls.x (modified) (history)
  • /apps/uninstaller-nano2g/ls.x (modified) (history)

Diff [purge]

Index: apps/installer-nano2g/ls.x
@@ -11,8 +11,11 @@
1212 {
1313 .bss (NOLOAD) :
1414 {
 15+ __bss_start = .;
1516 *(.bss*)
1617 *(COMMON)
 18+ __bss_end = .;
 19+ *(.stack*)
1720 } > RAM
1821
1922 .text 0x08f00000:
Index: apps/uninstaller-nano2g/ls.x
@@ -25,8 +25,11 @@
2626
2727 .bss (NOLOAD) :
2828 {
 29+ __bss_start = .;
2930 *(.bss*)
3031 *(COMMON)
 32+ __bss_end = .;
 33+ *(.stack*)
3134 } > RAM
3235
3336 /DISCARD/ :
Index: apps/helloworld/ls.x
@@ -25,8 +25,11 @@
2626
2727 .bss (NOLOAD) :
2828 {
 29+ __bss_start = .;
2930 *(.bss*)
3031 *(COMMON)
 32+ __bss_end = .;
 33+ *(.stack*)
3134 } > RAM
3235
3336 /DISCARD/ :