diff options
author | wdenk <wdenk> | 2003-10-15 23:53:47 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-10-15 23:53:47 +0000 |
commit | 42d1f0394bef0624fc9664714d54bb137931d6a6 (patch) | |
tree | 892a4130507484d25faf9a72e019cf88cfb3e3d9 /board/dk1c20 | |
parent | 2d5b561e2bfdee8552a99b2cf93016cce2a74895 (diff) | |
download | u-boot-imx-42d1f0394bef0624fc9664714d54bb137931d6a6.zip u-boot-imx-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.gz u-boot-imx-42d1f0394bef0624fc9664714d54bb137931d6a6.tar.bz2 |
* 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 'board/dk1c20')
-rw-r--r-- | board/dk1c20/config.mk | 1 | ||||
-rw-r--r-- | board/dk1c20/u-boot.lds | 15 | ||||
-rw-r--r-- | board/dk1c20/vectors.S | 2 |
3 files changed, 7 insertions, 11 deletions
diff --git a/board/dk1c20/config.mk b/board/dk1c20/config.mk index 12c74e6..d200715 100644 --- a/board/dk1c20/config.mk +++ b/board/dk1c20/config.mk @@ -27,4 +27,3 @@ TEXT_BASE = 0x018c0000 ifeq ($(debug),1) PLATFORM_CPPFLAGS += -DDEBUG endif - diff --git a/board/dk1c20/u-boot.lds b/board/dk1c20/u-boot.lds index beedd54..a7d35af 100644 --- a/board/dk1c20/u-boot.lds +++ b/board/dk1c20/u-boot.lds @@ -33,17 +33,17 @@ SECTIONS cpu/nios/start.o (.text) *(.text) } - __text_end = .; + __text_end = .; - . = ALIGN(4); - .rodata : + . = ALIGN(4); + .rodata : { *(.rodata) } __rodata_end = .; - . = ALIGN(4); - .data : + . = ALIGN(4); + .data : { *(.data) } @@ -59,12 +59,11 @@ SECTIONS __u_boot_cmd_end = .; __bss_start = .; - . = ALIGN(4); - .bss : + . = ALIGN(4); + .bss : { *(.bss) } . = ALIGN(4); __bss_end = .; } - diff --git a/board/dk1c20/vectors.S b/board/dk1c20/vectors.S index e2baaf5..7094eb6 100644 --- a/board/dk1c20/vectors.S +++ b/board/dk1c20/vectors.S @@ -120,5 +120,3 @@ _vectors: .long _def_xhandler@h /* Vector 61 */ .long _def_xhandler@h /* Vector 62 */ .long _def_xhandler@h /* Vector 63 */ - - |