diff options
author | wdenk <wdenk> | 2004-03-14 22:25:36 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-03-14 22:25:36 +0000 |
commit | 42dfe7a1844cbad7114038aaf03828acb7a84414 (patch) | |
tree | d33893d34d2a97aa23257703733dbc9d86d48278 /board/versatile | |
parent | 855a496fe9ba431772f1ff1aef21a5c001288bb0 (diff) |
Code cleanup; make several boards compile & link.LABEL_2004_03_14_2340
Diffstat (limited to 'board/versatile')
-rw-r--r-- | board/versatile/config.mk | 2 | ||||
-rw-r--r-- | board/versatile/u-boot.lds | 4 | ||||
-rw-r--r-- | board/versatile/versatile.c | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/board/versatile/config.mk b/board/versatile/config.mk index df674917a5d..25b79b3e793 100644 --- a/board/versatile/config.mk +++ b/board/versatile/config.mk @@ -1,5 +1,5 @@ # -# image should be loaded at 0x01000000 +# image should be loaded at 0x01000000 # TEXT_BASE = 0x01000000 diff --git a/board/versatile/u-boot.lds b/board/versatile/u-boot.lds index da679c2e515..33931be1277 100644 --- a/board/versatile/u-boot.lds +++ b/board/versatile/u-boot.lds @@ -43,8 +43,8 @@ SECTIONS .u_boot_cmd : { *(.u_boot_cmd) } __u_boot_cmd_end = .; - armboot_end_data = .; . = ALIGN(4); + __bss_start = .; .bss : { *(.bss) } - armboot_end = .; + _end = .; } diff --git a/board/versatile/versatile.c b/board/versatile/versatile.c index ead30881e4c..626d5276b52 100644 --- a/board/versatile/versatile.c +++ b/board/versatile/versatile.c @@ -117,4 +117,3 @@ int dram_init (void) { return 0; } - |