Skip to content

Commit ef62feb

Browse files
committed
[SConscript]update group name
1 parent ba83ddc commit ef62feb

File tree

132 files changed

+133
-133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+133
-133
lines changed

bsp/allwinner_tina/libcpu/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ CPPPATH = [cwd]
88
if rtconfig.PLATFORM == 'gcc':
99
src += Glob('*_gcc.S')
1010

11-
group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
11+
group = DefineGroup('CPU', src, depend = [''], CPPPATH = CPPPATH)
1212

1313
Return('group')

bsp/amebaz/libraries/smartconfig/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if rtconfig.CROSS_TOOL == 'gcc':
1212
elif rtconfig.CROSS_TOOL == 'iar':
1313
libs += ['libsmartconfig_armcm4_iar']
1414

15-
group = DefineGroup('smartconfig', src, depend = ['RT_USING_SMARTCONFIG_LIB'], CPPPATH = path, LIBS = libs, LIBPATH = libpath)
15+
group = DefineGroup('Libraries', src, depend = ['RT_USING_SMARTCONFIG_LIB'], CPPPATH = path, LIBS = libs, LIBPATH = libpath)
1616

1717
Return('group')
1818

bsp/apollo2/board/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ CPPPATH = [cwd]
99
#remove other no use files
1010
#SrcRemove(src, '*.c')
1111

12-
group = DefineGroup('Board', src, depend = [''], CPPPATH = CPPPATH)
12+
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
1313

1414
Return('group')

bsp/asm9260t/platform/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ CPPPATH = [cwd]
88
# The set of source files associated with this SConscript file.
99
src = Glob('*.c')
1010

11-
group = DefineGroup('platform', src, depend = [''], CPPPATH = CPPPATH)
11+
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
1212
Return('group')

bsp/at32/Libraries/AT32_Std_Driver/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ path = [
4141

4242
CPPDEFINES = ['USE_STDPERIPH_DRIVER']
4343

44-
group = DefineGroup('AT32_Lib', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
44+
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, CPPDEFINES = CPPDEFINES)
4545

4646
Return('group')

bsp/at91sam9260/platform/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ if rtconfig.PLATFORM == 'cl':
2121
if rtconfig.PLATFORM == 'mingw':
2222
src = Glob('*.c')
2323

24-
group = DefineGroup('platform', src, depend = [''], CPPPATH = CPPPATH)
24+
group = DefineGroup('Platform', src, depend = [''], CPPPATH = CPPPATH)
2525

2626
Return('group')

bsp/at91sam9g45/platform/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ if rtconfig.PLATFORM == 'cl':
2121
if rtconfig.PLATFORM == 'mingw':
2222
src = Glob('*.c')
2323

24-
group = DefineGroup('platform', src, depend = [''], CPPPATH = CPPPATH)
24+
group = DefineGroup('Platform', src, depend = [''], CPPPATH = CPPPATH)
2525

2626
Return('group')

bsp/avr32uc3b0/SOFTWARE_FRAMEWORK/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ CPPPATH = [
2525
cwd + '/DRIVERS/USART',
2626
]
2727

28-
group = DefineGroup('Startup', src, depend = [''], CPPPATH = CPPPATH)
28+
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = CPPPATH)
2929

3030
Return('group')

bsp/dm365/drivers/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ if GetDepend('RT_USING_SPI_CONTROL'):
2626
if GetDepend('RT_USING_EMAC'):
2727
src += ['davinci_emac.c']
2828

29-
group = DefineGroup('Startup', src, depend = [''], CPPPATH = path)
29+
group = DefineGroup('Drivers', src, depend = [''], CPPPATH = path)
3030

3131
Return('group')

bsp/fh8620/platform/common/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ from building import *
33
cwd = GetCurrentDir()
44
src = Glob('*.c')
55

6-
group = DefineGroup('Platform', src, depend = [''])
6+
group = DefineGroup('Drivers', src, depend = [''])
77

88
Return('group')

0 commit comments

Comments
 (0)