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 BCM2836_SOC
13    bool
14    select ARCH_ARMV8
15    select RT_USING_COMPONENTS_INIT
16    select RT_USING_USER_MAIN
17    select ARCH_CPU_64BIT
18    select RT_USING_CACHE
19    select SOC_BCM283x
20    default y
21
22config SOC_BCM283x
23    bool
24    default y
25
26rsource "driver/Kconfig"
27