Commit 2b9f486bf58b52fc6b2c53245c6a3a509b48524f

Authored by Joe Hershberger
1 parent 80449c032c

net: Improve BOOTP PXE config option

Improve the documentation and correct the listed dependencies.

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

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

Showing 1 changed file with 5 additions and 3 deletions Side-by-side Diff

... ... @@ -1082,12 +1082,14 @@
1082 1082 depends on CMD_BOOTP
1083 1083  
1084 1084 config BOOTP_PXE
1085   - bool "Enable BOOTP PXE"
1086   - depends on CMD_BOOTP
  1085 + bool "Send PXE client arch to BOOTP/DHCP server"
  1086 + depends on CMD_BOOTP && CMD_PXE
  1087 + help
  1088 + Supported for ARM, ARM64, and x86 for now.
1087 1089  
1088 1090 config BOOTP_PXE_CLIENTARCH
1089 1091 hex
1090   - depends on CMD_BOOTP
  1092 + depends on BOOTP_PXE
1091 1093 default 0x16 if ARM64
1092 1094 default 0x15 if ARM
1093 1095 default 0 if X86