Kconfig 581 B

12345678910111213141516171819202122232425262728
  1. mainmenu "RT-Thread Project Configuration"
  2. RTT_DIR := ../../../..
  3. PKGS_DIR := packages
  4. source "$(RTT_DIR)/Kconfig"
  5. osource "$PKGS_DIR/Kconfig"
  6. rsource "board/Kconfig"
  7. config BOARD_QEMU_VIRT_RV64
  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. select ARCH_REMAP_KERNEL
  16. default y
  17. config ENABLE_FPU
  18. bool "Enable FPU"
  19. select ARCH_RISCV_FPU
  20. default y
  21. config __STACKSIZE__
  22. int "stack size for interrupt"
  23. default 8192