Config.in 962 B

1234567891011121314151617181920212223242526272829303132333435
  1. config BR2_TARGET_TI_K3_R5_LOADER
  2. bool "ti-k3-r5-loader"
  3. depends on BR2_aarch64
  4. help
  5. Separate U-Boot build for R5 cores on TI's k3 boards.
  6. Usually used to build tiboot3.bin with k3-image-gen.
  7. if BR2_TARGET_TI_K3_R5_LOADER
  8. choice
  9. prompt "Configuration"
  10. default BR2_TARGET_TI_K3_R5_LOADER_USE_DEFCONFIG
  11. config BR2_TARGET_TI_K3_R5_LOADER_USE_DEFCONFIG
  12. bool "Using an in-tree board defconfig file"
  13. config BR2_TARGET_TI_K3_R5_LOADER_USE_CUSTOM_CONFIG
  14. bool "Using a custom board (def)config file"
  15. endchoice
  16. config BR2_TARGET_TI_K3_R5_LOADER_BOARD_DEFCONFIG
  17. string "Board defconfig"
  18. depends on BR2_TARGET_TI_K3_R5_LOADER_USE_DEFCONFIG
  19. help
  20. Name of the board for which TI K3 R5 Loader should be
  21. built, without the _defconfig suffix.
  22. config BR2_TARGET_TI_K3_R5_LOADER_CUSTOM_CONFIG_FILE
  23. string "Configuration file path"
  24. depends on BR2_TARGET_TI_K3_R5_LOADER_USE_CUSTOM_CONFIG
  25. help
  26. Path to the TI K3 R5 Loader configuration file.
  27. endif