Kconfig 496 B

1234567891011121314151617181920212223242526272829303132333435
  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_MALLOC_LEN
  11. default 0x08000000
  12. config SYS_TEXT_BASE
  13. default 0x01101000
  14. config ROM_TABLE_ADDR
  15. default 0x0e4500
  16. config ROM_TABLE_SIZE
  17. default 0x007b00
  18. config BOARD_SPECIFIC_OPTIONS # dummy
  19. def_bool y
  20. select X86_LOAD_FROM_32_BIT
  21. select INTEL_MID
  22. select INTEL_TANGIER
  23. select BOARD_LATE_INIT
  24. select MD5
  25. endif