diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2018-09-04 10:23:16 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2018-09-14 15:04:24 +0200 |
commit | 313d02b6b4b2c6d2527b116af2c698b0a412e246 (patch) | |
tree | fb04d947a2c2d4ac53e65a1968378b84ea21e8d4 /include/configs/pico-imx6ul.h | |
parent | f6d805504b6fcc6c6e7d3eb0aed6b7c07ce33e53 (diff) |
pico-imx6ul: Improve default DFU settings
This rework the DFU settings so it supports the SPL and U-Boot image,
as well as the single partition layout we are using by default.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'include/configs/pico-imx6ul.h')
-rw-r--r-- | include/configs/pico-imx6ul.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/configs/pico-imx6ul.h b/include/configs/pico-imx6ul.h index 9905b1eebb..535f0b26df 100644 --- a/include/configs/pico-imx6ul.h +++ b/include/configs/pico-imx6ul.h @@ -44,11 +44,12 @@ #define DFU_DEFAULT_POLL_TIMEOUT 300 #define CONFIG_DFU_ENV_SETTINGS \ - "dfu_alt_info=uboot raw 0x2 0x400 mmcpart 1;" \ - "boot part 0 1;" \ - "/zImage ext4 0 1;" \ - "/imx6ul-pico-hobbit.dtb ext4 0 1;" \ - "rootfs part 0 2\0" \ + "dfu_alt_info=" \ + "spl raw 0x2 0x400 mmcpart 1;" \ + "u-boot raw 0x8a 0x400 mmcpart 1;" \ + "/boot/zImage ext4 0 1;" \ + "/boot/imx6ul-pico-hobbit.dtb ext4 0 1;" \ + "rootfs part 0 1\0" \ #define BOOTMENU_ENV \ "bootmenu_0=Boot using PICO-Hobbit baseboard=" \ |