mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
20815ecdcf
Looking over the current boards, there are no users of CONFIG_MAC_ADDR_IN_EEPROM. Further, omapl138_lcdk uses CONFIG_NET_RANDOM_ETHADDR. Drop various unused code paths. Cc: Adam Ford <aford173@gmail.com> Cc: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Tom Rini <trini@konsulko.com>
42 lines
649 B
Text
42 lines
649 B
Text
if TARGET_DA850EVM
|
|
|
|
config SYS_BOARD
|
|
default "da8xxevm"
|
|
|
|
config SYS_VENDOR
|
|
default "davinci"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "da850evm"
|
|
|
|
menuconfig DA850_MAC
|
|
bool "Use MAC Address"
|
|
default y
|
|
|
|
if DA850_MAC
|
|
config MAC_ADDR_IN_SPIFLASH
|
|
bool "MAC address in SPI Flash"
|
|
default y
|
|
help
|
|
The OMAP-L138 and AM1808 SoM are programmed with
|
|
their MAC address in SPI Flash from the factory
|
|
Enable this option to read the MAC from SPI Flash
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if TARGET_OMAPL138_LCDK
|
|
|
|
config SYS_BOARD
|
|
default "da8xxevm"
|
|
|
|
config SYS_VENDOR
|
|
default "davinci"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "omapl138_lcdk"
|
|
|
|
endif
|
|
|
|
source "board/ti/common/Kconfig"
|