diff options
author | Fabio Estevam <festevam@gmail.com> | 2019-10-23 11:08:53 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-01-16 21:02:56 +0100 |
commit | d2e38f5a9b740307d8f4ed1ca4594121e2fae6e8 (patch) | |
tree | bd6cd9ba8efac5e30bc27cca3a72cffc2eb9bdd7 /configs/mx7ulp_evk_defconfig | |
parent | 92329e2413f444d1edf29bab66aefccfd782e0a7 (diff) | |
download | u-boot-d2e38f5a9b740307d8f4ed1ca4594121e2fae6e8.tar.gz |
mx7ulp_evk: Disable CONFIG_NET
Currently the following build warning is seen:
===================== 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.
===================================================
Since the mx7ulp-evk board does not have networking support, explicitly
disable networking.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'configs/mx7ulp_evk_defconfig')
-rw-r--r-- | configs/mx7ulp_evk_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/mx7ulp_evk_defconfig b/configs/mx7ulp_evk_defconfig index 3cf90155d1..8c17477872 100644 --- a/configs/mx7ulp_evk_defconfig +++ b/configs/mx7ulp_evk_defconfig @@ -19,6 +19,7 @@ CONFIG_CMD_FAT=y CONFIG_OF_CONTROL=y CONFIG_DEFAULT_DEVICE_TREE="imx7ulp-evk" CONFIG_ENV_IS_IN_MMC=y +# CONFIG_NET is not set CONFIG_SYS_RELOC_GD_ENV_ADDR=y CONFIG_DM=y CONFIG_DM_GPIO=y |