Kconfig 666 B

1234567891011121314151617181920212223242526272829303132333435
  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. config BOARD_allwinnerd1
  8. bool
  9. select ARCH_RISCV64
  10. select RT_USING_COMPONENTS_INIT
  11. select RT_USING_USER_MAIN
  12. select RT_USING_CACHE
  13. select ARCH_MM_MMU
  14. default y
  15. config ENABLE_FPU
  16. bool "Enable FPU"
  17. select ARCH_RISCV_FPU_D
  18. default y
  19. config RT_USING_USERSPACE_32BIT_LIMIT
  20. bool "Enable userspace 32bit limit"
  21. default n
  22. config __STACKSIZE__
  23. int "stack size for interrupt"
  24. default 4096
  25. rsource "../libraries/drivers/Kconfig"
  26. rsource "../libraries/Kconfig"