]> granicus.if.org Git - esp-idf/commitdiff
bootloader: Don't use check_python_dependencies in the bootloader command
authorRoland Dobai <dobai.roland@gmail.com>
Mon, 20 Aug 2018 09:07:27 +0000 (11:07 +0200)
committerRoland Dobai <dobai.roland@gmail.com>
Thu, 23 Aug 2018 09:41:40 +0000 (11:41 +0200)
components/bootloader/Makefile.projbuild

index 0ca615d32740b4c68a38c3fdaacb5926769c8872..d8fa2a5ca446f0b42f16528a8d240a109ae0d223 100644 (file)
@@ -49,7 +49,7 @@ ifndef CONFIG_SECURE_BOOT_ENABLED
 # If secure boot disabled, bootloader flashing is integrated
 # with 'make flash' and no warnings are printed.
 
-bootloader: $(BOOTLOADER_BIN) check_python_dependencies
+bootloader: $(BOOTLOADER_BIN) check_python_dependencies
        @echo $(SEPARATOR)
        @echo "Bootloader built. Default flash command is:"
        @echo "$(ESPTOOLPY_WRITE_FLASH) $(BOOTLOADER_OFFSET) $^"
@@ -67,7 +67,7 @@ else ifdef CONFIG_SECURE_BOOTLOADER_ONE_TIME_FLASH
 # The flashing command is deliberately printed without an auto-reset
 # step, so the device doesn't immediately reset to flash itself.
 
-bootloader: $(BOOTLOADER_BIN) check_python_dependencies
+bootloader: $(BOOTLOADER_BIN) check_python_dependencies
        @echo $(SEPARATOR)
        @echo "Bootloader built. One-time flash command is:"
        @echo "$(subst hard_reset,no_reset,$(ESPTOOLPY_WRITE_FLASH)) $(BOOTLOADER_OFFSET) $(BOOTLOADER_BIN)"