diff options
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 */ - - |