Kconfig 638 B

12345678910111213141516171819202122232425262728293031323334
  1. mainmenu "RT-Thread Project Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../../..
  4. PKGS_DIR := packages
  5. source "$(RTT_DIR)/Kconfig"
  6. osource "$PKGS_DIR/Kconfig"
  7. config BOARD_allwinnerd1
  8. bool
  9. select ARCH_RISCV64
  10. select RT_USING_COMPONENTS_INIT
  11. select RT_USING_USER_MAIN
  12. select RT_USING_CACHE
  13. select ARCH_MM_MMU
  14. default y
  15. config ENABLE_FPU
  16. bool "Enable FPU"
  17. default y
  18. config RT_USING_USERSPACE_32BIT_LIMIT
  19. bool "Enable userspace 32bit limit"
  20. default n
  21. config __STACKSIZE__
  22. int "stack size for interrupt"
  23. default 4096
  24. rsource "../libraries/drivers/Kconfig"
  25. rsource "../libraries/Kconfig"