diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-19 23:07:12 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-19 23:07:12 -0500 |
commit | cd057f5e15acaf099b375dcce508257fdadaf497 (patch) | |
tree | be4138af2cba228038d171bcd42a9bb79f3e7627 /include/configs/rk3399_common.h | |
parent | 2d2f91a480f6849a8548414003d36fa030d434f1 (diff) | |
parent | f9a0f5b83e9eabf4d064c7ec46fe2f9b9b694b4e (diff) | |
download | u-boot-WIP/19Jan2020.tar.gz |
Merge tag 'u-boot-rockchip-20200120' of https://gitlab.denx.de/u-boot/custodians/u-boot-rockchipWIP/19Jan2020
- Support SPI boot and redundant boot for rk3399
- Support binman for rockchip platform
- Update ram driver and add ddr4 support for rk3328
Diffstat (limited to 'include/configs/rk3399_common.h')
-rw-r--r-- | include/configs/rk3399_common.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/configs/rk3399_common.h b/include/configs/rk3399_common.h index 127ca1f09c..01a9174bd2 100644 --- a/include/configs/rk3399_common.h +++ b/include/configs/rk3399_common.h @@ -48,6 +48,8 @@ #define ENV_MEM_LAYOUT_SETTINGS \ "scriptaddr=0x00500000\0" \ + "script_offset_f=0xffe000\0" \ + "script_size_f=0x2000\0" \ "pxefile_addr_r=0x00600000\0" \ "fdt_addr_r=0x01f00000\0" \ "kernel_addr_r=0x02080000\0" \ @@ -63,7 +65,10 @@ "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ "partitions=" PARTS_DEFAULT \ ROCKCHIP_DEVICE_SETTINGS \ - BOOTENV + BOOTENV \ + "altbootcmd=" \ + "setenv boot_syslinux_conf extlinux/extlinux-rollback.conf;" \ + "run distro_bootcmd\0" #endif |