aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2021-05-05 13:00:23 +0100
committerAndre Przywara <andre.przywara@arm.com>2021-05-05 13:23:01 +0100
commitc3ce73be0bfe31fa28805fe92b3e727232ffd37a (patch)
treecd1eb2041b2e20a6cde27480a08aa704d92599cd
parent08532d75c076a994dd63c4c341babbfb23393eed (diff)
downloadtrusted-firmware-a-c3ce73be0bfe31fa28805fe92b3e727232ffd37a.tar.gz
fix(plat/arm_fpga): increase initrd size
In the comment in the ARM FPGA DT we promise a generous 100 MB initrd, but actually describe only a size of 20 MB. As initrds are the most common and easy userland option for the boards, let's increase the maximum size to the advertised 100 MB, to avoid unpacking errors when an initrd exceeds the current limit of 20 MB. Change-Id: If08ba3fabdad27b2c2aff93b18c3f664728b4348 Signed-off-by: Andre Przywara <andre.przywara@arm.com>
-rw-r--r--fdts/arm_fpga.dts2
1 files changed, 1 insertions, 1 deletions
diff --git a/fdts/arm_fpga.dts b/fdts/arm_fpga.dts
index 6a966fd85f..b7b4f0e6a3 100644
--- a/fdts/arm_fpga.dts
+++ b/fdts/arm_fpga.dts
@@ -28,7 +28,7 @@
bootargs = "console=ttyAMA0,38400n8 earlycon";
/* Allow to upload a generous 100MB initrd payload. */
linux,initrd-start = <0x0 0x84000000>;
- linux,initrd-end = <0x0 0x85400000>;
+ linux,initrd-end = <0x0 0x8a400000>;
};
/* /cpus node will be added by BL31 at runtime. */