aboutsummaryrefslogtreecommitdiff
path: root/lava_scheduler_app/tests/device-types
diff options
context:
space:
mode:
authorKevin Hilman <khilman@baylibre.com>2018-02-01 16:32:36 -0800
committerKevin Hilman <khilman@baylibre.com>2018-02-01 16:35:55 -0800
commitafa28d5ae128a591414517edd72652800a72be12 (patch)
tree0a7043dfa84fed6a9de0fe37f00857a38185bb7a /lava_scheduler_app/tests/device-types
parent968a00dd98985f3b111ead08f2678e65cd3d67d0 (diff)
device-types: rpi-3 32-bit: fixup DT load address
Move the DT load address to just before the ramdisk instead of in early memory. The offset 0x100 is traditionally where u-boot writes ATAGs for kernel command-lines, and thus DT may be partially overwritten here. Change-Id: Iebeb5234276d84cc9989fed844d0a70d1a2ec238 Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'lava_scheduler_app/tests/device-types')
-rw-r--r--lava_scheduler_app/tests/device-types/bcm2837-rpi-3-b-32.jinja24
1 files changed, 2 insertions, 2 deletions
diff --git a/lava_scheduler_app/tests/device-types/bcm2837-rpi-3-b-32.jinja2 b/lava_scheduler_app/tests/device-types/bcm2837-rpi-3-b-32.jinja2
index 0d8be99a7..460c67371 100644
--- a/lava_scheduler_app/tests/device-types/bcm2837-rpi-3-b-32.jinja2
+++ b/lava_scheduler_app/tests/device-types/bcm2837-rpi-3-b-32.jinja2
@@ -4,11 +4,11 @@
{% set bootz_kernel_addr = '0x01000000' %}
{% set bootz_ramdisk_addr = '0x04000000' %}
-{% set bootz_dtb_addr = '0x00000100' %}
+{% set bootz_dtb_addr = '0x03f00000' %}
{% set bootm_kernel_addr = '0x01000000' %}
{% set bootm_ramdisk_addr = '0x04000000' %}
-{% set bootm_dtb_addr = '0x00000100' %}
+{% set bootm_dtb_addr = '0x03f00000' %}
{% set uboot_mkimage_arch = 'arm' %}