diff mbox series

[U-Boot,v2,07/11] net: Improve BOOTP PXE config option

Message ID 1523651200-31456-8-git-send-email-joe.hershberger@ni.com
State Accepted
Commit 2b9f486
Delegated to: Joe Hershberger
Headers show
Series net: Clean up the menus and dependencies among commands and options | expand

Commit Message

Joe Hershberger April 13, 2018, 8:26 p.m. UTC
Improve the documentation and correct the listed dependencies.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>

Reviewed-by: Duncan Hare <dh@synoia.com>
---

Changes in v2: None

 cmd/Kconfig | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

Comments

Joe Hershberger April 15, 2018, 4:17 a.m. UTC | #1
Hi Joe,

https://patchwork.ozlabs.org/patch/898094/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git

Thanks!
-Joe
diff mbox series

Patch

diff --git a/cmd/Kconfig b/cmd/Kconfig
index 43efe7d..0d077bd 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1082,12 +1082,14 @@  config BOOTP_SUBNETMASK
 	depends on CMD_BOOTP
 
 config BOOTP_PXE
-	bool "Enable BOOTP PXE"
-	depends on CMD_BOOTP
+	bool "Send PXE client arch to BOOTP/DHCP server"
+	depends on CMD_BOOTP && CMD_PXE
+	help
+	  Supported for ARM, ARM64, and x86 for now.
 
 config BOOTP_PXE_CLIENTARCH
 	hex
-	depends on CMD_BOOTP
+	depends on BOOTP_PXE
 	default 0x16 if ARM64
 	default 0x15 if ARM
 	default 0 if X86