Просмотр исходного кода

bootloader: Fix warning building reflashable Secure Boot image

Angus Gratton 7 лет назад
Родитель
Сommit
6fd6e024fc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      components/bootloader/Makefile.projbuild

+ 1 - 1
components/bootloader/Makefile.projbuild

@@ -107,7 +107,7 @@ bootloader: $(BOOTLOADER_DIGEST_BIN)
 
 $(BOOTLOADER_DIGEST_BIN): $(BOOTLOADER_BIN) $(SECURE_BOOTLOADER_KEY)
 	@echo "DIGEST $(notdir $@)"
-	$(Q) $(ESPSECUREPY) digest_secure_bootloader -k $(SECURE_BOOTLOADER_KEY) -o $@ $<
+	$(ESPSECUREPY) digest_secure_bootloader -k $(SECURE_BOOTLOADER_KEY) -o $@ $<
 
 else # CONFIG_SECURE_BOOT_ENABLED && !CONFIG_SECURE_BOOTLOADER_REFLASHABLE && !CONFIG_SECURE_BOOTLOADER_ONE_TIME_FLASH
 bootloader: