You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.8 KiB
87 lines
2.8 KiB
# Combine bootloader, partition table and application into a final binary.
|
|
|
|
import os, sys
|
|
|
|
sys.path.append(os.getenv("IDF_PATH") + "/components/partition_table")
|
|
|
|
import gen_esp32part
|
|
|
|
OFFSET_BOOTLOADER_DEFAULT = 0x1000
|
|
OFFSET_PARTITIONS_DEFAULT = 0x8000
|
|
|
|
|
|
def load_sdkconfig_hex_value(filename, value, default):
|
|
value = "CONFIG_" + value + "="
|
|
with open(filename, "r") as f:
|
|
for line in f:
|
|
if line.startswith(value):
|
|
return int(line.split("=", 1)[1], 16)
|
|
return default
|
|
|
|
|
|
def load_partition_table(filename):
|
|
with open(filename, "rb") as f:
|
|
return gen_esp32part.PartitionTable.from_binary(f.read())
|
|
|
|
|
|
# Extract command-line arguments.
|
|
arg_sdkconfig = sys.argv[1]
|
|
arg_bootloader_bin = sys.argv[2]
|
|
arg_partitions_bin = sys.argv[3]
|
|
arg_application_bin = sys.argv[4]
|
|
arg_output_bin = sys.argv[5]
|
|
|
|
# Load required sdkconfig values.
|
|
offset_bootloader = load_sdkconfig_hex_value(
|
|
arg_sdkconfig, "BOOTLOADER_OFFSET_IN_FLASH", OFFSET_BOOTLOADER_DEFAULT
|
|
)
|
|
offset_partitions = load_sdkconfig_hex_value(
|
|
arg_sdkconfig, "PARTITION_TABLE_OFFSET", OFFSET_PARTITIONS_DEFAULT
|
|
)
|
|
|
|
# Load the partition table.
|
|
partition_table = load_partition_table(arg_partitions_bin)
|
|
|
|
max_size_bootloader = offset_partitions - offset_bootloader
|
|
max_size_partitions = 0
|
|
offset_application = 0
|
|
max_size_application = 0
|
|
|
|
# Inspect the partition table to find offsets and maximum sizes.
|
|
for part in partition_table:
|
|
if part.name == "nvs":
|
|
max_size_partitions = part.offset - offset_partitions
|
|
elif part.type == gen_esp32part.APP_TYPE and offset_application == 0:
|
|
offset_application = part.offset
|
|
max_size_application = part.size
|
|
|
|
# Define the input files, their location and maximum size.
|
|
files_in = [
|
|
("bootloader", offset_bootloader, max_size_bootloader, arg_bootloader_bin),
|
|
("partitions", offset_partitions, max_size_partitions, arg_partitions_bin),
|
|
("application", offset_application, max_size_application, arg_application_bin),
|
|
]
|
|
file_out = arg_output_bin
|
|
|
|
# Write output file with combined firmware.
|
|
cur_offset = offset_bootloader
|
|
with open(file_out, "wb") as fout:
|
|
for name, offset, max_size, file_in in files_in:
|
|
assert offset >= cur_offset
|
|
fout.write(b"\xff" * (offset - cur_offset))
|
|
cur_offset = offset
|
|
with open(file_in, "rb") as fin:
|
|
data = fin.read()
|
|
fout.write(data)
|
|
cur_offset += len(data)
|
|
print(
|
|
"%-12s@0x%06x % 8d (% 8d remaining)"
|
|
% (name, offset, len(data), max_size - len(data))
|
|
)
|
|
if len(data) > max_size:
|
|
print(
|
|
"ERROR: %s overflows allocated space of %d bytes by %d bytes"
|
|
% (name, max_size, len(data) - max_size)
|
|
)
|
|
sys.exit(1)
|
|
print("%-22s% 8d" % ("total", cur_offset))
|
|
|