2021-08-06 18:35:58 +08:00
|
|
|
mainmenu "RT-Thread Project Configuration"
|
|
|
|
|
|
|
|
config BSP_DIR
|
|
|
|
string
|
|
|
|
option env="BSP_ROOT"
|
|
|
|
default "."
|
|
|
|
|
|
|
|
config RTT_DIR
|
|
|
|
string
|
|
|
|
option env="RTT_ROOT"
|
|
|
|
default "../../"
|
|
|
|
|
|
|
|
config PKGS_DIR
|
|
|
|
string
|
|
|
|
option env="PKGS_ROOT"
|
|
|
|
default "packages"
|
|
|
|
|
|
|
|
source "$RTT_DIR/Kconfig"
|
|
|
|
source "$PKGS_DIR/Kconfig"
|
|
|
|
|
2021-08-09 10:38:27 +08:00
|
|
|
config SOC_VIRT64_AARCH64
|
2021-08-06 18:35:58 +08:00
|
|
|
bool
|
2022-03-07 22:41:56 +08:00
|
|
|
select ARCH_ARMV8
|
2021-08-06 18:35:58 +08:00
|
|
|
select ARCH_CPU_64BIT
|
2022-12-20 17:49:37 +08:00
|
|
|
select ARCH_ARM_MMU
|
|
|
|
select RT_USING_CACHE
|
2021-08-06 18:35:58 +08:00
|
|
|
select RT_USING_COMPONENTS_INIT
|
|
|
|
select RT_USING_USER_MAIN
|
2022-12-20 17:49:37 +08:00
|
|
|
select RT_USING_GIC
|
|
|
|
select BSP_USING_GIC
|
|
|
|
select ARCH_MM_MMU
|
2021-08-06 18:35:58 +08:00
|
|
|
default y
|
|
|
|
|
2022-12-20 17:49:37 +08:00
|
|
|
source "$BSP_DIR/drivers/Kconfig"
|