[PATCH 6/6] boot: remove NO_NET use

Ilias Apalodimas ilias.apalodimas at linaro.org
Tue Apr 21 07:16:14 CEST 2026


On Mon, 20 Apr 2026 at 14:37, Quentin Schulz <foss+uboot at 0leil.net> wrote:
>
> From: Quentin Schulz <quentin.schulz at cherry.de>
>
> NO_NET is now a transitional symbol which may eventually be removed. Its
> meaning is the opposite of the new meaning of NET (that is, any
> networking stack).
>
> Update the symbol dependency by using NET instead of !NO_NET.
>
> Signed-off-by: Quentin Schulz <quentin.schulz at cherry.de>

Reviewed-by: Ilias Apalodimas <ilias.apalodimas at linaro.org>

> ---
>  boot/Kconfig | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/boot/Kconfig b/boot/Kconfig
> index be6bb6d4535..ae6f09a6ede 100644
> --- a/boot/Kconfig
> +++ b/boot/Kconfig
> @@ -431,12 +431,12 @@ config BOOT_DEFAULTS_CMDS
>         select CMD_FAT
>         select CMD_FS_GENERIC
>         select CMD_PART if PARTITIONS
> -       select CMD_DHCP if CMD_NET && !NO_NET
> -       select CMD_PING if CMD_NET && !NO_NET
> -       select CMD_PXE if CMD_NET && !NO_NET
> +       select CMD_DHCP if CMD_NET && NET
> +       select CMD_PING if CMD_NET && NET
> +       select CMD_PXE if CMD_NET && NET
>         select CMD_BOOTI if ARM64 && LMB
>         select CMD_BOOTZ if ARM && !ARM64 && LMB
> -       imply CMD_MII if CMD_NET && !NO_NET
> +       imply CMD_MII if CMD_NET && NET
>
>  config BOOT_DEFAULTS
>         bool  # Common defaults for standard boot and distroboot
>
> --
> 2.53.0
>


More information about the U-Boot mailing list