diff options
| author | Tom Rini <[email protected]> | 2023-11-08 19:12:25 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-22 19:53:39 -0500 |
| commit | f4449038f68578be553cc120360344f0d72b7a0a (patch) | |
| tree | 9f0e9450dbe6fed0539cc72fae0b21cdb769e205 /net/Kconfig | |
| parent | 6df4e7b50a139dbd4ebb24e15d84bb363d1b0fe0 (diff) | |
net: Make NET imply NETDEVICES
Normally, when NET is enabled, CMD_NET will then be enabled and in turn
NETDEVICES will (likely) be enabled via imply. However, if we disable
CMDLINE in a defconfig we now no longer get CMD_NET enabling NETDEVICES
for us. This suggestion (as an imply is) really isn't about the network
commands but network itself and is a legacy of how intertwined
NET/CMD_NET were historically. Move this over to the NET entry instead
where it is a more logical fit.
Reported-by: Simon Glass <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Tested-by: Simon Glass <[email protected]>
Diffstat (limited to 'net/Kconfig')
| -rw-r--r-- | net/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/Kconfig b/net/Kconfig index 4215889127c..8c80b3a6c67 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -5,6 +5,7 @@ menuconfig NET bool "Networking support" default y + imply NETDEVICES if NET |
