aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJoe Hershberger2018-04-13 15:26:32 -0500
committerJoe Hershberger2018-04-13 15:48:05 -0500
commit92fa44d58f4e5433eeb5fe6a56f2b6faf5e84c20 (patch)
tree9d6b283898b9a97eef13006750a65fb183429fc1 /net
parentba6288557d8a1bd845b841b9287b9752a470faa9 (diff)
downloadu-boot-92fa44d58f4e5433eeb5fe6a56f2b6faf5e84c20.tar.gz
u-boot-92fa44d58f4e5433eeb5fe6a56f2b6faf5e84c20.tar.xz
u-boot-92fa44d58f4e5433eeb5fe6a56f2b6faf5e84c20.zip
net: Move net command options to the cmd menu
Options that controlled the tftp and bootp commands depended on their commands, but lived in the net menu. Move them so they are in a consistent location. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Reviewed-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'net')
-rw-r--r--net/Kconfig50
1 files changed, 0 insertions, 50 deletions
diff --git a/net/Kconfig b/net/Kconfig
index d421a34d97..f2363e5256 100644
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -22,54 +22,4 @@ config NETCONSOLE
22 Support the 'nc' input/output device for networked console. 22 Support the 'nc' input/output device for networked console.
23 See README.NetConsole for details. 23 See README.NetConsole for details.
24 24
25config NET_TFTP_VARS
26 bool "Control TFTP timeout and count through environment"
27 depends on CMD_TFTPBOOT
28 default y
29 help
30 If set, allows controlling the TFTP timeout through the
31 environment variable tftptimeout, and the TFTP maximum
32 timeout count through the variable tftptimeoutcountmax.
33 If unset, timeout and maximum are hard-defined as 1 second
34 and 10 timouts per TFTP transfer.
35
36config BOOTP_BOOTPATH
37 bool "Enable BOOTP BOOTPATH"
38 depends on CMD_BOOTP
39
40config BOOTP_DNS
41 bool "Enable bootp DNS"
42 depends on CMD_BOOTP
43
44config BOOTP_GATEWAY
45 bool "Enable BOOTP gateway"
46 depends on CMD_BOOTP
47
48config BOOTP_HOSTNAME
49 bool "Enable BOOTP hostname"
50 depends on CMD_BOOTP
51
52config BOOTP_PXE
53 bool "Enable BOOTP PXE"
54 depends on CMD_BOOTP
55
56config BOOTP_SUBNETMASK
57 bool "Enable BOOTP subnetmask"
58 depends on CMD_BOOTP
59
60config BOOTP_PXE_CLIENTARCH
61 hex
62 depends on CMD_BOOTP
63 default 0x16 if ARM64
64 default 0x15 if ARM
65 default 0 if X86
66
67config BOOTP_VCI_STRING
68 string
69 depends on CMD_BOOTP
70 default "U-Boot.armv7" if CPU_V7 || CPU_V7M
71 default "U-Boot.armv8" if ARM64
72 default "U-Boot.arm" if ARM
73 default "U-Boot"
74
75endif # if NET 25endif # if NET