forked from openwsn-berkeley/openwsn-fw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SConstruct
387 lines (351 loc) · 15.1 KB
/
SConstruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
import os
import sys
import platform
import SCons
#============================ banner ==========================================
banner = []
banner += [""]
banner += [" ___ _ _ _ ___ _ _ "]
banner += ["| . | ___ ___ ._ _ | | | |/ __>| \ |"]
banner += ["| | || . \/ ._>| ' || | | |\__ \| |"]
banner += ["`___'| _/\___.|_|_||__/_/ <___/|_\_|"]
banner += [" |_| openwsn.org"]
banner += [""]
banner = '\n'.join(banner)
print banner
#===== help text
Help('''
Usage:
scons [<variable>=<value> ...] <project>
scons docs
scons [help-option]
project:
A project is represented by a subdirectory of the projects directory, for
a particular board. For example, the 'oos_openwsn' project may be built for
telosb. To specify a project, exclude the leading digits in the directory
name, like '03' for oos_openwsn.
variable=value pairs
These pairs qualify how the project is built, and are organized here into
functional groups. Below each variable's description are the valid
options, with the default value listed first.
board Board to build for. 'python' is for software simulation.
telosb, wsn430v14, wsn430v13b, gina, z1, python,
iot-lab_M3, iot-lab_A8-M3
toolchain Toolchain implementation. The 'python' board requires gcc
(MinGW on Windows build host).
mspgcc, iar, iar-proj, gcc
Connected hardware variables:
bootload Location of the board to bootload the binary on.
COMx for Windows, /dev entries for Linux
Supports parallel operation with a comma-separated list,
for example 'COM5,COM6,COM7'.
jtag Location of the board to JTAG the binary to.
COMx for Windows, /dev entry for Linux
fet_version Firmware version running on the MSP-FET430uif for jtag.
2, 3
Simulation variables:
fastsim Compiles the firmware for fast simulation.
1 (on), 0 (off)
These simulation variables are for a cross-platform build, and are valid
only from an amd64-linux build host.
simhost Host platform and OS for simulation. Default selection is
the current platform/OS, which of course is not a cross-
build. '-windows' cross-builds require MinGW-w64 toolchain.
amd64-linux, x86-linux, amd64-windows, x86-windows
simhostpy Home directory for simhost cross-build Python headers and
shared library.
Variables for special use cases.
dagroot Setting a mote as DAG root is typically done through
OpenVisualizer. In some rare cases when the OpenVisualizer
cannot send commands to the mote (e.g. IoT-LAB platform),
use this flag to build a firmware image which is, by
default, in DAG root mode.
forcetopology Force the topology to the one indicated in the
openstack/02a-MAClow/topology.c file.
noadaptivesync Do not use adaptive synchronization.
cryptoengine Select appropriate crypto engine implementation
(dummy_crypto_engine, firmware_crypto_engine,
board_crypto_engine).
l2_security Use hop-by-hop encryption and authentication.
goldenImage sniffer, root or none(default)
Common variables:
verbose Print each complete compile/link command.
0 (off), 1 (on)
docs:
Generate source documentation in build{0}docs{0}html directory
help-option:
--help Display help text. Also display when no parameters to the
scons scommand.
'''.format(os.sep))
#============================ options =========================================
# first value is default
command_line_options = {
'board': [
# MSP430
'telosb',
'gina',
'wsn430v13b',
'wsn430v14',
'z1',
# Cortex-M3
'OpenMote-CC2538',
'openmotestm',
'iot-lab_M3',
'iot-lab_A8-M3',
'agilefox',
# misc.
'python',
],
'toolchain': [
'mspgcc',
'iar',
'iar-proj',
'armgcc',
'gcc',
],
'kernel': [
'openos',
'freertos',
],
'fet_version': ['2','3'],
'verbose': ['0','1'],
'fastsim': ['1','0'],
'simhost': ['amd64-linux','x86-linux','amd64-windows','x86-windows'],
'simhostpy': [''], # No reasonable default
'dagroot': ['0','1'],
'forcetopology': ['0','1'],
'debug': ['0','1'],
'noadaptivesync': ['0','1'],
'cryptoengine': ['', 'dummy_crypto_engine', 'firmware_crypto_engine', 'board_crypto_engine'],
'l2_security': ['0','1'],
'goldenImage': ['none','root','sniffer'],
}
def validate_option(key, value, env):
if key not in command_line_options:
raise ValueError("Unknown switch {0}.".format(key))
if value not in command_line_options[key]:
raise ValueError("Unknown {0} \"{1}\". Options are {2}.\n\n".format(key,value,','.join(command_line_options[key])))
def validate_apps(key, value, env):
assert key=='apps'
if not value.strip():
return
requestedApps = value.split(',')
availableApps = [f for f in os.listdir('openapps') if not os.path.isfile(os.path.join('openapps',f))]
unknownApps = list(set(requestedApps) - set(availableApps))
if unknownApps:
raise ValueError(
"Unknown app(s) {0}. Available apps are {1}.\n\n".format(
','.join(unknownApps),
','.join(availableApps),
)
)
# Define default value for simhost option
if os.name=='nt':
defaultHost = 2
else:
defaultHost = 0 if platform.architecture()[0]=='64bit' else 1
command_line_vars = Variables()
command_line_vars.AddVariables(
(
'board', # key
'', # help
command_line_options['board'][0], # default
validate_option, # validator
None, # converter
),
(
'toolchain', # key
'', # help
command_line_options['toolchain'][0], # default
validate_option, # validator
None, # converter
),
(
'kernel', # key
'', # help
command_line_options['kernel'][0], # default
validate_option, # validator
None, # converter
),
(
'jtag', # key
'', # help
'', # default
None, # validator
None, # converter
),
(
'fet_version', # key
'', # help
command_line_options['fet_version'][0], # default
validate_option, # validator
int, # converter
),
(
'bootload', # key
'', # help
'', # default
None, # validator
None, # converter
),
(
'verbose', # key
'', # help
command_line_options['verbose'][0], # default
validate_option, # validator
int, # converter
),
(
'fastsim', # key
'', # help
command_line_options['fastsim'][0], # default
validate_option, # validator
int, # converter
),
(
'simhost', # key
'', # help
command_line_options['simhost'][defaultHost], # default
validate_option, # validator
None, # converter
),
(
'simhostpy', # key
'', # help
command_line_options['simhostpy'][0], # default
None, # validator
None, # converter
),
(
'dagroot', # key
'', # help
command_line_options['dagroot'][0], # default
validate_option, # validator
int, # converter
),
(
'forcetopology', # key
'', # help
command_line_options['forcetopology'][0], # default
validate_option, # validator
int, # converter
),
(
'cryptoengine', # key
'', # help
command_line_options['cryptoengine'][0], # default
validate_option, # validator
None, # converter
),
(
'debug', # key
'', # help
command_line_options['debug'][0], # default
validate_option, # validator
int, # converter
),
(
'noadaptivesync', # key
'', # help
command_line_options['noadaptivesync'][0], # default
validate_option, # validator
int, # converter
),
(
'l2_security', # key
'', # help
command_line_options['l2_security'][0], # default
validate_option, # validator
int, # converter
),
# create an golden image for interop testing
(
'goldenImage', # key
'', # help
command_line_options['goldenImage'][0], # default
validate_option, # validator
None, # converter
),
(
'apps', # key
'comma-separated list of user applications', # help
'', # default
validate_apps, # validator
None, # converter
),
)
if os.name=='nt':
env = Environment(
tools = ['mingw'],
variables = command_line_vars
)
else:
simhost = ARGUMENTS.get('simhost', 'none')
board = ARGUMENTS.get('board', 'none')
if board=='python' and simhost.endswith('-windows'):
# Cross-compile for simulation on Windows
env = Environment(
# crossMingw64 requires 'mingw_prefer_amd64' key
tools = ['crossMingw64'],
mingw_prefer_amd64 = simhost.startswith('amd64-'),
variables = command_line_vars
)
else:
env = Environment(
variables = command_line_vars
)
def default(env,target,source): print SCons.Script.help_text
Default(env.Command('default', None, default))
#============================ verbose =========================================
if not env['verbose']:
env[ 'CCCOMSTR'] = "Compiling $TARGET"
env[ 'SHCCCOMSTR'] = "Compiling (shared) $TARGET"
env[ 'ARCOMSTR'] = "Archiving $TARGET"
env['RANLIBCOMSTR'] = "Indexing $TARGET"
env[ 'LINKCOMSTR'] = "Linking $TARGET"
env['SHLINKCOMSTR'] = "Linking (shared) $TARGET"
#============================ load SConscript's ===============================
# initialize targets
env['targets'] = {
'all': [],
'all_std': [],
'all_bsp': [],
'all_drv': [],
'all_oos': [],
}
# include docs SConscript
env.SConscript(
os.path.join('docs','SConscript'),
exports = ['env'],
)
# include main SConscript
# which will discover targets for this board/toolchain
env.SConscript(
'SConscript',
exports = ['env'],
)
# declare target group alias
for k,v in env['targets'].items():
Alias(k,v)
#============================ admin targets ===================================
#===== list
def listFunction(env,target,source):
output = []
output += ['\n']
output += ['Avaiable targets for board={0} toolchain={1}'.format(env['board'],env['toolchain'])]
output += ['\n']
for k,v in env['targets'].items():
output += [' - {0}'.format(k)]
for t in v:
output += [' - {0}'.format(t)]
output = '\n'.join(output)
print output
list = env.Command('list', None, listFunction)
AlwaysBuild(list)
Alias('list',list)
#===== env
def envFunction(env,target,source):
print env.Dump()
envCommand = env.Command('env', None, envFunction)
AlwaysBuild(envCommand)
Alias('env',envCommand)