1mainmenu "RT-Thread Project Configuration" 2 3BSP_DIR := . 4 5RTT_DIR := ../../.. 6 7PKGS_DIR := packages 8 9source "$(RTT_DIR)/Kconfig" 10osource "$PKGS_DIR/Kconfig" 11 12config BOARD_allwinnerd1 13 bool 14 select ARCH_RISCV64 15 select RT_USING_COMPONENTS_INIT 16 select RT_USING_USER_MAIN 17 select RT_USING_CACHE 18 select ARCH_MM_MMU 19 default y 20 21config ENABLE_FPU 22 bool "Enable FPU" 23 select ARCH_RISCV_FPU_D 24 default y 25 26config RT_USING_USERSPACE_32BIT_LIMIT 27 bool "Enable userspace 32bit limit" 28 default n 29 30config __STACKSIZE__ 31 int "stack size for interrupt" 32 default 4096 33 34rsource "../libraries/drivers/Kconfig" 35rsource "../libraries/Kconfig" 36