
24 Jun
2016
24 Jun
'16
11:21 a.m.
Hi Lukasz
/* USB Device Firmware Update support */ #define CONFIG_USB_FUNCTION_DFU #define CONFIG_DFU_RAM
-#define CONFIG_DFU_MMC -#define CONFIG_DFU_RAM
Please correct me if I am wrong, but from this patch it seems like you disable MMC and RAM DFU support in the fully-fledge u-boot on your dra7xx board. Is this intentional?
Actually, for SPL-DFU, I want to enable DFU_RAM in order to reduce the foot print. Then the user must rebuild full fledge u-boot without SPL-DFU and load to RAM.
#define CONFIG_DFU_SF +#ifndef CONFIG_SPL_DFU +#define CONFIG_DFU_MMC +#endif
Here I have included DFU_MMC if SPL_DFU (from menuconfig) is not defined.
Regards Ravi