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 c08133b83..bf8ea3eb2 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 5e639f4e5..f2171e022 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 544cb4202..cf15b0089 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 f07968f98..fcc0b7f70 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 a3d9b2e51..face1126b 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 7bce24ab3..57926af40 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 7c2d7799a..5fe94df8e 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 c1e97ccd3..e4706f4d4 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 e5e782777..776ad7a27 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 27dcf550f..cecf75498 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 b76747caf..ab8d23cfb 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 a54e2f40b..305671a12 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 68a1d983d..0e15f9cc1 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 6aa07d476..6c36086c8 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 6a9e20246..5a1991863 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 b2e97fc33..450ba25af 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 3d1f1315f..0abdcab46 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 4c52aa9f6..e586d1b5b 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 052b48cd3..4a4833398 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 86c8134c8..a4613012c 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 262e2e518..e3f4eca2d 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 b6c00e8e2..1503876ae 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 1b46858ab..42f1ea0b6 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 9bf0ad526..a74e2411f 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 680c776d0..fb1c5acd6 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 d2a2d1139..f28e22a69 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 043ed2454..c72e2ea34 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 701463280..1832033b4 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 2b30840a3..7a400db91 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 2b30840a3..7a400db91 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 2b30840a3..7a400db91 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 2b30840a3..7a400db91 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 2b30840a3..7a400db91 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 d174bcc58..8cbc7b71a 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 74b4e6f38..50b5b35d0 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 2b3ffc04a..6bad2193f 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 15d3caa2b..1c5daf9b3 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 b29258d60..889e08af7 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 939181306..0eda592e1 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 eccda0aef..49c645161 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 43dcbee27..abd2d9d6f 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 68987b22a..fb12ceb6b 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 0f647d8ce..4409aa297 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 95ffd73be..2e281dbbf 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 3c6cca258..2f976714a 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 07e59e8eb..a3d272776 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 0da24775f..008f0bc05 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 5c6ef90e9..70e793458 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 e6e03d257..af01ae6a3 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 de11cb4d7..12fe2a87d 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 adeb609f7..c74dce9bb 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