diff options
author | Fabio Berton | 2018-06-29 15:19:12 -0300 |
---|---|---|
committer | Stefano Babic | 2018-07-23 10:59:48 +0200 |
commit | 1e646426949a4205ae973c4a7ff7f2aea9f6d9bd (patch) | |
tree | adb576f00b3afbeba03fcce4f1420cb5cfa73203 /include/configs | |
parent | d5b7177f9130d8b66e7f20f71ff358fb5619a13a (diff) |
pico-imx7d: Add support for update SPL using DFU
Add spl entry on dfu_alt_info to be able to update U-Boot with SPL
for pico imx7d board.
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/pico-imx7d.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/pico-imx7d.h b/include/configs/pico-imx7d.h index 80abcb4d7b8..f974b79b3b1 100644 --- a/include/configs/pico-imx7d.h +++ b/include/configs/pico-imx7d.h @@ -33,7 +33,9 @@ #define CONFIG_SYS_FSL_ESDHC_ADDR 0 #define CONFIG_DFU_ENV_SETTINGS \ - "dfu_alt_info=u-boot raw 0x2 0x400 mmcpart 1;" \ + "dfu_alt_info=" \ + "spl raw 0x2 0x400 mmcpart 1;" \ + "u-boot raw 0x8a 0x400 mmcpart 1;" \ "/boot/zImage ext4 0 1;" \ "/boot/imx7d-pico-pi.dtb ext4 0 1;" \ "rootfs part 0 1\0" \ |