From 8240a7e6d3ddeeab56e3a238dcb4e7a4210dbed4 Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Mon, 19 Dec 2016 13:33:29 +1030 Subject: Move INITRD_IMAGE_ENTRYPOINT up higher Move the initrd decompression address to 0x42000000 to avoid overlap in the decompressed image. A symptom of this was seeing the following in the kernel logs: INITRD: 0x40800000+0x0017eaed overlaps in-use memory region - disabling initrd Followed by a backtrace when the kernel cannot find any root file system. The new address is high enough that we can fit kernels larger than the 1.5MB window that the existing address gave us. Change-Id: Icb79fadc5d9f01dbf89c73c74d2ed40c10b25c2a Signed-off-by: Joel Stanley --- meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass b/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass index 01f91c076..5c991265d 100644 --- a/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass +++ b/meta-phosphor/classes/obmc-phosphor-image_types_uboot.bbclass @@ -9,7 +9,7 @@ oe_mkimage () { -d ${DEPLOY_DIR_IMAGE}/$1 ${DEPLOY_DIR_IMAGE}/$1.u-boot } -INITRD_IMAGE_ENTRYPOINT ?= "0x40800000" +INITRD_IMAGE_ENTRYPOINT ?= "0x42000000" INITRD_IMAGE_LOADADDRESS ?= "${INITRD_IMAGE_ENTRYPOINT}" INITRD_LINK_NAME = "${INITRD_IMAGE}-${MACHINE}${INITRAMFS_FSTYPE}" -- cgit v1.2.1