Kconfig 453 B

1234567891011121314151617181920212223242526272829303132
  1. if TARGET_EDISON
  2. config SYS_BOARD
  3. default "edison"
  4. config SYS_VENDOR
  5. default "intel"
  6. config SYS_SOC
  7. default "tangier"
  8. config SYS_CONFIG_NAME
  9. default "edison"
  10. config SYS_TEXT_BASE
  11. default 0x01101000
  12. config ROM_TABLE_ADDR
  13. default 0x0e4500
  14. config ROM_TABLE_SIZE
  15. default 0x007b00
  16. config BOARD_SPECIFIC_OPTIONS # dummy
  17. def_bool y
  18. select X86_LOAD_FROM_32_BIT
  19. select INTEL_MID
  20. select INTEL_TANGIER
  21. select BOARD_LATE_INIT
  22. select MD5
  23. endif