
On Tue, 8 Dec 2020 at 00:14, Tom Rini trini@konsulko.com wrote:
On Sat, Dec 05, 2020 at 11:29:58AM +0100, Heinrich Schuchardt wrote:
On 11/26/20 7:41 PM, Sughosh Ganu wrote:
Add support for setting the default values for mtd partitions on the platform for the nor flash. This would be used for updating the firmware image using uefi capsule update with the dfu mtd backend driver.
Signed-off-by: Sughosh Ganu sughosh.ganu@linaro.org
board/emulation/qemu-arm/qemu-arm.c | 70
+++++++++++++++++++++++++++++
include/configs/qemu-arm.h | 7 +++ 2 files changed, 77 insertions(+)
diff --git a/board/emulation/qemu-arm/qemu-arm.c
b/board/emulation/qemu-arm/qemu-arm.c
index b3d5b3d5c2..d5ed3eebaf 100644 --- a/board/emulation/qemu-arm/qemu-arm.c +++ b/board/emulation/qemu-arm/qemu-arm.c
[snip]
+#if defined(CONFIG_EFI_CAPSULE_FIRMWARE_MANAGEMENT) +#define CONFIG_SYS_MTDPARTS_RUNTIME +#endif
This symbol is in Kconfig and needs to be enabled that way.
Will make the necessary change in the next version. Thanks.
-sughosh