diff options
author | Lukasz Majewski <lukma@denx.de> | 2018-05-11 16:51:11 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2018-06-18 15:44:21 +0200 |
commit | 18ccca59e31bcf415b469ef2c71bfe9c14dbc6e3 (patch) | |
tree | 130a3544f12a959f22b6171bdf3ef0779c068831 /include | |
parent | dd4ed88bf13d5357038446a6839ff9808d4981b4 (diff) | |
download | u-boot-18ccca59e31bcf415b469ef2c71bfe9c14dbc6e3.zip u-boot-18ccca59e31bcf415b469ef2c71bfe9c14dbc6e3.tar.gz u-boot-18ccca59e31bcf415b469ef2c71bfe9c14dbc6e3.tar.bz2 |
display5: config: factory: Update BACKUP rootfs in factory mode
After splitting rootfs images to BACKUP and ACTIVE, the "factory"
u-boot also needs to update the former.
Signed-off-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/display5.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/configs/display5.h b/include/configs/display5.h index fed8880..6b428c1 100644 --- a/include/configs/display5.h +++ b/include/configs/display5.h @@ -194,13 +194,11 @@ "mmc write ${loadaddr} ${lba_start} ${fw_sz}; " \ "; fi\0" \ -/* To save some considerable time, we only once download the rootfs image */ -/* and store it on 'active' and 'backup' rootfs partitions */ #define TFTP_UPDATE_ROOTFS \ "setenv rootfs_part ${rootfs_part_active};" \ "run tftp_mmc_rootfs;" \ - "part start mmc ${mmcdev} ${rootfs_part_backup} lba_start;" \ - "mmc write ${loadaddr} ${lba_start} ${fw_sz};" \ + "run tftp_mmc_rootfs_bkp;" \ + #define TFTP_UPDATE_RECOVERY_SWU_KERNEL \ "tftp_sf_fitImg_SWU=" \ |