Kconfig 611 B

1234567891011121314151617181920212223242526272829
  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. rsource "board/Kconfig"
  8. config BOARD_UR_DP1000
  9. bool
  10. select ARCH_RISCV64
  11. select ARCH_USING_RISCV_COMMON64
  12. select RT_USING_COMPONENTS_INIT
  13. select RT_USING_USER_MAIN
  14. select RT_USING_CACHE
  15. select ARCH_MM_MMU
  16. select ARCH_USING_ASID
  17. select ARCH_RISCV_FPU_D
  18. select ARCH_REMAP_KERNEL if RT_USING_SMART
  19. select RT_USING_DEVICE_OPS
  20. default y
  21. config __STACKSIZE__
  22. int "stack size for interrupt"
  23. default 4096