All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/5] Disable CONFIG_NET flag for STM32F4 and STM32H7 boards
@ 2019-09-17  8:09 Patrice Chotard
  2019-09-17  8:09 ` [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag Patrice Chotard
                   ` (4 more replies)
  0 siblings, 5 replies; 16+ messages in thread
From: Patrice Chotard @ 2019-09-17  8:09 UTC (permalink / raw)
  To: u-boot


All STM32F4 and STM32H7 boards have CONFIG_NET flags enable in
their defconfig whereas network support was never added. Simply
disable CONFIG_NET to avoid following compilation warning:

===================== WARNING ======================
This board does not use CONFIG_DM_ETH (Driver Model
for Ethernet drivers). Please update the board to use
CONFIG_DM_ETH before the v2020.07 release. Failure to
update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================


Patrice Chotard (5):
  configs: stm32f429-discovery: Disable CONFIG_NET flag
  configs: stm32f429-evaluation: Disable CONFIG_NET flag
  configs: stm32f469-discovery: Disable CONFIG_NET flag
  configs: stm32h743-disco: Disable CONFIG_NET flag
  configs: stm32h743-eval: Disable CONFIG_NET flag

 configs/stm32f429-discovery_defconfig  | 1 +
 configs/stm32f429-evaluation_defconfig | 2 +-
 configs/stm32f469-discovery_defconfig  | 2 +-
 configs/stm32h743-disco_defconfig      | 1 +
 configs/stm32h743-eval_defconfig       | 1 +
 5 files changed, 5 insertions(+), 2 deletions(-)

-- 
2.17.1

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag
  2019-09-17  8:09 [U-Boot] [PATCH 0/5] Disable CONFIG_NET flag for STM32F4 and STM32H7 boards Patrice Chotard
