From 69cd16e1364405217af85be527d8a68c82ece775 Mon Sep 17 00:00:00 2001 From: misonyo Date: Wed, 16 Jan 2019 23:23:38 +0800 Subject: [PATCH] [all BSP]fix kconfig file syntax error --- bsp/allwinner_tina/Kconfig | 6 +++--- bsp/amebaz/Kconfig | 8 ++++---- bsp/asm9260t/Kconfig | 6 +++--- bsp/at91sam9260/Kconfig | 6 +++--- bsp/beaglebone/Kconfig | 8 ++++---- bsp/ck802/Kconfig | 6 +++--- bsp/dm365/Kconfig | 6 +++--- bsp/gd32303e-eval/Kconfig | 6 +++--- bsp/gd32450z-eval/Kconfig | 6 +++--- bsp/gkipc/Kconfig | 6 +++--- bsp/hifive1/Kconfig | 6 +++--- bsp/imx6sx/cortex-a9/Kconfig | 8 ++++---- bsp/imx6ul/Kconfig | 6 +++--- bsp/imxrt/imxrt1050-ArchMix/Kconfig | 6 +++--- bsp/imxrt/imxrt1050-evk/Kconfig | 6 +++--- bsp/imxrt1052-evk/Kconfig | 6 +++--- bsp/k210/Kconfig | 6 +++--- bsp/lpc408x/Kconfig | 6 +++--- bsp/lpc54114-lite/Kconfig | 6 +++--- bsp/lpc54608-LPCXpresso/Kconfig | 6 +++--- bsp/ls1cdev/Kconfig | 6 +++--- bsp/nuvoton_m05x/Kconfig | 6 +++--- bsp/nuvoton_m487/Kconfig | 6 +++--- bsp/qemu-vexpress-a9/Kconfig | 6 +++--- bsp/qemu-vexpress-gemini/Kconfig | 6 +++--- bsp/raspi2/Kconfig | 6 +++--- bsp/rv32m1_vega/ri5cy/Kconfig | 6 +++--- bsp/simulator/Kconfig | 6 +++--- bsp/stm32/libraries/templates/stm32f0xx/Kconfig | 6 +++--- bsp/stm32/libraries/templates/stm32f10x/Kconfig | 6 +++--- bsp/stm32/libraries/templates/stm32f4xx/Kconfig | 6 +++--- bsp/stm32/libraries/templates/stm32f7xx/Kconfig | 6 +++--- bsp/stm32/libraries/templates/stm32l4xx/Kconfig | 6 +++--- bsp/stm32/stm32f091-st-nucleo/Kconfig | 6 +++--- bsp/stm32/stm32f103-atk-nano/Kconfig | 6 +++--- bsp/stm32/stm32f103-fire-arbitrary/Kconfig | 6 +++--- bsp/stm32/stm32f407-atk-explorer/Kconfig | 6 +++--- bsp/stm32/stm32f407-st-discovery/Kconfig | 6 +++--- bsp/stm32/stm32f411-st-nucleo/Kconfig | 6 +++--- bsp/stm32/stm32f429-armfly-v6/Kconfig | 6 +++--- bsp/stm32/stm32f429-atk-apollo/Kconfig | 6 +++--- bsp/stm32/stm32f429-fire-challenger/Kconfig | 6 +++--- bsp/stm32/stm32f446-st-nucleo/Kconfig | 6 +++--- bsp/stm32/stm32f767-atk-apollo/Kconfig | 6 +++--- bsp/stm32/stm32f767-fire-challenger/Kconfig | 6 +++--- bsp/stm32/stm32l475-atk-pandora/Kconfig | 6 +++--- bsp/stm32f107/Kconfig | 8 ++++---- bsp/stm32f10x-HAL/Kconfig | 6 +++--- bsp/stm32f10x/Kconfig | 6 +++--- bsp/stm32f20x/Kconfig | 6 +++--- bsp/stm32f40x/Kconfig | 6 +++--- bsp/stm32f411-nucleo/Kconfig | 6 +++--- bsp/stm32f429-apollo/Kconfig | 6 +++--- bsp/stm32f429-armfly/Kconfig | 6 +++--- bsp/stm32f429-disco/Kconfig | 6 +++--- bsp/stm32f4xx-HAL/Kconfig | 6 +++--- bsp/stm32f7-disco/Kconfig | 6 +++--- bsp/stm32h743-nucleo/Kconfig | 6 +++--- bsp/stm32l476-nucleo/Kconfig | 6 +++--- bsp/swm320-lq100/Kconfig | 6 +++--- bsp/tm4c129x/Kconfig | 6 +++--- bsp/tms320f28379d/Kconfig | 6 +++--- bsp/x1000/Kconfig | 6 +++--- 63 files changed, 193 insertions(+), 193 deletions(-) diff --git a/bsp/allwinner_tina/Kconfig b/bsp/allwinner_tina/Kconfig index c08133b83b..bf8ea3eb29 100644 --- a/bsp/allwinner_tina/Kconfig +++ b/bsp/allwinner_tina/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/amebaz/Kconfig b/bsp/amebaz/Kconfig index 5e639f4e5f..f2171e022e 100644 --- a/bsp/amebaz/Kconfig +++ b/bsp/amebaz/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,12 +13,12 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" -config $ENV_DIR +config ENV_DIR string option env="ENV_ROOT" default "/" diff --git a/bsp/asm9260t/Kconfig b/bsp/asm9260t/Kconfig index 544cb4202f..cf15b0089e 100644 --- a/bsp/asm9260t/Kconfig +++ b/bsp/asm9260t/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/at91sam9260/Kconfig b/bsp/at91sam9260/Kconfig index f07968f982..fcc0b7f701 100644 --- a/bsp/at91sam9260/Kconfig +++ b/bsp/at91sam9260/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/beaglebone/Kconfig b/bsp/beaglebone/Kconfig index a3d9b2e519..face1126bc 100644 --- a/bsp/beaglebone/Kconfig +++ b/bsp/beaglebone/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,12 +13,12 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example: default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" -config $ENV_DIR +config ENV_DIR string option env="ENV_ROOT" default "/" diff --git a/bsp/ck802/Kconfig b/bsp/ck802/Kconfig index 7bce24ab3f..57926af404 100644 --- a/bsp/ck802/Kconfig +++ b/bsp/ck802/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/dm365/Kconfig b/bsp/dm365/Kconfig index 7c2d7799a9..5fe94df8ef 100644 --- a/bsp/dm365/Kconfig +++ b/bsp/dm365/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/gd32303e-eval/Kconfig b/bsp/gd32303e-eval/Kconfig index c1e97ccd3f..e4706f4d4f 100644 --- a/bsp/gd32303e-eval/Kconfig +++ b/bsp/gd32303e-eval/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/gd32450z-eval/Kconfig b/bsp/gd32450z-eval/Kconfig index e5e782777c..776ad7a279 100644 --- a/bsp/gd32450z-eval/Kconfig +++ b/bsp/gd32450z-eval/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default: "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default: "rt-thread" # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/gkipc/Kconfig b/bsp/gkipc/Kconfig index 27dcf550f2..cecf754987 100644 --- a/bsp/gkipc/Kconfig +++ b/bsp/gkipc/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/hifive1/Kconfig b/bsp/hifive1/Kconfig index b76747caff..ab8d23cfb5 100644 --- a/bsp/hifive1/Kconfig +++ b/bsp/hifive1/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/imx6sx/cortex-a9/Kconfig b/bsp/imx6sx/cortex-a9/Kconfig index a54e2f40be..305671a126 100644 --- a/bsp/imx6sx/cortex-a9/Kconfig +++ b/bsp/imx6sx/cortex-a9/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." @@ -13,12 +13,12 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example: default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" -config $ENV_DIR +config ENV_DIR string option env="ENV_ROOT" default "/" diff --git a/bsp/imx6ul/Kconfig b/bsp/imx6ul/Kconfig index 68a1d983de..0e15f9cc18 100644 --- a/bsp/imx6ul/Kconfig +++ b/bsp/imx6ul/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/imxrt/imxrt1050-ArchMix/Kconfig b/bsp/imxrt/imxrt1050-ArchMix/Kconfig index 6aa07d476d..6c36086c8d 100644 --- a/bsp/imxrt/imxrt1050-ArchMix/Kconfig +++ b/bsp/imxrt/imxrt1050-ArchMix/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/imxrt/imxrt1050-evk/Kconfig b/bsp/imxrt/imxrt1050-evk/Kconfig index 6a9e202469..5a1991863a 100644 --- a/bsp/imxrt/imxrt1050-evk/Kconfig +++ b/bsp/imxrt/imxrt1050-evk/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/imxrt1052-evk/Kconfig b/bsp/imxrt1052-evk/Kconfig index b2e97fc33a..450ba25af6 100644 --- a/bsp/imxrt1052-evk/Kconfig +++ b/bsp/imxrt1052-evk/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/k210/Kconfig b/bsp/k210/Kconfig index 3d1f1315f5..0abdcab46c 100644 --- a/bsp/k210/Kconfig +++ b/bsp/k210/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/lpc408x/Kconfig b/bsp/lpc408x/Kconfig index 4c52aa9f6f..e586d1b5b4 100644 --- a/bsp/lpc408x/Kconfig +++ b/bsp/lpc408x/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/lpc54114-lite/Kconfig b/bsp/lpc54114-lite/Kconfig index 052b48cd37..4a48333983 100644 --- a/bsp/lpc54114-lite/Kconfig +++ b/bsp/lpc54114-lite/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/lpc54608-LPCXpresso/Kconfig b/bsp/lpc54608-LPCXpresso/Kconfig index 86c8134c8b..a4613012c6 100644 --- a/bsp/lpc54608-LPCXpresso/Kconfig +++ b/bsp/lpc54608-LPCXpresso/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/ls1cdev/Kconfig b/bsp/ls1cdev/Kconfig index 262e2e5184..e3f4eca2d4 100644 --- a/bsp/ls1cdev/Kconfig +++ b/bsp/ls1cdev/Kconfig @@ -1,17 +1,17 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/nuvoton_m05x/Kconfig b/bsp/nuvoton_m05x/Kconfig index b6c00e8e2c..1503876ae3 100644 --- a/bsp/nuvoton_m05x/Kconfig +++ b/bsp/nuvoton_m05x/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/nuvoton_m487/Kconfig b/bsp/nuvoton_m487/Kconfig index 1b46858ab6..42f1ea0b62 100644 --- a/bsp/nuvoton_m487/Kconfig +++ b/bsp/nuvoton_m487/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/qemu-vexpress-a9/Kconfig b/bsp/qemu-vexpress-a9/Kconfig index 9bf0ad526e..a74e2411f9 100644 --- a/bsp/qemu-vexpress-a9/Kconfig +++ b/bsp/qemu-vexpress-a9/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/qemu-vexpress-gemini/Kconfig b/bsp/qemu-vexpress-gemini/Kconfig index 680c776d0f..fb1c5acd61 100644 --- a/bsp/qemu-vexpress-gemini/Kconfig +++ b/bsp/qemu-vexpress-gemini/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/raspi2/Kconfig b/bsp/raspi2/Kconfig index d2a2d11399..f28e22a697 100644 --- a/bsp/raspi2/Kconfig +++ b/bsp/raspi2/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/rv32m1_vega/ri5cy/Kconfig b/bsp/rv32m1_vega/ri5cy/Kconfig index 043ed24548..c72e2ea344 100644 --- a/bsp/rv32m1_vega/ri5cy/Kconfig +++ b/bsp/rv32m1_vega/ri5cy/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/simulator/Kconfig b/bsp/simulator/Kconfig index 7014632801..1832033b4e 100644 --- a/bsp/simulator/Kconfig +++ b/bsp/simulator/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/libraries/templates/stm32f0xx/Kconfig b/bsp/stm32/libraries/templates/stm32f0xx/Kconfig index 2b30840a3e..7a400db91f 100644 --- a/bsp/stm32/libraries/templates/stm32f0xx/Kconfig +++ b/bsp/stm32/libraries/templates/stm32f0xx/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/libraries/templates/stm32f10x/Kconfig b/bsp/stm32/libraries/templates/stm32f10x/Kconfig index 2b30840a3e..7a400db91f 100644 --- a/bsp/stm32/libraries/templates/stm32f10x/Kconfig +++ b/bsp/stm32/libraries/templates/stm32f10x/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/libraries/templates/stm32f4xx/Kconfig b/bsp/stm32/libraries/templates/stm32f4xx/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/libraries/templates/stm32f4xx/Kconfig +++ b/bsp/stm32/libraries/templates/stm32f4xx/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/libraries/templates/stm32f7xx/Kconfig b/bsp/stm32/libraries/templates/stm32f7xx/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/libraries/templates/stm32f7xx/Kconfig +++ b/bsp/stm32/libraries/templates/stm32f7xx/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/libraries/templates/stm32l4xx/Kconfig b/bsp/stm32/libraries/templates/stm32l4xx/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/libraries/templates/stm32l4xx/Kconfig +++ b/bsp/stm32/libraries/templates/stm32l4xx/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f091-st-nucleo/Kconfig b/bsp/stm32/stm32f091-st-nucleo/Kconfig index 2b30840a3e..7a400db91f 100644 --- a/bsp/stm32/stm32f091-st-nucleo/Kconfig +++ b/bsp/stm32/stm32f091-st-nucleo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f103-atk-nano/Kconfig b/bsp/stm32/stm32f103-atk-nano/Kconfig index 2b30840a3e..7a400db91f 100644 --- a/bsp/stm32/stm32f103-atk-nano/Kconfig +++ b/bsp/stm32/stm32f103-atk-nano/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f103-fire-arbitrary/Kconfig b/bsp/stm32/stm32f103-fire-arbitrary/Kconfig index 2b30840a3e..7a400db91f 100644 --- a/bsp/stm32/stm32f103-fire-arbitrary/Kconfig +++ b/bsp/stm32/stm32f103-fire-arbitrary/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f407-atk-explorer/Kconfig b/bsp/stm32/stm32f407-atk-explorer/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f407-atk-explorer/Kconfig +++ b/bsp/stm32/stm32f407-atk-explorer/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f407-st-discovery/Kconfig b/bsp/stm32/stm32f407-st-discovery/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f407-st-discovery/Kconfig +++ b/bsp/stm32/stm32f407-st-discovery/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f411-st-nucleo/Kconfig b/bsp/stm32/stm32f411-st-nucleo/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f411-st-nucleo/Kconfig +++ b/bsp/stm32/stm32f411-st-nucleo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f429-armfly-v6/Kconfig b/bsp/stm32/stm32f429-armfly-v6/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f429-armfly-v6/Kconfig +++ b/bsp/stm32/stm32f429-armfly-v6/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f429-atk-apollo/Kconfig b/bsp/stm32/stm32f429-atk-apollo/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f429-atk-apollo/Kconfig +++ b/bsp/stm32/stm32f429-atk-apollo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f429-fire-challenger/Kconfig b/bsp/stm32/stm32f429-fire-challenger/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f429-fire-challenger/Kconfig +++ b/bsp/stm32/stm32f429-fire-challenger/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f446-st-nucleo/Kconfig b/bsp/stm32/stm32f446-st-nucleo/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f446-st-nucleo/Kconfig +++ b/bsp/stm32/stm32f446-st-nucleo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f767-atk-apollo/Kconfig b/bsp/stm32/stm32f767-atk-apollo/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f767-atk-apollo/Kconfig +++ b/bsp/stm32/stm32f767-atk-apollo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32f767-fire-challenger/Kconfig b/bsp/stm32/stm32f767-fire-challenger/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32f767-fire-challenger/Kconfig +++ b/bsp/stm32/stm32f767-fire-challenger/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32/stm32l475-atk-pandora/Kconfig b/bsp/stm32/stm32l475-atk-pandora/Kconfig index d174bcc585..8cbc7b71a8 100644 --- a/bsp/stm32/stm32l475-atk-pandora/Kconfig +++ b/bsp/stm32/stm32l475-atk-pandora/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f107/Kconfig b/bsp/stm32f107/Kconfig index 74b4e6f380..50b5b35d0e 100644 --- a/bsp/stm32f107/Kconfig +++ b/bsp/stm32f107/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,12 +13,12 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example: default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" -config $ENV_DIR +config ENV_DIR string option env="ENV_ROOT" default "/" diff --git a/bsp/stm32f10x-HAL/Kconfig b/bsp/stm32f10x-HAL/Kconfig index 2b3ffc04af..6bad2193fe 100644 --- a/bsp/stm32f10x-HAL/Kconfig +++ b/bsp/stm32f10x-HAL/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f10x/Kconfig b/bsp/stm32f10x/Kconfig index 15d3caa2b5..1c5daf9b39 100644 --- a/bsp/stm32f10x/Kconfig +++ b/bsp/stm32f10x/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f20x/Kconfig b/bsp/stm32f20x/Kconfig index b29258d60e..889e08af79 100644 --- a/bsp/stm32f20x/Kconfig +++ b/bsp/stm32f20x/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f40x/Kconfig b/bsp/stm32f40x/Kconfig index 939181306b..0eda592e17 100644 --- a/bsp/stm32f40x/Kconfig +++ b/bsp/stm32f40x/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Project Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f411-nucleo/Kconfig b/bsp/stm32f411-nucleo/Kconfig index eccda0aefe..49c6451616 100644 --- a/bsp/stm32f411-nucleo/Kconfig +++ b/bsp/stm32f411-nucleo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f429-apollo/Kconfig b/bsp/stm32f429-apollo/Kconfig index 43dcbee27f..abd2d9d6f7 100644 --- a/bsp/stm32f429-apollo/Kconfig +++ b/bsp/stm32f429-apollo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f429-armfly/Kconfig b/bsp/stm32f429-armfly/Kconfig index 68987b22a9..fb12ceb6b5 100644 --- a/bsp/stm32f429-armfly/Kconfig +++ b/bsp/stm32f429-armfly/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f429-disco/Kconfig b/bsp/stm32f429-disco/Kconfig index 0f647d8cec..4409aa2972 100644 --- a/bsp/stm32f429-disco/Kconfig +++ b/bsp/stm32f429-disco/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f4xx-HAL/Kconfig b/bsp/stm32f4xx-HAL/Kconfig index 95ffd73be8..2e281dbbfd 100644 --- a/bsp/stm32f4xx-HAL/Kconfig +++ b/bsp/stm32f4xx-HAL/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32f7-disco/Kconfig b/bsp/stm32f7-disco/Kconfig index 3c6cca2588..2f976714a5 100644 --- a/bsp/stm32f7-disco/Kconfig +++ b/bsp/stm32f7-disco/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default: "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default: "../.." # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32h743-nucleo/Kconfig b/bsp/stm32h743-nucleo/Kconfig index 07e59e8ebb..a3d2727768 100644 --- a/bsp/stm32h743-nucleo/Kconfig +++ b/bsp/stm32h743-nucleo/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/stm32l476-nucleo/Kconfig b/bsp/stm32l476-nucleo/Kconfig index 0da24775fb..008f0bc05f 100644 --- a/bsp/stm32l476-nucleo/Kconfig +++ b/bsp/stm32l476-nucleo/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default: "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default: "rt-thread" # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/swm320-lq100/Kconfig b/bsp/swm320-lq100/Kconfig index 5c6ef90e9c..70e793458e 100644 --- a/bsp/swm320-lq100/Kconfig +++ b/bsp/swm320-lq100/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/tm4c129x/Kconfig b/bsp/tm4c129x/Kconfig index e6e03d257d..af01ae6a33 100644 --- a/bsp/tm4c129x/Kconfig +++ b/bsp/tm4c129x/Kconfig @@ -1,16 +1,16 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/tms320f28379d/Kconfig b/bsp/tms320f28379d/Kconfig index de11cb4d79..12fe2a87dc 100644 --- a/bsp/tms320f28379d/Kconfig +++ b/bsp/tms320f28379d/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" diff --git a/bsp/x1000/Kconfig b/bsp/x1000/Kconfig index adeb609f78..c74dce9bb9 100644 --- a/bsp/x1000/Kconfig +++ b/bsp/x1000/Kconfig @@ -1,11 +1,11 @@ mainmenu "RT-Thread Configuration" -config $BSP_DIR +config BSP_DIR string option env="BSP_ROOT" default "." -config $RTT_DIR +config RTT_DIR string option env="RTT_ROOT" default "../.." @@ -13,7 +13,7 @@ config $RTT_DIR # you can change the RTT_ROOT default "../.." to your rtthread_root, # example : default "F:/git_repositories/rt-thread" -config $PKGS_DIR +config PKGS_DIR string option env="PKGS_ROOT" default "packages" -- GitLab