Config.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. config BR2_TARGET_ARM_TRUSTED_FIRMWARE
  2. bool "ARM Trusted Firmware (ATF)"
  3. depends on BR2_aarch64 && BR2_TARGET_UBOOT
  4. help
  5. Enable this option if you want to build the ATF for your ARM
  6. based embedded device.
  7. https://github.com/ARM-software/arm-trusted-firmware
  8. if BR2_TARGET_ARM_TRUSTED_FIRMWARE
  9. choice
  10. prompt "ATF Version"
  11. help
  12. Select the specific ATF version you want to use
  13. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_LATEST_VERSION
  14. bool "v1.2"
  15. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL
  16. bool "Custom tarball"
  17. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT
  18. bool "Custom Git repository"
  19. endchoice
  20. if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL
  21. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION
  22. string "URL of custom ATF tarball"
  23. endif
  24. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_VERSION
  25. string
  26. default "v1.2" if BR2_TARGET_ARM_TRUSTED_FIRMWARE_LATEST_VERSION
  27. default "custom" if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL
  28. default BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION \
  29. if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT
  30. if BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT
  31. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL
  32. string "URL of custom repository"
  33. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION
  34. string "Custom repository version"
  35. help
  36. Revision to use in the typical format used by Git
  37. E.G. a sha id, a tag, ..
  38. endif
  39. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM
  40. string "ATF platform"
  41. help
  42. Target plaform to build for.
  43. config BR2_TARGET_ARM_TRUSTED_FIRMWARE_ADDITIONAL_VARIABLES
  44. string "Additional ATF build variables"
  45. help
  46. Additional parameters for the ATF build
  47. E.G. 'DEBUG=1 LOG_LEVEL=20'
  48. endif