Kconfig 704 B

123456789101112131415161718192021222324252627282930313233343536
  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_allwinnerd1s
  8. bool
  9. select ARCH_RISCV64
  10. select ARCH_USING_RISCV_COMMON64
  11. select RT_USING_COMPONENTS_INIT
  12. select RT_USING_USER_MAIN
  13. select RT_USING_CACHE
  14. select ARCH_MM_MMU
  15. default y
  16. config ENABLE_FPU
  17. bool "Enable FPU"
  18. select ARCH_RISCV_FPU_D
  19. default y
  20. config RT_USING_USERSPACE_32BIT_LIMIT
  21. bool "Enable userspace 32bit limit"
  22. default n
  23. config __STACKSIZE__
  24. int "stack size for interrupt"
  25. default 4096
  26. rsource "../libraries/drivers/Kconfig"
  27. rsource "../libraries/Kconfig"