Skip to content

Commit 12c4b5b

Browse files
committed
[bsp] Fix RTT_ROOT path problem.
1 parent 4f53743 commit 12c4b5b

File tree

26 files changed

+29
-33
lines changed

26 files changed

+29
-33
lines changed

bsp/Vango/v85xx/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ config BSP_DIR
88
config RTT_DIR
99
string
1010
option env="RTT_ROOT"
11-
default "../.."
11+
default "../../.."
1212

1313
# you can change the RTT_ROOT default: "rt-thread"
1414
# example : default "F:/git_repositories/rt-thread"

bsp/Vango/v85xx/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import rtconfig
55
if os.getenv('RTT_ROOT'):
66
RTT_ROOT = os.getenv('RTT_ROOT')
77
else:
8-
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
8+
RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
99

1010
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
1111
try:

bsp/Vango/v85xxp/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ config BSP_DIR
88
config RTT_DIR
99
string
1010
option env="RTT_ROOT"
11-
default "../.."
11+
default "../../.."
1212

1313
# you can change the RTT_ROOT default: "rt-thread"
1414
# example : default "F:/git_repositories/rt-thread"

bsp/Vango/v85xxp/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import rtconfig
55
if os.getenv('RTT_ROOT'):
66
RTT_ROOT = os.getenv('RTT_ROOT')
77
else:
8-
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
8+
RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
99

1010
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
1111
try:

bsp/acm32/acm32f0x0-nucleo/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ config BSP_DIR
88
config RTT_DIR
99
string
1010
option env="RTT_ROOT"
11-
default "../.."
11+
default "../../.."
1212

1313
config PKGS_DIR
1414
string

bsp/acm32/acm32f0x0-nucleo/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import rtconfig
55
if os.getenv('RTT_ROOT'):
66
RTT_ROOT = os.getenv('RTT_ROOT')
77
else:
8-
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
8+
RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
99

1010
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
1111
try:

bsp/acm32/acm32f4xx-nucleo/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ config BSP_DIR
88
config RTT_DIR
99
string
1010
option env="RTT_ROOT"
11-
default "../.."
11+
default "../../.."
1212

1313
config PKGS_DIR
1414
string

bsp/acm32/acm32f4xx-nucleo/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import rtconfig
55
if os.getenv('RTT_ROOT'):
66
RTT_ROOT = os.getenv('RTT_ROOT')
77
else:
8-
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
8+
RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
99

1010
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
1111
from building import *

bsp/at91/at91sam9260/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ config BSP_DIR
88
config RTT_DIR
99
string
1010
option env="RTT_ROOT"
11-
default "../.."
11+
default "../../.."
1212

1313
config PKGS_DIR
1414
string

bsp/at91/at91sam9260/SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import rtconfig
55
if os.getenv('RTT_ROOT'):
66
RTT_ROOT = os.getenv('RTT_ROOT')
77
else:
8-
RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
8+
RTT_ROOT = os.path.normpath(os.getcwd() + '/../../..')
99

1010
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
1111
from building import *

0 commit comments

Comments
 (0)