Kconfig 434 B

123456789101112131415161718192021222324252627
  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 SOC_JUICEVM_RV64
  8. bool
  9. select ARCH_RISCV64
  10. config BOARD_RV64_FRDM_JUICEVM
  11. bool
  12. select SOC_JUICEVM_RV64
  13. select RT_USING_COMPONENTS_INIT
  14. select RT_USING_USER_MAIN
  15. default y
  16. rsource "driver/Kconfig"
  17. config __STACKSIZE__
  18. int
  19. default 4096