Skip to content

Commit b0d4c9e

Browse files
Chris Friedtcfriedt
authored andcommitted
scripts: build-combined-fwbundle: use semantic version in filename
Use the semantic version in the filename of the firmware bundle rather than the quad-dotted versioning scheme historically used. Going forward, release candidate firmware packs will have names like fw_pack-18.3.0-rc1.fwbundle rather than fw_pack-18.3.0.1.fwbundle, and final releases will have names like fw_pack-18.3.0.fwbundle rather than fw_pack-18.3.0.0.fwbundle. Signed-off-by: Chris Friedt <[email protected]>
1 parent efaf454 commit b0d4c9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/build-combined-fwbundle.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ for REV in $BOARD_REVS; do
6969
>/dev/null 2>&1
7070
done
7171

72-
echo "Creating fw_pack-$PRELEASE.fwbundle"
72+
echo "Creating fw_pack-$RELEASE.fwbundle"
7373
# construct arguments..
7474
ARGS="-c $PWD/$TTZP_BASE/zephyr/blobs/fw_pack-grayskull.tar.gz"
7575
ARGS="$ARGS -c $PWD/$TTZP_BASE/zephyr/blobs/fw_pack-wormhole.tar.gz"
@@ -80,5 +80,5 @@ done
8080
# shellcheck disable=SC2086
8181
tt_boot_fs.py fwbundle \
8282
-v "$PRELEASE" \
83-
-o "fw_pack-$PRELEASE.fwbundle" \
83+
-o "fw_pack-$RELEASE.fwbundle" \
8484
$ARGS

0 commit comments

Comments
 (0)