summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-10-15 23:53:47 +0000
committerwdenk <wdenk>2003-10-15 23:53:47 +0000
commit42d1f0394bef0624fc9664714d54bb137931d6a6 (patch)
tree892a4130507484d25faf9a72e019cf88cfb3e3d9 /examples
parent2d5b561e2bfdee8552a99b2cf93016cce2a74895 (diff)
downloadbarebox-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.gz
barebox-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.xz
* Patches by Xianghua Xiao, 15 Oct 2003:
- Added Motorola CPU 8540/8560 support (cpu/85xx) - Added Motorola MPC8540ADS board support (board/mpc8540ads) - Added Motorola MPC8560ADS board support (board/mpc8560ads) * Minor code cleanup
Diffstat (limited to 'examples')
-rw-r--r--examples/nios.lds15
1 files changed, 7 insertions, 8 deletions
diff --git a/examples/nios.lds b/examples/nios.lds
index 105999f548..527eb3ad45 100644
--- a/examples/nios.lds
+++ b/examples/nios.lds
@@ -32,17 +32,17 @@ SECTIONS
{
*(.text)
}
- __text_end = .;
+ __text_end = .;
- . = ALIGN(4);
- .rodata :
+ . = ALIGN(4);
+ .rodata :
{
*(.rodata)
}
__rodata_end = .;
- . = ALIGN(4);
- .data :
+ . = ALIGN(4);
+ .data :
{
*(.data)
}
@@ -50,12 +50,11 @@ SECTIONS
__data_end = .;
__bss_start = .;
- . = ALIGN(4);
- .bss :
+ . = ALIGN(4);
+ .bss :
{
*(.bss)
}
. = ALIGN(4);
__bss_end = .;
}
-