diff options
Diffstat (limited to 'board/quantum/u-boot.lds')
| -rw-r--r-- | board/quantum/u-boot.lds | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/board/quantum/u-boot.lds b/board/quantum/u-boot.lds index 1f9a191d4..55cb5eca3 100644 --- a/board/quantum/u-boot.lds +++ b/board/quantum/u-boot.lds @@ -64,7 +64,7 @@ SECTIONS  /* XXX ?      . = env_offset;  */ -    common/environment.o(.text) +    common/env_embedded.o(.text)      *(.text)      *(.fixup) @@ -135,6 +135,7 @@ SECTIONS     *(.dynbss)     *(.bss)     *(COMMON) +   . = ALIGN(4);    }    _end = . ;    PROVIDE (end = .); |