Blame view

net/Kconfig 1.66 KB
ed36323f6   Masahiro Yamada   kconfig: add blan...
1
2
3
4
5
6
  #
  # Network configuration
  #
  
  menuconfig NET
  	bool "Networking support"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
7
  	default y
ed36323f6   Masahiro Yamada   kconfig: add blan...
8
9
  
  if NET
bef1014b3   Joe Hershberger   net: Implement ra...
10
11
12
13
14
15
16
  config NET_RANDOM_ETHADDR
  	bool "Random ethaddr if unset"
  	help
  	  Selecting this will allow the Ethernet interface to function
  	  even when the ethaddr variable for that interface is unset.
  	  A new MAC address will be generated on every boot and it will
  	  not be added to the environment.
266607480   Bernhard Nortmann   net: support NETC...
17
18
19
20
21
  config NETCONSOLE
  	bool "NetConsole support"
  	help
  	  Support the 'nc' input/output device for networked console.
  	  See README.NetConsole for details.
f5fb73467   Albert ARIBAUD \(3ADEV\)   net: TFTP: variab...
22
23
  config NET_TFTP_VARS
  	bool "Control TFTP timeout and count through environment"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
24
  	depends on CMD_NET
f5fb73467   Albert ARIBAUD \(3ADEV\)   net: TFTP: variab...
25
26
27
28
29
30
31
  	default y
  	help
  	  If set, allows controlling the TFTP timeout through the
  	  environment variable tftptimeout, and the TFTP maximum
  	  timeout count through the variable tftptimeoutcountmax.
  	  If unset, timeout and maximum are hard-defined as 1 second
  	  and 10 timouts per TFTP transfer.
d021e9421   Adam Ford   Convert CONFIG_BO...
32
33
  config BOOTP_BOOTPATH
  	bool "Enable BOOTP BOOTPATH"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
34
  	depends on CMD_NET
d021e9421   Adam Ford   Convert CONFIG_BO...
35
36
37
  
  config BOOTP_DNS
  	bool "Enable bootp DNS"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
38
  	depends on CMD_NET
d021e9421   Adam Ford   Convert CONFIG_BO...
39
40
41
  
  config BOOTP_GATEWAY
  	bool "Enable BOOTP gateway"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
42
  	depends on CMD_NET
d021e9421   Adam Ford   Convert CONFIG_BO...
43
44
45
  
  config BOOTP_HOSTNAME
  	bool "Enable BOOTP hostname"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
46
  	depends on CMD_NET
d021e9421   Adam Ford   Convert CONFIG_BO...
47
48
49
  
  config BOOTP_PXE
  	bool "Enable BOOTP PXE"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
50
  	depends on CMD_NET
d021e9421   Adam Ford   Convert CONFIG_BO...
51
52
53
  
  config BOOTP_SUBNETMASK
  	bool "Enable BOOTP subnetmask"
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
54
55
  	depends on CMD_NET
  	depends on CMD_NET
d021e9421   Adam Ford   Convert CONFIG_BO...
56

0dac6b4e8   Alexander Graf   net: Move the VCI...
57
58
  config BOOTP_PXE_CLIENTARCH
  	hex
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
59
  	depends on CMD_NET
fa96f37ec   Alexander Graf   net: Fix client i...
60
61
          default 0x16 if ARM64
          default 0x15 if ARM
0dac6b4e8   Alexander Graf   net: Move the VCI...
62
63
64
65
          default 0 if X86
  
  config BOOTP_VCI_STRING
  	string
3b3ea2c56   Michal Simek   Kconfig: cmd: Mak...
66
  	depends on CMD_NET
0dac6b4e8   Alexander Graf   net: Move the VCI...
67
68
69
70
  	default "U-Boot.armv7" if CPU_V7 || CPU_V7M
  	default "U-Boot.armv8" if ARM64
  	default "U-Boot.arm" if ARM
  	default "U-Boot"
ed36323f6   Masahiro Yamada   kconfig: add blan...
71
  endif   # if NET