From 5325353a1681d5979532c0111eb7c39afcea173e Mon Sep 17 00:00:00 2001 From: ChuckVanzant Date: Tue, 26 Aug 2025 03:59:48 -0500 Subject: [PATCH] fix tinyuf2 partitons.csv name (#267) thx --- boards/adafruit_feather_esp32s2.json | 2 +- boards/adafruit_feather_esp32s2_reversetft.json | 2 +- boards/adafruit_feather_esp32s2_tft.json | 2 +- boards/adafruit_feather_esp32s3.json | 2 +- boards/adafruit_feather_esp32s3_nopsram.json | 2 +- boards/adafruit_feather_esp32s3_reversetft.json | 2 +- boards/adafruit_feather_esp32s3_tft.json | 2 +- boards/adafruit_funhouse_esp32s2.json | 2 +- boards/adafruit_magtag29_esp32s2.json | 2 +- boards/adafruit_matrixportal_esp32s3.json | 2 +- boards/adafruit_metro_esp32s2.json | 2 +- boards/adafruit_metro_esp32s3.json | 2 +- boards/adafruit_qtpy_esp32s2.json | 2 +- boards/adafruit_qtpy_esp32s3_n4r2.json | 2 +- boards/adafruit_qtpy_esp32s3_nopsram.json | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/boards/adafruit_feather_esp32s2.json b/boards/adafruit_feather_esp32s2.json index 1594c06..2765e16 100644 --- a/boards/adafruit_feather_esp32s2.json +++ b/boards/adafruit_feather_esp32s2.json @@ -2,7 +2,7 @@ "build": { "arduino": { "ldscript": "esp32s2_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv", + "partitions": "tinyuf2-partitions-4MB.csv", "memory_type": "qio_qspi" }, "core": "esp32", diff --git a/boards/adafruit_feather_esp32s2_reversetft.json b/boards/adafruit_feather_esp32s2_reversetft.json index bd1f3ca..5d76977 100644 --- a/boards/adafruit_feather_esp32s2_reversetft.json +++ b/boards/adafruit_feather_esp32s2_reversetft.json @@ -2,7 +2,7 @@ "build": { "arduino": { "ldscript": "esp32s2_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-4MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_feather_esp32s2_tft.json b/boards/adafruit_feather_esp32s2_tft.json index e1e9481..5c13d1d 100644 --- a/boards/adafruit_feather_esp32s2_tft.json +++ b/boards/adafruit_feather_esp32s2_tft.json @@ -2,7 +2,7 @@ "build": { "arduino": { "ldscript": "esp32s2_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv", + "partitions": "tinyuf2-partitions-4MB.csv", "memory_type": "qio_qspi" }, "core": "esp32", diff --git a/boards/adafruit_feather_esp32s3.json b/boards/adafruit_feather_esp32s3.json index f668544..d1e336a 100644 --- a/boards/adafruit_feather_esp32s3.json +++ b/boards/adafruit_feather_esp32s3.json @@ -2,7 +2,7 @@ "build": { "arduino":{ "ldscript": "esp32s3_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-4MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_feather_esp32s3_nopsram.json b/boards/adafruit_feather_esp32s3_nopsram.json index b38d0f8..f9f29a0 100644 --- a/boards/adafruit_feather_esp32s3_nopsram.json +++ b/boards/adafruit_feather_esp32s3_nopsram.json @@ -2,7 +2,7 @@ "build": { "arduino":{ "ldscript": "esp32s3_out.ld", - "partitions": "partitions-8MB-tinyuf2.csv", + "partitions": "tinyuf2-partitions-8MB.csv", "memory_type": "qio_qspi" }, "core": "esp32", diff --git a/boards/adafruit_feather_esp32s3_reversetft.json b/boards/adafruit_feather_esp32s3_reversetft.json index c9209de..cdde7bd 100644 --- a/boards/adafruit_feather_esp32s3_reversetft.json +++ b/boards/adafruit_feather_esp32s3_reversetft.json @@ -2,7 +2,7 @@ "build": { "arduino": { "ldscript": "esp32s3_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv", + "partitions": "tinyuf2-partitions-4MB.csv", "memory_type": "qio_qspi" }, "core": "esp32", diff --git a/boards/adafruit_feather_esp32s3_tft.json b/boards/adafruit_feather_esp32s3_tft.json index a37b7e4..e8ebfcf 100644 --- a/boards/adafruit_feather_esp32s3_tft.json +++ b/boards/adafruit_feather_esp32s3_tft.json @@ -1,7 +1,7 @@ { "build": { "arduino": { - "partitions": "partitions-4MB-tinyuf2.csv", + "partitions": "tinyuf2-partitions-4MB.csv", "memory_type": "qio_qspi" }, "core": "esp32", diff --git a/boards/adafruit_funhouse_esp32s2.json b/boards/adafruit_funhouse_esp32s2.json index eb5ee1d..899842e 100644 --- a/boards/adafruit_funhouse_esp32s2.json +++ b/boards/adafruit_funhouse_esp32s2.json @@ -2,7 +2,7 @@ "build": { "arduino":{ "ldscript": "esp32s2_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-4MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_magtag29_esp32s2.json b/boards/adafruit_magtag29_esp32s2.json index fc51f61..6983455 100644 --- a/boards/adafruit_magtag29_esp32s2.json +++ b/boards/adafruit_magtag29_esp32s2.json @@ -2,7 +2,7 @@ "build": { "arduino":{ "ldscript": "esp32s2_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-4MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_matrixportal_esp32s3.json b/boards/adafruit_matrixportal_esp32s3.json index dfdb07c..12bb6b7 100644 --- a/boards/adafruit_matrixportal_esp32s3.json +++ b/boards/adafruit_matrixportal_esp32s3.json @@ -1,7 +1,7 @@ { "build": { "arduino":{ - "partitions": "partitions-8MB-tinyuf2.csv", + "partitions": "tinyuf2-partitions-8MB.csv", "memory_type": "qio_qspi" }, "core": "esp32", diff --git a/boards/adafruit_metro_esp32s2.json b/boards/adafruit_metro_esp32s2.json index 7f75dfb..eb58895 100644 --- a/boards/adafruit_metro_esp32s2.json +++ b/boards/adafruit_metro_esp32s2.json @@ -2,7 +2,7 @@ "build": { "arduino":{ "ldscript": "esp32s2_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-4MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_metro_esp32s3.json b/boards/adafruit_metro_esp32s3.json index 7b5b77d..f7cc417 100644 --- a/boards/adafruit_metro_esp32s3.json +++ b/boards/adafruit_metro_esp32s3.json @@ -3,7 +3,7 @@ "arduino":{ "ldscript": "esp32s3_out.ld", "memory_type": "qio_opi", - "partitions": "partitions-16MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-16MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_qtpy_esp32s2.json b/boards/adafruit_qtpy_esp32s2.json index 51beac6..8a4dea1 100644 --- a/boards/adafruit_qtpy_esp32s2.json +++ b/boards/adafruit_qtpy_esp32s2.json @@ -2,7 +2,7 @@ "build": { "arduino": { "ldscript": "esp32s2_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-4MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_qtpy_esp32s3_n4r2.json b/boards/adafruit_qtpy_esp32s3_n4r2.json index ec2b764..2b82d0c 100644 --- a/boards/adafruit_qtpy_esp32s3_n4r2.json +++ b/boards/adafruit_qtpy_esp32s3_n4r2.json @@ -2,7 +2,7 @@ "build": { "arduino": { "ldscript": "esp32s3_out.ld", - "partitions": "partitions-4MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-4MB.csv" }, "core": "esp32", "extra_flags": [ diff --git a/boards/adafruit_qtpy_esp32s3_nopsram.json b/boards/adafruit_qtpy_esp32s3_nopsram.json index 989ca78..b9beaa3 100644 --- a/boards/adafruit_qtpy_esp32s3_nopsram.json +++ b/boards/adafruit_qtpy_esp32s3_nopsram.json @@ -2,7 +2,7 @@ "build": { "arduino": { "ldscript": "esp32s3_out.ld", - "partitions": "partitions-8MB-tinyuf2.csv" + "partitions": "tinyuf2-partitions-8MB.csv" }, "core": "esp32", "extra_flags": [