From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Lechner Date: Mon, 11 Jan 2021 13:24:46 -0600 Subject: [PATCH 3/4] configs: legoev3: disable CONFIG_NET In-Reply-To: <20210111192447.1626473-1-david@lechnology.com> References: <20210111192447.1626473-1-david@lechnology.com> Message-ID: <20210111192447.1626473-4-david@lechnology.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This disables the CONFIG_NET setting for LEGO MINDSTORMS EV3. This board does not have any built-in networking, so it does not make sense to enable this feature. This also fixes the 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: David Lechner --- configs/legoev3_defconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/legoev3_defconfig b/configs/legoev3_defconfig index fb0c4dc951..3dfbdf2b2e 100644 --- a/configs/legoev3_defconfig +++ b/configs/legoev3_defconfig @@ -21,13 +21,13 @@ CONFIG_CMD_MX_CYCLIC=y CONFIG_CMD_MMC=y CONFIG_CMD_SPI=y # CONFIG_CMD_SETEXPR is not set -# CONFIG_CMD_NET is not set CONFIG_CMD_EXT4=y CONFIG_CMD_FAT=y CONFIG_CMD_DIAG=y CONFIG_OF_CONTROL=y CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_VERSION_VARIABLE=y +# CONFIG_NET is not set CONFIG_DM=y # CONFIG_DM_DEVICE_REMOVE is not set CONFIG_SYS_I2C_DAVINCI=y @@ -41,3 +41,4 @@ CONFIG_SYS_NS16550=y CONFIG_SPI=y CONFIG_DM_SPI=y CONFIG_DAVINCI_SPI=y +CONFIG_REGEX=y -- 2.25.1