mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 16:31:25 +01:00 
			
		
		
		
	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>
		
			
				
	
	
		
			26 lines
		
	
	
		
			554 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			554 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # Network configuration
 | |
| #
 | |
| 
 | |
| menuconfig NET
 | |
| 	bool "Networking support"
 | |
| 	default y
 | |
| 
 | |
| if NET
 | |
| 
 | |
| 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.
 | |
| 
 | |
| config NETCONSOLE
 | |
| 	bool "NetConsole support"
 | |
| 	help
 | |
| 	  Support the 'nc' input/output device for networked console.
 | |
| 	  See README.NetConsole for details.
 | |
| 
 | |
| endif   # if NET
 |