Skip to content

Commit 661f7c3

Browse files
Add bootloader to silabs artifacts (project-chip#29918)
* Modified gn_silabs_example shell script to add bootloader to generated binary * Restyled by shellharden * Restyled by shfmt --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 947b6e2 commit 661f7c3

File tree

1 file changed

+48
-1
lines changed

1 file changed

+48
-1
lines changed

scripts/examples/gn_silabs_example.sh

+48-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ USE_GIT_SHA_FOR_VERSION=true
3636
USE_SLC=false
3737
GN_PATH=gn
3838
GN_PATH_PROVIDED=false
39-
39+
USE_BOOTLOADER=false
4040
DOTFILE=".gn"
4141

4242
SILABS_THREAD_TARGET=\""../silabs:ot-efr32-cert"\"
@@ -138,6 +138,9 @@ if [ "$#" == "0" ]; then
138138
Generate files with SLC for current board and options Requires an SLC-CLI installation or running in Docker.
139139
--slc_reuse_files
140140
Use generated files without running slc again.
141+
--bootloader
142+
Add bootloader to the generated image.
143+
141144
142145
"
143146
elif [ "$#" -lt "2" ]; then
@@ -218,6 +221,10 @@ else
218221
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 "
219222
shift
220223
;;
224+
--bootloader)
225+
USE_BOOTLOADER=true
226+
shift
227+
;;
221228
--docker)
222229
optArgs+="efr32_sdk_root=\"$GSDK_ROOT\" "
223230
USE_DOCKER=true
@@ -327,4 +334,44 @@ else
327334
#print stats
328335
arm-none-eabi-size -A "$BUILD_DIR"/*.out
329336

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
330377
fi

0 commit comments

Comments
 (0)