@ 2019-09-17  8:09 ` Patrice Chotard
  2019-10-11 15:14   ` Patrick DELAUNAY
  2019-10-23  9:51   ` Patrick DELAUNAY
  2019-09-17  8:09 ` [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: " Patrice Chotard
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 16+ messages in thread
From: Patrice Chotard @ 2019-09-17  8:09 UTC (permalink / raw)
  To: u-boot

Network support was never added on this board, disable
CONFIG_NET flag to avoid following warning:

===================== WARNING ======================
This board does not use CONFIG_DM_ETH (Driver Model
for Ethernet drivers). Please update the board to use
CONFIG_DM_ETH before the v2020.07 release. Failure to
update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---

 configs/stm32f429-discovery_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/stm32f429-discovery_defconfig b/configs/stm32f429-discovery_defconfig
index 3c3501566c..45fdb9d2ad 100644
--- a/configs/stm32f429-discovery_defconfig
+++ b/configs/stm32f429-discovery_defconfig
@@ -21,5 +21,6 @@ CONFIG_CMD_TIMER=y
 CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="stm32f429-disco"
 CONFIG_ENV_IS_IN_FLASH=y
+# CONFIG_NET is not set
 # CONFIG_MMC is not set
 CONFIG_MTD_NOR_FLASH=y
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: Disable CONFIG_NET flag
  2019-09-17  8:09 [U-Boot] [PATCH 0/5] Disable CONFIG_NET flag for STM32F4 and STM32H7 boards Patrice Chotard
  2019-09-17  8:09 ` [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag Patrice Chotard
@ 2019-09-17  8:09 ` Patrice Chotard
  2019-10-11 15:14   ` Patrick DELAUNAY
  2019-10-23  9:52   ` Patrick DELAUNAY
  2019-09-17  8:09 ` [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: " Patrice Chotard
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 16+ messages in thread
From: Patrice Chotard @ 2019-09-17  8:09 UTC (permalink / raw)
  To: u-boot

Network support was never added on this board, disable
CONFIG_NET flag to avoid following warning:

===================== WARNING ======================
This board does not use CONFIG_DM_ETH (Driver Model
for Ethernet drivers). Please update the board to use
CONFIG_DM_ETH before the v2020.07 release. Failure to
update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---

 configs/stm32f429-evaluation_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/stm32f429-evaluation_defconfig b/configs/stm32f429-evaluation_defconfig
index 51f587f629..2b118a0dff 100644
--- a/configs/stm32f429-evaluation_defconfig
+++ b/configs/stm32f429-evaluation_defconfig
@@ -17,12 +17,12 @@ CONFIG_CMD_GPT=y
 # CONFIG_RANDOM_UUID is not set
 CONFIG_CMD_MMC=y
 # CONFIG_CMD_SETEXPR is not set
-# CONFIG_CMD_MII is not set
 CONFIG_CMD_CACHE=y
 CONFIG_CMD_TIMER=y
 # CONFIG_ISO_PARTITION is not set
 CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="stm32429i-eval"
+# CONFIG_NET is not set
 CONFIG_DM_MMC=y
 CONFIG_ARM_PL180_MMCI=y
 CONFIG_MTD_NOR_FLASH=y
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: Disable CONFIG_NET flag
  2019-09-17  8:09 [U-Boot] [PATCH 0/5] Disable CONFIG_NET flag for STM32F4 and STM32H7 boards Patrice Chotard
  2019-09-17  8:09 ` [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag Patrice Chotard
  2019-09-17  8:09 ` [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: " Patrice Chotard
@ 2019-09-17  8:09 ` Patrice Chotard
  2019-10-11 15:15   ` Patrick DELAUNAY
  2019-10-23  9:52   ` Patrick DELAUNAY
  2019-09-17  8:09 ` [U-Boot] [PATCH 4/5] configs: stm32h743-disco: " Patrice Chotard
  2019-09-17  8:09 ` [U-Boot] [PATCH 5/5] configs: stm32h743-eval: " Patrice Chotard
  4 siblings, 2 replies; 16+ messages in thread
From: Patrice Chotard @ 2019-09-17  8:09 UTC (permalink / raw)
  To: u-boot

Network support was never added on this board, disable
CONFIG_NET flag to avoid following warning:

===================== WARNING ======================
This board does not use CONFIG_DM_ETH (Driver Model
for Ethernet drivers). Please update the board to use
CONFIG_DM_ETH before the v2020.07 release. Failure to
update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---

 configs/stm32f469-discovery_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configs/stm32f469-discovery_defconfig b/configs/stm32f469-discovery_defconfig
index dcd0697677..5cedb765d1 100644
--- a/configs/stm32f469-discovery_defconfig
+++ b/configs/stm32f469-discovery_defconfig
@@ -18,12 +18,12 @@ CONFIG_CMD_GPT=y
 CONFIG_CMD_MMC=y
 CONFIG_CMD_SF=y
 # CONFIG_CMD_SETEXPR is not set
-# CONFIG_CMD_MII is not set
 CONFIG_CMD_CACHE=y
 CONFIG_CMD_TIMER=y
 # CONFIG_ISO_PARTITION is not set
 CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="stm32f469-disco"
+# CONFIG_NET is not set
 CONFIG_DM_MMC=y
 CONFIG_ARM_PL180_MMCI=y
 CONFIG_MTD=y
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 4/5] configs: stm32h743-disco: Disable CONFIG_NET flag
  2019-09-17  8:09 [U-Boot] [PATCH 0/5] Disable CONFIG_NET flag for STM32F4 and STM32H7 boards Patrice Chotard
                   ` (2 preceding siblings ...)
  2019-09-17  8:09 ` [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: " Patrice Chotard
@ 2019-09-17  8:09 ` Patrice Chotard
  2019-10-11 15:15   ` Patrick DELAUNAY
  2019-10-23  9:53   ` Patrick DELAUNAY
  2019-09-17  8:09 ` [U-Boot] [PATCH 5/5] configs: stm32h743-eval: " Patrice Chotard
  4 siblings, 2 replies; 16+ messages in thread
From: Patrice Chotard @ 2019-09-17  8:09 UTC (permalink / raw)
  To: u-boot

Network support was never added on this board, disable
CONFIG_NET flag to avoid following warning:

===================== WARNING ======================
This board does not use CONFIG_DM_ETH (Driver Model
for Ethernet drivers). Please update the board to use
CONFIG_DM_ETH before the v2020.07 release. Failure to
update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---

 configs/stm32h743-disco_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/stm32h743-disco_defconfig b/configs/stm32h743-disco_defconfig
index 1691c2ea19..ea4c128430 100644
--- a/configs/stm32h743-disco_defconfig
+++ b/configs/stm32h743-disco_defconfig
@@ -24,6 +24,7 @@ CONFIG_CMD_EXT4_WRITE=y
 # CONFIG_ISO_PARTITION is not set
 CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="stm32h743i-disco"
+# CONFIG_NET is not set
 CONFIG_DM_MMC=y
 CONFIG_STM32_SDMMC2=y
 # CONFIG_PINCTRL_FULL is not set
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 5/5] configs: stm32h743-eval: Disable CONFIG_NET flag
  2019-09-17  8:09 [U-Boot] [PATCH 0/5] Disable CONFIG_NET flag for STM32F4 and STM32H7 boards Patrice Chotard
                   ` (3 preceding siblings ...)
  2019-09-17  8:09 ` [U-Boot] [PATCH 4/5] configs: stm32h743-disco: " Patrice Chotard
@ 2019-09-17  8:09 ` Patrice Chotard
  2019-10-11 15:16   ` Patrick DELAUNAY
  2019-10-23  9:53   ` Patrick DELAUNAY
  4 siblings, 2 replies; 16+ messages in thread
From: Patrice Chotard @ 2019-09-17  8:09 UTC (permalink / raw)
  To: u-boot

Network support was never added on this board, disable
CONFIG_NET flag to avoid following warning:

===================== WARNING ======================
This board does not use CONFIG_DM_ETH (Driver Model
for Ethernet drivers). Please update the board to use
CONFIG_DM_ETH before the v2020.07 release. Failure to
update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---

 configs/stm32h743-eval_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/stm32h743-eval_defconfig b/configs/stm32h743-eval_defconfig
index e1c6cbf503..cacfdb5eb2 100644
--- a/configs/stm32h743-eval_defconfig
+++ b/configs/stm32h743-eval_defconfig
@@ -24,6 +24,7 @@ CONFIG_CMD_EXT4_WRITE=y
 # CONFIG_ISO_PARTITION is not set
 CONFIG_OF_CONTROL=y
 CONFIG_DEFAULT_DEVICE_TREE="stm32h743i-eval"
+# CONFIG_NET is not set
 CONFIG_DM_MMC=y
 CONFIG_STM32_SDMMC2=y
 # CONFIG_PINCTRL_FULL is not set
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag Patrice Chotard
@ 2019-10-11 15:14   ` Patrick DELAUNAY
  2019-10-23  9:51   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-11 15:14 UTC (permalink / raw)
  To: u-boot

Hi Patrice,

> From: Patrice CHOTARD <patrice.chotard@st.com>
> Sent: mardi 17 septembre 2019 10:10
> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please
> update the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================
> 

Acked-by: Patrick Delaunay <patrick.delaunay@st.com>

> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---
> 
>  configs/stm32f429-discovery_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/stm32f429-discovery_defconfig b/configs/stm32f429-
> discovery_defconfig
> index 3c3501566c..45fdb9d2ad 100644
> --- a/configs/stm32f429-discovery_defconfig
> +++ b/configs/stm32f429-discovery_defconfig
> @@ -21,5 +21,6 @@ CONFIG_CMD_TIMER=y
>  CONFIG_OF_CONTROL=y
>  CONFIG_DEFAULT_DEVICE_TREE="stm32f429-disco"
>  CONFIG_ENV_IS_IN_FLASH=y
> +# CONFIG_NET is not set
>  # CONFIG_MMC is not set
>  CONFIG_MTD_NOR_FLASH=y
> --
> 2.17.1

Regards

Patrick

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: " Patrice Chotard
@ 2019-10-11 15:14   ` Patrick DELAUNAY
  2019-10-23  9:52   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-11 15:14 UTC (permalink / raw)
  To: u-boot

Hi,

> From: Patrice CHOTARD <patrice.chotard@st.com>
> Sent: mardi 17 septembre 2019 10:10
> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please
> update the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================
> 

Acked-by: Patrick Delaunay <patrick.delaunay@st.com>

> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---
> 
>  configs/stm32f429-evaluation_defconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configs/stm32f429-evaluation_defconfig b/configs/stm32f429-
> evaluation_defconfig
> index 51f587f629..2b118a0dff 100644
> --- a/configs/stm32f429-evaluation_defconfig
> +++ b/configs/stm32f429-evaluation_defconfig
> @@ -17,12 +17,12 @@ CONFIG_CMD_GPT=y
>  # CONFIG_RANDOM_UUID is not set
>  CONFIG_CMD_MMC=y
>  # CONFIG_CMD_SETEXPR is not set
> -# CONFIG_CMD_MII is not set
>  CONFIG_CMD_CACHE=y
>  CONFIG_CMD_TIMER=y
>  # CONFIG_ISO_PARTITION is not set
>  CONFIG_OF_CONTROL=y
>  CONFIG_DEFAULT_DEVICE_TREE="stm32429i-eval"
> +# CONFIG_NET is not set
>  CONFIG_DM_MMC=y
>  CONFIG_ARM_PL180_MMCI=y
>  CONFIG_MTD_NOR_FLASH=y
> --
> 2.17.1

Regards 

Patrick

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: " Patrice Chotard
@ 2019-10-11 15:15   ` Patrick DELAUNAY
  2019-10-23  9:52   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-11 15:15 UTC (permalink / raw)
  To: u-boot

Hi,

> From: Patrice CHOTARD <patrice.chotard@st.com>
> Sent: mardi 17 septembre 2019 10:10
> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please
> update the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================

Acked-by: Patrick Delaunay <patrick.delaunay@st.com>

> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---
> 
>  configs/stm32f469-discovery_defconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configs/stm32f469-discovery_defconfig b/configs/stm32f469-
> discovery_defconfig
> index dcd0697677..5cedb765d1 100644
> --- a/configs/stm32f469-discovery_defconfig
> +++ b/configs/stm32f469-discovery_defconfig
> @@ -18,12 +18,12 @@ CONFIG_CMD_GPT=y
>  CONFIG_CMD_MMC=y
>  CONFIG_CMD_SF=y
>  # CONFIG_CMD_SETEXPR is not set
> -# CONFIG_CMD_MII is not set
>  CONFIG_CMD_CACHE=y
>  CONFIG_CMD_TIMER=y
>  # CONFIG_ISO_PARTITION is not set
>  CONFIG_OF_CONTROL=y
>  CONFIG_DEFAULT_DEVICE_TREE="stm32f469-disco"
> +# CONFIG_NET is not set
>  CONFIG_DM_MMC=y
>  CONFIG_ARM_PL180_MMCI=y
>  CONFIG_MTD=y
> --
> 2.17.1

Regards

Patrick

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 4/5] configs: stm32h743-disco: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 4/5] configs: stm32h743-disco: " Patrice Chotard
@ 2019-10-11 15:15   ` Patrick DELAUNAY
  2019-10-23  9:53   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-11 15:15 UTC (permalink / raw)
  To: u-boot

Hi Patrice,

> From: Patrice CHOTARD <patrice.chotard@st.com>
> Sent: mardi 17 septembre 2019 10:10
> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please
> update the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================


Acked-by: Patrick Delaunay <patrick.delaunay@st.com>

 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---
> 
>  configs/stm32h743-disco_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/stm32h743-disco_defconfig b/configs/stm32h743-
> disco_defconfig
> index 1691c2ea19..ea4c128430 100644
> --- a/configs/stm32h743-disco_defconfig
> +++ b/configs/stm32h743-disco_defconfig
> @@ -24,6 +24,7 @@ CONFIG_CMD_EXT4_WRITE=y  #
> CONFIG_ISO_PARTITION is not set  CONFIG_OF_CONTROL=y
> CONFIG_DEFAULT_DEVICE_TREE="stm32h743i-disco"
> +# CONFIG_NET is not set
>  CONFIG_DM_MMC=y
>  CONFIG_STM32_SDMMC2=y
>  # CONFIG_PINCTRL_FULL is not set
> --
> 2.17.1

Regards

Patrick

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 5/5] configs: stm32h743-eval: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 5/5] configs: stm32h743-eval: " Patrice Chotard
@ 2019-10-11 15:16   ` Patrick DELAUNAY
  2019-10-23  9:53   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-11 15:16 UTC (permalink / raw)
  To: u-boot

