| 1234567891011121314151617181920212223242526272829303132 |
- mainmenu "RT-Thread Project Configuration"
- BSP_DIR := .
- RTT_DIR := ../../
- PKGS_DIR := packages
- source "$RTT_DIR/Kconfig"
- source "$PKGS_DIR/Kconfig"
- rsource "board/Kconfig"
- config BOARD_fpgac908
- bool
- select ARCH_RISCV64
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- select RT_USING_CACHE
- select ARCH_MM_MMU
- select ARCH_RISCV_FPU_D
- select ARCH_REMAP_KERNEL if RT_USING_SMART
- default y
- config __STACKSIZE__
- int "stack size for interrupt"
- default 4096
- config BSP_ROOTFS_TYPE_CROMFS
- bool "Use CROMFS as ROOTFS"
- select RT_USING_DFS_CROMFS
- select PKG_USING_ZLIB
- default y
|