[U-Boot] [PATCH] cmd:fastboot:Kconfig Enable FASTBOOT_FLASH_NAND for SUNXI_NAND devices

Encountered an issue where fastboot can't write to NAND on a CHIP_pro, the symbol was neither present in the board's config header, nor the Kconfig, this patch puts it in the Kconfig and defaults on when SUNXI_NAND is selected.
Signed-off-by: Ben Young computermouth@crunchbangplusplus.org ---
cmd/fastboot/Kconfig | 9 +++++++++ 1 file changed, 9 insertions(+)
diff --git a/cmd/fastboot/Kconfig b/cmd/fastboot/Kconfig index 214bbc23fc..a2afb809bb 100644 --- a/cmd/fastboot/Kconfig +++ b/cmd/fastboot/Kconfig @@ -81,6 +81,15 @@ config FASTBOOT_FLASH_MMC_DEV regarding the non-volatile storage device. Define this to the eMMC device that fastboot should use to store the image.
+config FASTBOOT_FLASH_NAND_DEV + int "Define FASTBOOT NAND FLASH default device" + depends on FASTBOOT_FLASH && NAND + default 0 if ARCH_SUNXI && NAND_SUNXI + help + The fastboot "flash" command requires additional information + regarding the non-volatile storage device. Define this to + the NAND device that fastboot should use to store the image. + config FASTBOOT_GPT_NAME string "Target name for updating GPT" depends on FASTBOOT_FLASH

On Fri, Oct 13, 2017 at 02:29:20PM -0700, Benjamin Young wrote:
Encountered an issue where fastboot can't write to NAND on a CHIP_pro, the symbol was neither present in the board's config header, nor the Kconfig, this patch puts it in the Kconfig and defaults on when SUNXI_NAND is selected.
Signed-off-by: Ben Young computermouth@crunchbangplusplus.org
Applied, thanks! Maxime
participants (2)
-
Benjamin Young
-
Maxime Ripard