mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-23 18:47:22 +08:00
bsp中option env语句替换为新语句,并同步更新了source "$xxx"语句
This commit is contained in:
@@ -1,19 +1,10 @@
|
||||
mainmenu "RT-Thread Configuration"
|
||||
|
||||
config BSP_DIR
|
||||
string
|
||||
option env="BSP_ROOT"
|
||||
default "."
|
||||
BSP_DIR := .
|
||||
|
||||
config RTT_DIR
|
||||
string
|
||||
option env="RTT_ROOT"
|
||||
default "../../.."
|
||||
RTT_DIR := ../../..
|
||||
|
||||
config PKGS_DIR
|
||||
string
|
||||
option env="PKGS_ROOT"
|
||||
default "packages"
|
||||
PKGS_DIR := packages
|
||||
|
||||
config SOC_STM32L476RG
|
||||
bool
|
||||
@@ -27,10 +18,10 @@ config BOARD_STM32L476_NUCLEO
|
||||
select BOARD_SERIES_STM32_NUCLEO_64
|
||||
default y
|
||||
|
||||
source "$RTT_DIR/Kconfig"
|
||||
source "$PKGS_DIR/Kconfig"
|
||||
source "../libraries/Kconfig"
|
||||
source "$(RTT_DIR)/Kconfig"
|
||||
osource "$PKGS_DIR/Kconfig"
|
||||
rsource "../libraries/Kconfig"
|
||||
|
||||
if !RT_USING_NANO
|
||||
source "board/Kconfig"
|
||||
rsource "board/Kconfig"
|
||||
endif
|
||||
|
||||
@@ -262,7 +262,7 @@ menu "On-chip Peripheral Drivers"
|
||||
endchoice
|
||||
endif
|
||||
|
||||
source "$BSP_DIR/../libraries/HAL_Drivers/drivers/Kconfig"
|
||||
source "$(BSP_DIR)/../libraries/HAL_Drivers/drivers/Kconfig"
|
||||
|
||||
endmenu
|
||||
|
||||
|
||||
Reference in New Issue
Block a user