diff options
-rw-r--r-- | board/amlogic/odroid-n2/odroid-n2.c | 2 | ||||
-rw-r--r-- | board/amlogic/w400/w400.c | 2 | ||||
-rw-r--r-- | include/samsung/tizen_amlogic.h | 7 |
3 files changed, 8 insertions, 3 deletions
diff --git a/board/amlogic/odroid-n2/odroid-n2.c b/board/amlogic/odroid-n2/odroid-n2.c index 235f9b15a0..e408e43404 100644 --- a/board/amlogic/odroid-n2/odroid-n2.c +++ b/board/amlogic/odroid-n2/odroid-n2.c @@ -169,7 +169,7 @@ static char *get_dfu_alt_boot(char *interface, char *devstr) if (!strncmp(devstr, "0", 1)) alt_boot = DFU_ALT_BOOT_SD; else - alt_boot = DFU_ALT_BOOT_EMMC; + alt_boot = DFU_ALT_BOOT_EMMC_ODROID_N2; return alt_boot; } diff --git a/board/amlogic/w400/w400.c b/board/amlogic/w400/w400.c index 31b75d2c6b..d4671a1d70 100644 --- a/board/amlogic/w400/w400.c +++ b/board/amlogic/w400/w400.c @@ -49,7 +49,7 @@ static char *get_dfu_alt_boot(char *interface, char *devstr) if (!strncmp(devstr, "0", 1)) alt_boot = DFU_ALT_BOOT_SD; else - alt_boot = DFU_ALT_BOOT_EMMC; + alt_boot = DFU_ALT_BOOT_EMMC_KVIM3; return alt_boot; } 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) |