From: Joe Hershberger Date: Fri, 13 Apr 2018 20:26:33 +0000 (-0500) Subject: net: Move the DHCP command below the BOOTP command X-Git-Tag: v2018.05-rc2~10^2~8 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e88b2563ddab6fcee8bf0be40811c8bc6b1ccadb;p=u-boot net: Move the DHCP command below the BOOTP command Move DHCP to directly follow BOOTP so that Kconfig can show the dependency as a hierarchy. Signed-off-by: Joe Hershberger Reviewed-by: Chris Packham Reviewed-by: Duncan Hare --- diff --git a/cmd/Kconfig b/cmd/Kconfig index 7f47819e77..a89d5acf19 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1035,6 +1035,12 @@ config CMD_BOOTP help bootp - boot image via network using BOOTP/TFTP protocol +config CMD_DHCP + bool "dhcp" + depends on CMD_BOOTP + help + Boot image via network using DHCP/TFTP protocol + config BOOTP_BOOTPATH bool "Enable BOOTP BOOTPATH" depends on CMD_BOOTP @@ -1108,12 +1114,6 @@ config CMD_RARP help Boot image via network using RARP/TFTP protocol -config CMD_DHCP - bool "dhcp" - depends on CMD_BOOTP - help - Boot image via network using DHCP/TFTP protocol - config CMD_NFS bool "nfs" default y