diff options
author | Junghoon Kim <jhoon20.kim@samsung.com> | 2017-11-02 13:41:00 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2019-01-21 16:07:57 +0900 |
commit | 0b300ea419f4d4bf455ee9f9c53320508283f02b (patch) | |
tree | a79a271a5f623fb5dbf7b019338f084b2df7b815 | |
parent | f18abeac0f3defc1c195a73d739fb9d2bdc8500e (diff) | |
download | u-boot-artik7-0b300ea419f4d4bf455ee9f9c53320508283f02b.tar.gz u-boot-artik7-0b300ea419f4d4bf455ee9f9c53320508283f02b.tar.bz2 u-boot-artik7-0b300ea419f4d4bf455ee9f9c53320508283f02b.zip |
configs: artik530_raptor: support fota bootmode
Support fota bootmode in the booting script.
Change-Id: Ie9e87e0223394173cc025f32e76997a189ad3f23
Signed-off-by: Junghoon Kim <jhoon20.kim@samsung.com>
-rw-r--r-- | include/configs/artik530_raptor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/artik530_raptor.h b/include/configs/artik530_raptor.h index 8851fbc5ab..31bf8eab14 100644 --- a/include/configs/artik530_raptor.h +++ b/include/configs/artik530_raptor.h @@ -483,7 +483,7 @@ " run load_args\n" \ " fi\0" \ "load_initrd=" \ - "if test ${bootmode} = recovery; then; " \ + "if test ${bootmode} = recovery || test ${bootmode} = fota; then; " \ "if test -e mmc ${rootdev}:${bootpart} ramdisk-recovery.img; then " \ "echo ${bootmode} booting.;" \ "setenv ramdisk_file ramdisk-recovery.img;" \ |