summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2020-10-30 16:22:32 +0900
committerJaehoon Chung <jh80.chung@samsung.com>2023-10-17 13:19:24 +0900
commitcf000f7a31bfabefa3f30bd384ad970920dbff40 (patch)
treee338e10c1db21e4d5d895dfd57e48f937f2d5527 /include
parentf478d2d1278870a6d7d1e7dfcefd861daf0010eb (diff)
downloadu-boot-cf000f7a31bfabefa3f30bd384ad970920dbff40.tar.gz
u-boot-cf000f7a31bfabefa3f30bd384ad970920dbff40.tar.bz2
u-boot-cf000f7a31bfabefa3f30bd384ad970920dbff40.zip
board: amlogic: add a skip layout in dfu_boot_info
Add a "skip" layout in dfu_boot_info. - kvim3 target: u-boot-n2.bin will be skipped. - odroid-n2 target: u-boot-kvim3.bin will be skipped. Change-Id: I2a81f88c1610d3e5a13e560a4d5cc6c2322df538 Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include')
-rw-r--r--include/samsung/tizen_amlogic.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/samsung/tizen_amlogic.h b/include/samsung/tizen_amlogic.h
index 117b8bf9fe..d33e9974f0 100644
--- a/include/samsung/tizen_amlogic.h
+++ b/include/samsung/tizen_amlogic.h
@@ -47,7 +47,12 @@
"ramdisk.img part 1 7\0"
-#define DFU_ALT_BOOT_EMMC "u-boot.bin raw 0x1 0x850"
+#define DFU_ALT_BOOT_EMMC_ODROID_N2 "u-boot.bin raw 0x1 0x850;" \
+ "u-boot-n2.bin raw 0x1 0x850;" \
+ "u-boot-kvim3.bin skip 0 0"
+#define DFU_ALT_BOOT_EMMC_KVIM3 "u-boot.bin raw 0x1 0x850;" \
+ "u-boot-kvim3.bin raw 0x1 0x850;" \
+ "u-boot-n2.bin skip 0 0"
#define DFU_ALT_BOOT_SD ""
#define CONFIG_SET_DFU_ALT_INFO
#define CONFIG_SET_DFU_ALT_BUF_LEN (SZ_1K)