Use model number in partitions filename

This is in preparation of support for newer ESP32 variants.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
This commit is contained in:
Stijn Tintel 2022-03-05 14:26:19 +02:00
parent a7ba7e9f03
commit 8a205631c3
2 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ ESP32_DEFAULT_BOOTLOADER_FORMAT = (
"2.0.2/tools/sdk/$MODEL$/bin/bootloader_$FLASH_MODE$_$FLASH_FREQ$.bin"
)
ESP32_DEFAULT_PARTITIONS = (
"https://raw.githubusercontent.com/esphome/esphomeflasher/main/partitions.bin"
"https://raw.githubusercontent.com/esphome/esphomeflasher/main/partitions.esp32.bin"
)
# https://stackoverflow.com/a/3809435/8924614