Files
linux/drivers/net/eth_mac/Kconfig
2013-03-21 17:49:21 +08:00

41 lines
1.1 KiB
Plaintext
Executable File

#
# set Ethernet mac source
#
choice
prompt "Ethernet mac source"
depends on NETDEV_10000 ||NETDEV_1000 ||NET_ETHERNET
default ETH_MAC_FROM_RANDOM
config ETH_MAC_FROM_RANDOM
bool "Random Ethernet mac "
---help---
Say Y here if you want to set Random mac to Ethernet mac.
This option alone does not add any kernel code.
If you say N, all options in this submenu will be skipped and disabled.
config ETH_MAC_FROM_EEPROM
bool "Ethernet mac from EEPROM"
depends on EEPROM_AT24C16
---help---
Say Y here if you want to set EEPROM mac to Ethernet mac,
when the EEPROM exsits and mac has been written in.
This option alone does not add any kernel code.
If you say N, all options in this submenu will be skipped and disabled.
config ETH_MAC_FROM_IDB
bool "Ethernet mac from IDB"
---help---
Say Y here if you want to set IDB mac to Ethernet mac,
when the IDB mac has been written in.
This option alone does not add any kernel code.
If you say N, all options in this submenu will be skipped and disabled.
endchoice