Hi Patrice,

> From: Patrice CHOTARD <patrice.chotard@st.com>
> Sent: mardi 17 septembre 2019 10:10
> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please
> update the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================


Acked-by: Patrick Delaunay <patrick.delaunay@st.com>


> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---
> 
>  configs/stm32h743-eval_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/stm32h743-eval_defconfig b/configs/stm32h743-eval_defconfig
> index e1c6cbf503..cacfdb5eb2 100644
> --- a/configs/stm32h743-eval_defconfig
> +++ b/configs/stm32h743-eval_defconfig
> @@ -24,6 +24,7 @@ CONFIG_CMD_EXT4_WRITE=y  #
> CONFIG_ISO_PARTITION is not set  CONFIG_OF_CONTROL=y
> CONFIG_DEFAULT_DEVICE_TREE="stm32h743i-eval"
> +# CONFIG_NET is not set
>  CONFIG_DM_MMC=y
>  CONFIG_STM32_SDMMC2=y
>  # CONFIG_PINCTRL_FULL is not set
> --
> 2.17.1

Regards

Patrick

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag Patrice Chotard
  2019-10-11 15:14   ` Patrick DELAUNAY
@ 2019-10-23  9:51   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-23  9:51 UTC (permalink / raw)
  To: u-boot

Hi,

> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please update
> the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================
> 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---

Applied to u-boot-stm32/master, thanks!

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: " Patrice Chotard
  2019-10-11 15:14   ` Patrick DELAUNAY
