diff options
Diffstat (limited to 'board/ivm/u-boot.lds')
-rw-r--r-- | board/ivm/u-boot.lds | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/ivm/u-boot.lds b/board/ivm/u-boot.lds index d7f360f3bbb..2583a5996a3 100644 --- a/board/ivm/u-boot.lds +++ b/board/ivm/u-boot.lds @@ -53,7 +53,7 @@ SECTIONS .text : { cpu/mpc8xx/start.o (.text) - common/environment.o(.text) + common/env_embedded.o(.text) *(.text) *(.fixup) *(.got1) @@ -123,6 +123,7 @@ SECTIONS *(.dynbss) *(.bss) *(COMMON) + . = ALIGN(4); } _end = . ; PROVIDE (end = .); |