diff options
| author | Heiko Schocher <[email protected]> | 2023-01-24 18:06:54 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-06 13:04:53 -0500 |
| commit | 316d3d06059810cc64e4e438cfe3f2b001fc31e1 (patch) | |
| tree | 67ae7764e77256640f41f2daea72206be9d6c59f /include | |
| parent | 2e9eea4ebdbdcca123f658ac5d9d659040b3f15f (diff) | |
powerpc/mpc85xx: socrates: add initrd_high default environment variable
we need to set initrd_high to get fitimage booting.
Without, U-Boot drops when booting fitimage:
ERROR: Failed to allocate 0x59a0b6 bytes below 0x800000.
ramdisk - allocation error
bootm - boot application image from memory
Signed-off-by: Heiko Schocher <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/socrates.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/socrates.h b/include/configs/socrates.h index 67ff370e05c..ed1003158bd 100644 --- a/include/configs/socrates.h +++ b/include/configs/socrates.h @@ -118,6 +118,7 @@ #define CFG_EXTRA_ENV_SETTINGS \ "netdev=eth0\0" \ "consdev=ttyS0\0" \ + "initrd_high=0x03000000\0" \ "uboot_file=/home/tftp/syscon3/u-boot.bin\0" \ "bootfile=/home/tftp/syscon3/uImage\0" \ "fdt_file=/home/tftp/syscon3/socrates.dtb\0" \ |