@ 2019-10-23  9:52   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-23  9:52 UTC (permalink / raw)
  To: u-boot

> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please update
> the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================
> 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---

Applied to u-boot-stm32/master, thanks!

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: " Patrice Chotard
  2019-10-11 15:15   ` Patrick DELAUNAY
@ 2019-10-23  9:52   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-23  9:52 UTC (permalink / raw)
  To: u-boot

> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please update
> the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================
> 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---

Applied to u-boot-stm32/master, thanks!

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 4/5] configs: stm32h743-disco: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 4/5] configs: stm32h743-disco: " Patrice Chotard
  2019-10-11 15:15   ` Patrick DELAUNAY
@ 2019-10-23  9:53   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-23  9:53 UTC (permalink / raw)
  To: u-boot

> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please update
> the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================
> 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---

Applied to u-boot-stm32/master, thanks!

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [U-Boot] [PATCH 5/5] configs: stm32h743-eval: Disable CONFIG_NET flag
  2019-09-17  8:09 ` [U-Boot] [PATCH 5/5] configs: stm32h743-eval: " Patrice Chotard
  2019-10-11 15:16   ` Patrick DELAUNAY
@ 2019-10-23  9:53   ` Patrick DELAUNAY
  1 sibling, 0 replies; 16+ messages in thread
From: Patrick DELAUNAY @ 2019-10-23  9:53 UTC (permalink / raw)
  To: u-boot

> 
> Network support was never added on this board, disable CONFIG_NET flag to
> avoid following warning:
> 
> ===================== WARNING ====================== This board
> does not use CONFIG_DM_ETH (Driver Model for Ethernet drivers). Please update
> the board to use CONFIG_DM_ETH before the v2020.07 release. Failure to
> update by the deadline may result in board removal.
> See doc/driver-model/migration.rst for more info.
> ====================================================
> 
> Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
> ---

Applied to u-boot-stm32/master, thanks!

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2019-10-23  9:53 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-17  8:09 [U-Boot] [PATCH 0/5] Disable CONFIG_NET flag for STM32F4 and STM32H7 boards Patrice Chotard
2019-09-17  8:09 ` [U-Boot] [PATCH 1/5] configs: stm32f429-discovery: Disable CONFIG_NET flag Patrice Chotard
2019-10-11 15:14   ` Patrick DELAUNAY
2019-10-23  9:51   ` Patrick DELAUNAY
2019-09-17  8:09 ` [U-Boot] [PATCH 2/5] configs: stm32f429-evaluation: " Patrice Chotard
2019-10-11 15:14   ` Patrick DELAUNAY
2019-10-23  9:52   ` Patrick DELAUNAY
2019-09-17  8:09 ` [U-Boot] [PATCH 3/5] configs: stm32f469-discovery: " Patrice Chotard
2019-10-11 15:15   ` Patrick DELAUNAY
2019-10-23  9:52   ` Patrick DELAUNAY
2019-09-17  8:09 ` [U-Boot] [PATCH 4/5] configs: stm32h743-disco: " Patrice Chotard
2019-10-11 15:15   ` Patrick DELAUNAY
2019-10-23  9:53   ` Patrick DELAUNAY
2019-09-17  8:09 ` [U-Boot] [PATCH 5/5] configs: stm32h743-eval: " Patrice Chotard
2019-10-11 15:16   ` Patrick DELAUNAY
2019-10-23  9:53   ` Patrick DELAUNAY

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.