Kconfig 944 B

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