Kconfig 641 B

1234567891011121314151617181920212223242526272829303132
  1. mainmenu "RT-Thread Project Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../../
  4. PKGS_DIR := packages
  5. source "$RTT_DIR/Kconfig"
  6. source "$PKGS_DIR/Kconfig"
  7. rsource "board/Kconfig"
  8. config BOARD_fpgac908
  9. bool
  10. select ARCH_RISCV64
  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_RISCV_FPU_D
  16. select ARCH_REMAP_KERNEL if RT_USING_SMART
  17. default y
  18. config __STACKSIZE__
  19. int "stack size for interrupt"
  20. default 4096
  21. config BSP_ROOTFS_TYPE_CROMFS
  22. bool "Use CROMFS as ROOTFS"
  23. select RT_USING_DFS_CROMFS
  24. select PKG_USING_ZLIB
  25. default y