1234567891011121314151617181920212223242526 |
- mainmenu "RT-Thread Project Configuration"
- BSP_DIR := .
- RTT_DIR := ../../..
- PKGS_DIR := packages
- source "$(RTT_DIR)/Kconfig"
- osource "$PKGS_DIR/Kconfig"
- config BCM2836_SOC
- bool
- select ARCH_ARMV8
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- select ARCH_CPU_64BIT
- select RT_USING_CACHE
- select SOC_BCM283x
- default y
- config SOC_BCM283x
- bool
- default y
- rsource "driver/Kconfig"
|