Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. mainmenu "RT-Thread Project Configuration"
  2. config RTT_DIR
  3. string
  4. option env="RTT_ROOT"
  5. default "../../.."
  6. config BSP_DIR
  7. string
  8. option env="BSP_ROOT"
  9. default "../."
  10. config STANDALONE_DIR
  11. string
  12. option env="STANDALONE_DIR"
  13. default ".././libraries/standalone"
  14. config PKGS_DIR
  15. string
  16. option env="PKGS_ROOT"
  17. default "packages"
  18. source "$RTT_DIR/Kconfig"
  19. source "$PKGS_DIR/Kconfig"
  20. source "$BSP_DIR/libraries/drivers/Kconfig"
  21. config PHYTIUM_ARCH_AARCH32
  22. bool
  23. select ARCH_ARM_CORTEX_A
  24. select RT_USING_COMPONENTS_INIT
  25. select RT_USING_USER_MAIN
  26. select RT_USING_GIC_V3
  27. select TARGET_ARMV8_AARCH32
  28. select USE_AARCH64_L1_TO_AARCH32
  29. default y
  30. menu "Standalone Setting"
  31. config TARGET_ARMV8_AARCH32
  32. bool "Armv8 Aarch32"
  33. default y
  34. config USE_AARCH64_L1_TO_AARCH32
  35. bool
  36. prompt "Use Aarch64 L1 to Aarch32 code"
  37. default y
  38. help
  39. Use the Aarch64 to Aarch32 mode function
  40. source "$STANDALONE_DIR/board/Kconfig"
  41. source "$STANDALONE_DIR/drivers/Kconfig"
  42. source "$STANDALONE_DIR/common/Kconfig"
  43. endmenu