Kconfig 799 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. mainmenu "RT-Thread Project Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "../../.."
  10. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. source "$RTT_DIR/Kconfig"
  15. source "$PKGS_DIR/Kconfig"
  16. config BOARD_allwinnerd1
  17. bool
  18. select ARCH_RISCV64
  19. select RT_USING_COMPONENTS_INIT
  20. select RT_USING_USER_MAIN
  21. select RT_USING_CACHE
  22. select ARCH_MM_MMU
  23. default y
  24. config ENABLE_FPU
  25. bool "Enable FPU"
  26. default y
  27. config RT_USING_USERSPACE_32BIT_LIMIT
  28. bool "Enable userspace 32bit limit"
  29. default n
  30. config __STACKSIZE__
  31. int "stack size for interrupt"
  32. default 4096
  33. source "../libraries/drivers/Kconfig"
  34. source "../libraries/Kconfig"