From ee978f4d4b41b309eccaf05e0912fd3f729e44ad Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Mon, 20 Apr 2020 15:08:30 +0200 Subject: [PATCH] tizen: replace NFSdown with generic Tizen Download utility (NFS and USB) Tizen Download utility provides replacement for nfsdown and usbdown commands, implemented on top of the generic u-boot's DFU framework. It allows to flash any entity defined in dfu_alt_info, not only the ones hardcoded in the mentioned commands. This is useful for flashing only the selected images/entities. Signed-off-by: Marek Szyprowski Change-Id: Ic4275302442b84dc96a2d7d31188eb3d7143e7ec --- configs/rpi_3_32b_defconfig | 3 ++- configs/rpi_3_defconfig | 3 ++- configs/rpi_4_32b_defconfig | 3 +-- configs/rpi_4_defconfig | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/configs/rpi_3_32b_defconfig b/configs/rpi_3_32b_defconfig index ac615e4d19..3756c41bcf 100644 --- a/configs/rpi_3_32b_defconfig +++ b/configs/rpi_3_32b_defconfig @@ -17,13 +17,14 @@ CONFIG_SYS_PROMPT="U-Boot> " CONFIG_CMD_GPIO=y CONFIG_CMD_MMC=y CONFIG_CMD_USB=y -CONFIG_CMD_NFS_DOWNLOAD=y +CONFIG_CMD_TIZEN_DOWNLOAD=y CONFIG_CMD_FS_UUID=y CONFIG_OF_EMBED=y CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y CONFIG_TFTP_TSIZE=y +CONFIG_DFU_MMC=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_BCM2835=y CONFIG_PHYLIB=y diff --git a/configs/rpi_3_defconfig b/configs/rpi_3_defconfig index b95e60252d..aab83800d2 100644 --- a/configs/rpi_3_defconfig +++ b/configs/rpi_3_defconfig @@ -17,12 +17,14 @@ CONFIG_SYS_PROMPT="U-Boot> " CONFIG_CMD_GPIO=y CONFIG_CMD_MMC=y CONFIG_CMD_USB=y +CONFIG_CMD_TIZEN_DOWNLOAD=y CONFIG_CMD_FS_UUID=y CONFIG_OF_EMBED=y CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y CONFIG_TFTP_TSIZE=y +CONFIG_DFU_MMC=y CONFIG_MMC_SDHCI=y CONFIG_MMC_SDHCI_BCM2835=y CONFIG_MMC_BCM2835=y @@ -46,5 +48,4 @@ CONFIG_SYS_WHITE_ON_BLACK=y CONFIG_CONSOLE_SCROLL_LINES=10 CONFIG_PHYS_TO_BUS=y CONFIG_OF_LIBFDT_OVERLAY=y -CONFIG_CMD_NFS_DOWNLOAD=y CONFIG_CMD_TIME=y diff --git a/configs/rpi_4_32b_defconfig b/configs/rpi_4_32b_defconfig index 13f169b3dd..9a46c13128 100644 --- a/configs/rpi_4_32b_defconfig +++ b/configs/rpi_4_32b_defconfig @@ -19,8 +19,7 @@ CONFIG_CMD_GPIO=y CONFIG_CMD_MMC=y CONFIG_CMD_PCI=y CONFIG_CMD_USB=y -CONFIG_CMD_USB_MASS_STORAGE=y -CONFIG_CMD_NFS_DOWNLOAD=y +CONFIG_CMD_TIZEN_DOWNLOAD=y CONFIG_CMD_FS_UUID=y CONFIG_OF_BOARD=y CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" diff --git a/configs/rpi_4_defconfig b/configs/rpi_4_defconfig index 5b59e1c8c0..d270951367 100644 --- a/configs/rpi_4_defconfig +++ b/configs/rpi_4_defconfig @@ -18,7 +18,7 @@ CONFIG_CMD_GPIO=y CONFIG_CMD_MMC=y CONFIG_CMD_PCI=y CONFIG_CMD_USB=y -CONFIG_CMD_NFS_DOWNLOAD=y +CONFIG_CMD_TIZEN_DOWNLOAD=y CONFIG_CMD_FS_UUID=y CONFIG_OF_BOARD=y CONFIG_ENV_FAT_DEVICE_AND_PART="0:1" -- 2.34.1