aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorJoe Hershberger <joe.hershberger@ni.com>2018-04-13 15:26:33 -0500
committerJoe Hershberger <joe.hershberger@ni.com>2018-04-13 15:48:09 -0500
commite88b2563ddab6fcee8bf0be40811c8bc6b1ccadb (patch)
tree8542a52556f54e7ea4843fcb8953567fe28bef65 /cmd
parent92fa44d58f4e5433eeb5fe6a56f2b6faf5e84c20 (diff)
downloadu-boot-e88b2563ddab6fcee8bf0be40811c8bc6b1ccadb.zip
u-boot-e88b2563ddab6fcee8bf0be40811c8bc6b1ccadb.tar.gz
u-boot-e88b2563ddab6fcee8bf0be40811c8bc6b1ccadb.tar.bz2
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 <joe.hershberger@ni.com> Reviewed-by: Chris Packham <judge.packham@gmail.com> Reviewed-by: Duncan Hare <dh@synoia.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig12
1 files changed, 6 insertions, 6 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 7f47819..a89d5ac 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