Config.in.xtensa 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. choice
  2. prompt "Target Architecture Variant"
  3. depends on BR2_xtensa
  4. default BR2_xtensa_fsf
  5. config BR2_XTENSA_CUSTOM
  6. bool "Custom Xtensa processor configuration"
  7. config BR2_xtensa_fsf
  8. bool "fsf - Default configuration"
  9. endchoice
  10. config BR2_XTENSA_CUSTOM_NAME
  11. string "Custom Xtensa processor configuration name"
  12. depends on BR2_XTENSA_CUSTOM
  13. default ""
  14. help
  15. Name given to a custom Xtensa processor configuration.
  16. config BR2_XTENSA_CORE_NAME
  17. string
  18. default BR2_XTENSA_CUSTOM_NAME if BR2_XTENSA_CUSTOM
  19. default "" if BR2_xtensa_fsf
  20. config BR2_XTENSA_OVERLAY_DIR
  21. string "Overlay directory for custom configuration"
  22. depends on BR2_XTENSA_CUSTOM
  23. default ""
  24. help
  25. Provide the directory path that contains the overlay file
  26. for a custom processor configuration. The path is relative
  27. to the top directory of buildroot.
  28. These overlay files are tar packages with updated configuration
  29. files for various toolchain packages and Xtensa processor
  30. configurations. They are provided by the processor vendor or
  31. directly from Tensilica.
  32. config BR2_ARCH
  33. default "xtensa" if BR2_xtensa