summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-02-07 11:51:45 -0700
committerSimon Glass <sjg@chromium.org>2015-02-12 10:35:31 -0700
commit43301741fc3455704204df100bf73a4c2f15b697 (patch)
tree0eb3503d34754899a88050fb344d60fdf1295f47 /board
parent0de36f8b62f5f9897f9434f4c3f5739117370694 (diff)
downloadblackbird-obmc-uboot-43301741fc3455704204df100bf73a4c2f15b697.tar.gz
blackbird-obmc-uboot-43301741fc3455704204df100bf73a4c2f15b697.zip
powerpc: ppc4xx: Use CONFIG_OF_CONTROL for canyonlands boards
Enable CONFIG_OF_CONTROL so that U-Boot on these three boards uses a device tree for its configuration. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board')
-rw-r--r--board/amcc/canyonlands/u-boot-ram.lds10
1 files changed, 8 insertions, 2 deletions
diff --git a/board/amcc/canyonlands/u-boot-ram.lds b/board/amcc/canyonlands/u-boot-ram.lds
index 67652569f4..1750c74a19 100644
--- a/board/amcc/canyonlands/u-boot-ram.lds
+++ b/board/amcc/canyonlands/u-boot-ram.lds
@@ -12,6 +12,7 @@ SECTIONS
. = + SIZEOF_HEADERS;
.text :
{
+ _image_copy_start = .;
arch/powerpc/cpu/ppc4xx/start.o (.text*)
board/amcc/canyonlands/init.o (.text*)
@@ -61,9 +62,14 @@ SECTIONS
. = ALIGN(256);
__init_begin = .;
.text.init : { *(.text.init) }
- .data.init : { *(.data.init) }
- . = ALIGN(256);
+ .data.init : {
+ *(.data.init)
+ . = ALIGN(256);
+ LONG(0) LONG(0) /* Extend u-boot.bin to here */
+ }
__init_end = .;
+ _end = .;
+ _image_binary_end = .;
__bss_start = .;
.bss (NOLOAD) :
OpenPOWER on IntegriCloud