U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Patrice CHOTARD <patrice.chotard@st.com>
To: u-boot@lists.denx.de
Subject: [Uboot-stm32] [PATCH 1/2] configs: migrate CONFIG_SET_DFU_ALT_INFO to defconfigs
Date: Mon, 27 Apr 2020 08:46:09 +0000	[thread overview]
Message-ID: <aca9830b-6751-3d92-44d4-42ba186c2fe3@st.com> (raw)
In-Reply-To: <20200226092842.5413-1-patrick.delaunay@st.com>

Hi

Just a kind reminder to no forget this series which is on ML since a while.

Thanks

Patrice

On 2/26/20 10:28 AM, Patrick Delaunay wrote:
> Move CONFIG_SET_DFU_ALT_INFO into Kconfig done by moveconfig.py.
>
> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
> ---
>
>  configs/odroid-xu3_defconfig            | 1 +
>  configs/odroid_defconfig                | 1 +
>  configs/stm32mp15_basic_defconfig       | 1 +
>  configs/stm32mp15_dhcom_basic_defconfig | 1 +
>  configs/stm32mp15_optee_defconfig       | 1 +
>  configs/stm32mp15_trusted_defconfig     | 1 +
>  drivers/dfu/Kconfig                     | 5 +++++
>  include/configs/odroid.h                | 1 -
>  include/configs/odroid_xu3.h            | 1 -
>  include/configs/stm32mp1.h              | 2 --
>  scripts/config_whitelist.txt            | 1 -
>  11 files changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/configs/odroid-xu3_defconfig b/configs/odroid-xu3_defconfig
> index 2e982e1b53..1a2183ce19 100644
> --- a/configs/odroid-xu3_defconfig
> +++ b/configs/odroid-xu3_defconfig
> @@ -39,6 +39,7 @@ CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
>  CONFIG_ADC=y
>  CONFIG_ADC_EXYNOS=y
>  CONFIG_DFU_MMC=y
> +CONFIG_SET_DFU_ALT_INFO=y
>  CONFIG_SUPPORT_EMMC_BOOT=y
>  CONFIG_MMC_DW=y
>  CONFIG_MTD=y
> diff --git a/configs/odroid_defconfig b/configs/odroid_defconfig
> index e4392e477e..345cc3b940 100644
> --- a/configs/odroid_defconfig
> +++ b/configs/odroid_defconfig
> @@ -40,6 +40,7 @@ CONFIG_DEFAULT_DEVICE_TREE="exynos4412-odroid"
>  CONFIG_SYS_RELOC_GD_ENV_ADDR=y
>  CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG=y
>  CONFIG_DFU_MMC=y
> +CONFIG_SET_DFU_ALT_INFO=y
>  CONFIG_SYS_I2C_S3C24X0=y
>  CONFIG_MMC_DW=y
>  CONFIG_MMC_SDHCI=y
> diff --git a/configs/stm32mp15_basic_defconfig b/configs/stm32mp15_basic_defconfig
> index f691306800..4efb1bf9c2 100644
> --- a/configs/stm32mp15_basic_defconfig
> +++ b/configs/stm32mp15_basic_defconfig
> @@ -71,6 +71,7 @@ CONFIG_DFU_MMC=y
>  CONFIG_DFU_RAM=y
>  CONFIG_DFU_MTD=y
>  CONFIG_DFU_VIRT=y
> +CONFIG_SET_DFU_ALT_INFO=y
>  CONFIG_USB_FUNCTION_FASTBOOT=y
>  CONFIG_FASTBOOT_BUF_ADDR=0xC0000000
>  CONFIG_FASTBOOT_BUF_SIZE=0x02000000
> diff --git a/configs/stm32mp15_dhcom_basic_defconfig b/configs/stm32mp15_dhcom_basic_defconfig
> index 921dea242a..9b5e54748d 100644
> --- a/configs/stm32mp15_dhcom_basic_defconfig
> +++ b/configs/stm32mp15_dhcom_basic_defconfig
> @@ -70,6 +70,7 @@ CONFIG_SPL_BLOCK_CACHE=y
>  CONFIG_DFU_MMC=y
>  CONFIG_DFU_RAM=y
>  CONFIG_DFU_VIRT=y
> +CONFIG_SET_DFU_ALT_INFO=y
>  CONFIG_DM_HWSPINLOCK=y
>  CONFIG_HWSPINLOCK_STM32=y
>  CONFIG_DM_I2C=y
> diff --git a/configs/stm32mp15_optee_defconfig b/configs/stm32mp15_optee_defconfig
> index 521b24e2cb..54135b28aa 100644
> --- a/configs/stm32mp15_optee_defconfig
> +++ b/configs/stm32mp15_optee_defconfig
> @@ -58,6 +58,7 @@ CONFIG_DFU_MMC=y
>  CONFIG_DFU_RAM=y
>  CONFIG_DFU_MTD=y
>  CONFIG_DFU_VIRT=y
> +CONFIG_SET_DFU_ALT_INFO=y
>  CONFIG_USB_FUNCTION_FASTBOOT=y
>  CONFIG_FASTBOOT_BUF_ADDR=0xC0000000
>  CONFIG_FASTBOOT_BUF_SIZE=0x02000000
> diff --git a/configs/stm32mp15_trusted_defconfig b/configs/stm32mp15_trusted_defconfig
> index c8b328d01a..d7d0b6c296 100644
> --- a/configs/stm32mp15_trusted_defconfig
> +++ b/configs/stm32mp15_trusted_defconfig
> @@ -57,6 +57,7 @@ CONFIG_DFU_MMC=y
>  CONFIG_DFU_RAM=y
>  CONFIG_DFU_MTD=y
>  CONFIG_DFU_VIRT=y
> +CONFIG_SET_DFU_ALT_INFO=y
>  CONFIG_USB_FUNCTION_FASTBOOT=y
>  CONFIG_FASTBOOT_BUF_ADDR=0xC0000000
>  CONFIG_FASTBOOT_BUF_SIZE=0x02000000
> diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig
> index 174fb588a6..5d45d7d7c2 100644
> --- a/drivers/dfu/Kconfig
> +++ b/drivers/dfu/Kconfig
> @@ -81,5 +81,10 @@ config DFU_VIRT
>  	  used at board level to manage specific behavior
>  	  (OTP update for example).
>  
> +config SET_DFU_ALT_INFO
> +	bool "Dynamic set of DFU alternate information"
> +	help
> +	  This option allows to call the function set_dfu_alt_info to
> +	  dynamically build dfu_alt_info in board.
>  endif
>  endmenu
> diff --git a/include/configs/odroid.h b/include/configs/odroid.h
> index a7e2a3d9a2..4044365328 100644
> --- a/include/configs/odroid.h
> +++ b/include/configs/odroid.h
> @@ -64,7 +64,6 @@
>  	""PARTS_BOOT" part 0 1;" \
>  	""PARTS_ROOT" part 0 2\0" \
>  
> -#define CONFIG_SET_DFU_ALT_INFO
>  #define CONFIG_SET_DFU_ALT_BUF_LEN	(SZ_1K)
>  
>  #define CONFIG_DFU_ALT_BOOT_EMMC \
> diff --git a/include/configs/odroid_xu3.h b/include/configs/odroid_xu3.h
> index 47c30543f8..564319c231 100644
> --- a/include/configs/odroid_xu3.h
> +++ b/include/configs/odroid_xu3.h
> @@ -76,7 +76,6 @@
>  
>  /* Enable: board/samsung/common/misc.c to use set_dfu_alt_info() */
>  #define CONFIG_MISC_COMMON
> -#define CONFIG_SET_DFU_ALT_INFO
>  #define CONFIG_SET_DFU_ALT_BUF_LEN	(SZ_1K)
>  
>  /* Set soc_rev, soc_id, board_rev, board_name, fdtfile */
> diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h
> index 42717c167e..592638072a 100644
> --- a/include/configs/stm32mp1.h
> +++ b/include/configs/stm32mp1.h
> @@ -90,8 +90,6 @@
>  #define CONFIG_SYS_MTDPARTS_RUNTIME
>  #endif
>  
> -#define CONFIG_SET_DFU_ALT_INFO
> -
>  #ifdef CONFIG_DM_VIDEO
>  #define CONFIG_VIDEO_BMP_RLE8
>  #define CONFIG_BMP_16BPP
> diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt
> index 405c62e9be..85d55b182e 100644
> --- a/scripts/config_whitelist.txt
> +++ b/scripts/config_whitelist.txt
> @@ -1529,7 +1529,6 @@ CONFIG_SETUP_MEMORY_TAGS
>  CONFIG_SET_BIST
>  CONFIG_SET_BOOTARGS
>  CONFIG_SET_DFU_ALT_BUF_LEN
> -CONFIG_SET_DFU_ALT_INFO
>  CONFIG_SFIO
>  CONFIG_SF_DATAFLASH
>  CONFIG_SGI_IP28

  parent reply	other threads:[~2020-04-27  8:46 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-26  9:28 [PATCH 1/2] configs: migrate CONFIG_SET_DFU_ALT_INFO to defconfigs Patrick Delaunay
2020-02-26  9:28 ` [PATCH 2/2] configs: migrate CONFIG_SYS_MTDPARTS_RUNTIME " Patrick Delaunay
2020-04-14 10:08   ` [Uboot-stm32] " Patrice CHOTARD
2020-05-08 17:49   ` Tom Rini
2020-02-26  9:34 ` [PATCH 1/2] configs: migrate CONFIG_SET_DFU_ALT_INFO " Lukasz Majewski
2020-02-26 11:02   ` Jaehoon Chung
2020-04-27  8:46 ` Patrice CHOTARD [this message]
2020-05-08 17:49 ` Tom Rini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aca9830b-6751-3d92-44d4-42ba186c2fe3@st.com \
    --to=patrice.chotard@st.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox