@@ -36,7 +36,7 @@ USE_GIT_SHA_FOR_VERSION=true
36
36
USE_SLC=false
37
37
GN_PATH=gn
38
38
GN_PATH_PROVIDED=false
39
-
39
+ USE_BOOTLOADER=false
40
40
DOTFILE=" .gn"
41
41
42
42
SILABS_THREAD_TARGET=\" " ../silabs:ot-efr32-cert" \"
@@ -138,6 +138,9 @@ if [ "$#" == "0" ]; then
138
138
Generate files with SLC for current board and options Requires an SLC-CLI installation or running in Docker.
139
139
--slc_reuse_files
140
140
Use generated files without running slc again.
141
+ --bootloader
142
+ Add bootloader to the generated image.
143
+
141
144
142
145
"
143
146
elif [ " $# " -lt " 2" ]; then
@@ -218,6 +221,10 @@ else
218
221
optArgs+=" is_debug=false disable_lcd=true chip_build_libshell=false enable_openthread_cli=false use_external_flash=false chip_logging=false silabs_log_enabled=false "
219
222
shift
220
223
;;
224
+ --bootloader)
225
+ USE_BOOTLOADER=true
226
+ shift
227
+ ;;
221
228
--docker)
222
229
optArgs+=" efr32_sdk_root=\" $GSDK_ROOT \" "
223
230
USE_DOCKER=true
@@ -327,4 +334,44 @@ else
327
334
# print stats
328
335
arm-none-eabi-size -A " $BUILD_DIR " /* .out
329
336
337
+ # add bootloader to generated image
338
+ if [ " $USE_BOOTLOADER " == true ]; then
339
+
340
+ binName=" "
341
+ InternalBootloaderBoards=(" BRD4337A" " BRD2704A" " BRD2703A" " BRD4319A" )
342
+ bootloaderPath=" "
343
+ commanderPath=" "
344
+ # find the matter root folder
345
+ if [ -z " $MATTER_ROOT " ]; then
346
+ MATTER_ROOT=" $CHIP_ROOT "
347
+ fi
348
+
349
+ # set commander path
350
+ if [ -z " $COMMANDER_PATH " ]; then
351
+ commanderPath=" commander"
352
+ else
353
+ commanderPath=" $COMMANDER_PATH "
354
+ fi
355
+
356
+ # search bootloader directory for the respective bootloaders for the input board
357
+ bootloaderFiles=(" $( find " $MATTER_ROOT /third_party/silabs/matter_support/matter/efr32/bootloader_binaries/" -maxdepth 1 -name " *$SILABS_BOARD *" | tr ' \n' ' ' ) " )
358
+
359
+ if [ " ${# bootloaderFiles[@]} " -gt 1 ]; then
360
+ for i in " ${! bootloaderFiles[@]} " ; do
361
+ # if a variant of the bootloader that uses external flash exists, use that one.
362
+ if [[ " ${bootloaderFiles[$i]} " =~ .* " spiflash" .* ]]; then
363
+ bootloaderPath=" ${bootloaderFiles[$i]} "
364
+ break
365
+ fi
366
+ done
367
+ elif [ " ${# bootloaderFiles[@]} " -eq 0 ]; then
368
+ echo " A bootloader for the $SILABS_BOARD currently doesn't exist!"
369
+ else
370
+ bootloaderPath=" ${bootloaderFiles[0]} "
371
+ fi
372
+ echo " $bootloaderPath "
373
+ binName=" $( find " $BUILD_DIR " -type f -name " *.s37" ) "
374
+ echo " $binName "
375
+ " $commanderPath " convert " $binName " " $bootloaderPath " -o " $binName "
376
+ fi
330
377
fi
0 commit comments