1if TARGET_DA850EVM 2 3config SYS_BOARD 4 default "da8xxevm" 5 6config SYS_VENDOR 7 default "davinci" 8 9config SYS_CONFIG_NAME 10 default "da850evm" 11 12menuconfig DA850_MAC 13 bool "Use MAC Address" 14 default y 15 16if DA850_MAC 17config MAC_ADDR_IN_SPIFLASH 18 bool "MAC address in SPI Flash" 19 default y 20 help 21 The OMAP-L138 and AM1808 SoM are programmed with 22 their MAC address in SPI Flash from the factory 23 Enable this option to read the MAC from SPI Flash 24 25endif 26 27endif 28 29if TARGET_OMAPL138_LCDK 30 31config SYS_BOARD 32 default "da8xxevm" 33 34config SYS_VENDOR 35 default "davinci" 36 37config SYS_CONFIG_NAME 38 default "omapl138_lcdk" 39 40endif 41 42source "board/ti/common/Kconfig" 43