From: Seung-Woo Kim Date: Wed, 26 Jul 2017 02:18:55 +0000 (+0900) Subject: tizen: add default dfu macros X-Git-Tag: submit/tizen/20191107.042334~120 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78dc241daa5db62ce8957613ff50bd1baa44cab5;p=platform%2Fkernel%2Fu-boot.git tizen: add default dfu macros There is CONFIG_SET_DFU_ALT_INFO, but CONFIG_DFU_ALT_BOOT_EMMC is not set, and it causes build error for usbdown and nfsdown commands. Add default dfu macros, CONFIG_DFU_ALT_BOOT_EMMC and CONFIG_DFU_ALT_BOOT_SD to tizen.h which is used odroid-u3 family and trats2 boards. The usbdown and nfsdown commands are only possible on odroid-u3 family boards, so default dfu macros are set as odroid dfu macro. Change-Id: Ic6ea1549492a073b6434e20f7ffcf329475f6670 Signed-off-by: Seung-Woo Kim --- diff --git a/include/configs/tizen.h b/include/configs/tizen.h index 9d2ed13ce3..a81c0210ea 100644 --- a/include/configs/tizen.h +++ b/include/configs/tizen.h @@ -93,4 +93,8 @@ #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG #define CONFIG_MISC_INIT_R +/* Default ALT from ODROID */ +#define CONFIG_DFU_ALT_BOOT_EMMC DFU_ALT_BOOT_EMMC_ODROID +#define CONFIG_DFU_ALT_BOOT_SD DFU_ALT_BOOT_SD_ODROID + #endif /* __CONFIG_H */