Skip to content

Commit b49c378

Browse files
bobmoroshevromasku
authored andcommitted
Fix: Add missing --sdk flag to slc signature trust command
The second slc signature trust command in tools.mk was missing the --sdk flag, causing the build to fail with 'No SDK' error.
1 parent 294f910 commit b49c378

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/silabs/tools.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ all: simplicity_sdk commander slc-cli zap trust verify
3333
trust:
3434
@echo "Trusting Silicon Labs SDK signature..."
3535
$(TOOLS_DIR)/slc-cli/slc signature trust --sdk $(TOOLS_DIR)/simplicity_sdk
36-
$(TOOLS_DIR)/slc-cli/slc signature trust -extpath $(abspath $(TOOLS_DIR)/spiflash_extension)
36+
$(TOOLS_DIR)/slc-cli/slc signature trust --sdk $(TOOLS_DIR)/simplicity_sdk -extpath $(abspath $(TOOLS_DIR)/spiflash_extension)
3737

3838
# Help target
3939
help:

0 commit comments

Comments
 (0)