123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- mainmenu "RT-Thread Project Configuration"
- BSP_DIR := .
- RTT_DIR := ../../..
- PKGS_DIR := packages
- source "$(RTT_DIR)/Kconfig"
- osource "$PKGS_DIR/Kconfig"
- rsource "board/Kconfig"
- config BSP_USING_CV18XX
- bool
- select ARCH_RISCV64
- select ARCH_RISCV_FPU_D
- select ARCH_USING_RISCV_COMMON64
- select RT_USING_SYSTEM_WORKQUEUE
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- select RT_USING_CACHE
- select ARCH_MM_MMU
- select RT_USING_DEVICE_OPS
- select ARCH_REMAP_KERNEL if RT_USING_SMART
- default y
- config C906_PLIC_PHY_ADDR
- hex
- default 0x70000000
- config IRQ_MAX_NR
- int
- default 101
- config BSP_GPIO_IRQ_BASE
- int
- default 60
- config BSP_SYS_GPIO_IRQ_BASE
- int
- default 70
- config __STACKSIZE__
- int "stack size for interrupt"
- default 4096
- config SOC_TYPE_CV180X
- bool
- default n
- config SOC_TYPE_SG2002
- bool
- default n
- choice
- prompt "Board Type"
- default BOARD_TYPE_MILKV_DUO256M
- config BOARD_TYPE_MILKV_DUO
- select SOC_TYPE_CV180X
- bool "milkv-duo"
- config BOARD_TYPE_MILKV_DUO_SPINOR
- select SOC_TYPE_CV180X
- bool "milkv-duo-spinor"
- config BOARD_TYPE_MILKV_DUO256M
- select SOC_TYPE_SG2002
- bool "milkv-duo256m"
- config BOARD_TYPE_MILKV_DUO256M_SPINOR
- select SOC_TYPE_SG2002
- bool "milkv-duo256m-spinor"
- endchoice
- choice BSP_ROOTFS_TYPE
- prompt "rootfs type"
- default BSP_ROOTFS_TYPE_ROMFS
- config BSP_ROOTFS_TYPE_ROMFS
- bool "ROMFS"
- select RT_USING_DFS_ROMFS
- config BSP_ROOTFS_TYPE_CROMFS
- bool "CROMFS"
- select RT_USING_DFS_CROMFS
- select PKG_USING_ZLIB
- select PKG_USING_ZLIB_LATEST_VERSION
- endchoice
|