Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c78b27e

Browse files
authoredMar 1, 2025··
Merge pull request #579 from ChinYikMing/fix-linux-image-SHA-verify
Correct the filename of Linux image when verification
2 parents 798ffcd + 75c4ed6 commit c78b27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎mk/artifact.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ ifeq ($(call has, SYSTEM), 1)
8484
$(Q)$(eval PREBUILT_LINUX_IMAGE_FILENAME := $(shell cat $(BIN_DIR)/sha1sum-linux-image | awk '{ print $$2 };'))
8585

8686
$(Q)$(eval $(foreach FILE,$(PREBUILT_LINUX_IMAGE_FILENAME), \
87-
$(call verify,$(SHA1SUM),$(shell grep -w $(FILE) $(BIN_DIR)/sha1sum-linux-image | awk '{ print $$1 };'),$(BIN_DIR)/linux-image/$(FILE),RES) \
87+
$(call verify,$(SHA1SUM),$(shell grep -w $(FILE) $(BIN_DIR)/sha1sum-linux-image | awk '{ print $$1 };'),$(BIN_DIR)/$(FILE),RES) \
8888
))
8989

9090
$(Q)$(eval RV32EMU_PREBUILT_TARBALL := rv32emu-linux-image-prebuilt.tar.gz)

0 commit comments

Comments
 (0)
Please sign in to comment.