fix(spiffs): normalize spiffsgen CLI output with esp-pylib

This commit is contained in:
sonika.rathi
2026-06-02 12:05:24 +02:00
committed by BOT
parent c73c20a61f
commit eda2d97bdb
2 changed files with 275 additions and 205 deletions

View File

@@ -2,19 +2,20 @@
#
# spiffsgen is a tool used to generate a spiffs image from a directory
#
# SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD
# SPDX-FileCopyrightText: 2019-2026 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
import argparse
import io
import math
import os
import struct
from esp_pylib.logger import log
try:
import typing
TSP = typing.TypeVar('TSP', bound='SpiffsObjPageWithIdx')
ObjIdsItem = typing.Tuple[int, typing.Type[TSP]]
ObjIdsItem = tuple[int, type[TSP]]
except ImportError:
pass
@@ -34,25 +35,26 @@ SPIFFS_PAGE_IX_LEN = 2 # spiffs_page_ix
SPIFFS_BLOCK_IX_LEN = 2 # spiffs_block_ix
class SpiffsBuildConfig(object):
def __init__(self,
page_size, # type: int
page_ix_len, # type: int
block_size, # type: int
block_ix_len, # type: int
meta_len, # type: int
obj_name_len, # type: int
obj_id_len, # type: int
span_ix_len, # type: int
packed, # type: bool
aligned, # type: bool
endianness, # type: str
use_magic, # type: bool
use_magic_len, # type: bool
aligned_obj_ix_tables # type: bool
):
class SpiffsBuildConfig:
def __init__(
self,
page_size, # type: int
page_ix_len, # type: int
block_size, # type: int
block_ix_len, # type: int
meta_len, # type: int
obj_name_len, # type: int
obj_id_len, # type: int
span_ix_len, # type: int
packed, # type: bool
aligned, # type: bool
endianness, # type: str
use_magic, # type: bool
use_magic_len, # type: bool
aligned_obj_ix_tables, # type: bool
):
if block_size % page_size != 0:
raise RuntimeError('block size should be a multiple of page size')
log.die('block size should be a multiple of page size')
self.page_size = page_size
self.block_size = block_size
@@ -70,7 +72,9 @@ class SpiffsBuildConfig(object):
self.aligned_obj_ix_tables = aligned_obj_ix_tables
self.PAGES_PER_BLOCK = self.block_size // self.page_size
self.OBJ_LU_PAGES_PER_BLOCK = int(math.ceil(self.block_size / self.page_size * self.obj_id_len / self.page_size))
self.OBJ_LU_PAGES_PER_BLOCK = int(
math.ceil(self.block_size / self.page_size * self.obj_id_len / self.page_size)
)
self.OBJ_USABLE_PAGES_PER_BLOCK = self.PAGES_PER_BLOCK - self.OBJ_LU_PAGES_PER_BLOCK
self.OBJ_LU_PAGES_OBJ_IDS_LIM = self.page_size // self.obj_id_len
@@ -83,16 +87,27 @@ class SpiffsBuildConfig(object):
self.OBJ_DATA_PAGE_HEADER_LEN_ALIGNED_PAD = pad
self.OBJ_DATA_PAGE_CONTENT_LEN = self.page_size - self.OBJ_DATA_PAGE_HEADER_LEN
self.OBJ_INDEX_PAGES_HEADER_LEN = (self.OBJ_DATA_PAGE_HEADER_LEN_ALIGNED + SPIFFS_PH_IX_SIZE_LEN +
SPIFFS_PH_IX_OBJ_TYPE_LEN + self.obj_name_len + self.meta_len)
self.OBJ_INDEX_PAGES_HEADER_LEN = (
self.OBJ_DATA_PAGE_HEADER_LEN_ALIGNED
+ SPIFFS_PH_IX_SIZE_LEN
+ SPIFFS_PH_IX_OBJ_TYPE_LEN
+ self.obj_name_len
+ self.meta_len
)
if aligned_obj_ix_tables:
self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED = (self.OBJ_INDEX_PAGES_HEADER_LEN + SPIFFS_PAGE_IX_LEN - 1) & ~(SPIFFS_PAGE_IX_LEN - 1)
self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED_PAD = self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED - self.OBJ_INDEX_PAGES_HEADER_LEN
self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED = (self.OBJ_INDEX_PAGES_HEADER_LEN + SPIFFS_PAGE_IX_LEN - 1) & ~(
SPIFFS_PAGE_IX_LEN - 1
)
self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED_PAD = (
self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED - self.OBJ_INDEX_PAGES_HEADER_LEN
)
else:
self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED = self.OBJ_INDEX_PAGES_HEADER_LEN
self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED_PAD = 0
self.OBJ_INDEX_PAGES_OBJ_IDS_HEAD_LIM = (self.page_size - self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED) // self.block_ix_len
self.OBJ_INDEX_PAGES_OBJ_IDS_HEAD_LIM = (
self.page_size - self.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED
) // self.block_ix_len
self.OBJ_INDEX_PAGES_OBJ_IDS_LIM = (self.page_size - self.OBJ_DATA_PAGE_HEADER_LEN_ALIGNED) // self.block_ix_len
@@ -100,18 +115,10 @@ class SpiffsFullError(RuntimeError):
pass
class SpiffsPage(object):
_endianness_dict = {
'little': '<',
'big': '>'
}
class SpiffsPage:
_endianness_dict = {'little': '<', 'big': '>'}
_len_dict = {
1: 'B',
2: 'H',
4: 'I',
8: 'Q'
}
_len_dict = {1: 'B', 2: 'H', 4: 'I', 8: 'Q'}
def __init__(self, bix, build_config): # type: (int, SpiffsBuildConfig) -> None
self.build_config = build_config
@@ -123,7 +130,7 @@ class SpiffsPage(object):
class SpiffsObjPageWithIdx(SpiffsPage):
def __init__(self, obj_id, build_config): # type: (int, SpiffsBuildConfig) -> None
super(SpiffsObjPageWithIdx, self).__init__(0, build_config)
super().__init__(0, build_config)
self.obj_id = obj_id
def to_binary(self): # type: () -> bytes
@@ -158,15 +165,18 @@ class SpiffsObjLuPage(SpiffsPage):
def to_binary(self): # type: () -> bytes
img = b''
for (obj_id, page_type) in self.obj_ids:
for obj_id, page_type in self.obj_ids:
if page_type == SpiffsObjIndexPage:
obj_id ^= (1 << ((self.build_config.obj_id_len * 8) - 1))
img += struct.pack(SpiffsPage._endianness_dict[self.build_config.endianness] +
SpiffsPage._len_dict[self.build_config.obj_id_len], obj_id)
obj_id ^= 1 << ((self.build_config.obj_id_len * 8) - 1)
img += struct.pack(
SpiffsPage._endianness_dict[self.build_config.endianness]
+ SpiffsPage._len_dict[self.build_config.obj_id_len],
obj_id,
)
assert len(img) <= self.build_config.page_size
img += b'\xFF' * (self.build_config.page_size - len(img))
img += b'\xff' * (self.build_config.page_size - len(img))
return img
@@ -175,12 +185,7 @@ class SpiffsObjLuPage(SpiffsPage):
# spot taken up by the last obj id on last lookup page. The parent is responsible
# for determining which is the last lookup page and calling this function.
remaining = self.obj_ids_limit
empty_obj_id_dict = {
1: 0xFF,
2: 0xFFFF,
4: 0xFFFFFFFF,
8: 0xFFFFFFFFFFFFFFFF
}
empty_obj_id_dict = {1: 0xFF, 2: 0xFFFF, 4: 0xFFFFFFFF, 8: 0xFFFFFFFFFFFFFFFF}
if remaining >= 2:
for i in range(remaining):
if i == remaining - 2:
@@ -192,9 +197,8 @@ class SpiffsObjLuPage(SpiffsPage):
class SpiffsObjIndexPage(SpiffsObjPageWithIdx):
def __init__(self, obj_id, span_ix, size, name, build_config
): # type: (int, int, int, str, SpiffsBuildConfig) -> None
super(SpiffsObjIndexPage, self).__init__(obj_id, build_config)
def __init__(self, obj_id, span_ix, size, name, build_config): # type: (int, int, int, str, SpiffsBuildConfig) -> None
super().__init__(obj_id, build_config)
self.span_ix = span_ix
self.name = name
self.size = size
@@ -215,71 +219,83 @@ class SpiffsObjIndexPage(SpiffsObjPageWithIdx):
def to_binary(self): # type: () -> bytes
obj_id = self.obj_id ^ (1 << ((self.build_config.obj_id_len * 8) - 1))
img = struct.pack(SpiffsPage._endianness_dict[self.build_config.endianness] +
SpiffsPage._len_dict[self.build_config.obj_id_len] +
SpiffsPage._len_dict[self.build_config.span_ix_len] +
SpiffsPage._len_dict[SPIFFS_PH_FLAG_LEN],
obj_id,
self.span_ix,
SPIFFS_PH_FLAG_USED_FINAL_INDEX)
img = struct.pack(
SpiffsPage._endianness_dict[self.build_config.endianness]
+ SpiffsPage._len_dict[self.build_config.obj_id_len]
+ SpiffsPage._len_dict[self.build_config.span_ix_len]
+ SpiffsPage._len_dict[SPIFFS_PH_FLAG_LEN],
obj_id,
self.span_ix,
SPIFFS_PH_FLAG_USED_FINAL_INDEX,
)
# Add padding before the object index page specific information
img += b'\xFF' * self.build_config.OBJ_DATA_PAGE_HEADER_LEN_ALIGNED_PAD
img += b'\xff' * self.build_config.OBJ_DATA_PAGE_HEADER_LEN_ALIGNED_PAD
# If this is the first object index page for the object, add filename, type
# and size information
if self.span_ix == 0:
img += struct.pack(SpiffsPage._endianness_dict[self.build_config.endianness] +
SpiffsPage._len_dict[SPIFFS_PH_IX_SIZE_LEN] +
SpiffsPage._len_dict[SPIFFS_PH_FLAG_LEN],
self.size,
SPIFFS_TYPE_FILE)
img += struct.pack(
SpiffsPage._endianness_dict[self.build_config.endianness]
+ SpiffsPage._len_dict[SPIFFS_PH_IX_SIZE_LEN]
+ SpiffsPage._len_dict[SPIFFS_PH_FLAG_LEN],
self.size,
SPIFFS_TYPE_FILE,
)
img += self.name.encode() + (b'\x00' * (
(self.build_config.obj_name_len - len(self.name))
+ self.build_config.meta_len
+ self.build_config.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED_PAD))
img += self.name.encode() + (
b'\x00'
* (
(self.build_config.obj_name_len - len(self.name))
+ self.build_config.meta_len
+ self.build_config.OBJ_INDEX_PAGES_HEADER_LEN_ALIGNED_PAD
)
)
# Finally, add the page index of data pages
for page in self.pages:
page = page >> int(math.log(self.build_config.page_size, 2))
img += struct.pack(SpiffsPage._endianness_dict[self.build_config.endianness] +
SpiffsPage._len_dict[self.build_config.page_ix_len], page)
img += struct.pack(
SpiffsPage._endianness_dict[self.build_config.endianness]
+ SpiffsPage._len_dict[self.build_config.page_ix_len],
page,
)
assert len(img) <= self.build_config.page_size
img += b'\xFF' * (self.build_config.page_size - len(img))
img += b'\xff' * (self.build_config.page_size - len(img))
return img
class SpiffsObjDataPage(SpiffsObjPageWithIdx):
def __init__(self, offset, obj_id, span_ix, contents, build_config
): # type: (int, int, int, bytes, SpiffsBuildConfig) -> None
super(SpiffsObjDataPage, self).__init__(obj_id, build_config)
def __init__(self, offset, obj_id, span_ix, contents, build_config): # type: (int, int, int, bytes, SpiffsBuildConfig) -> None
super().__init__(obj_id, build_config)
self.span_ix = span_ix
self.contents = contents
self.offset = offset
def to_binary(self): # type: () -> bytes
img = struct.pack(SpiffsPage._endianness_dict[self.build_config.endianness] +
SpiffsPage._len_dict[self.build_config.obj_id_len] +
SpiffsPage._len_dict[self.build_config.span_ix_len] +
SpiffsPage._len_dict[SPIFFS_PH_FLAG_LEN],
self.obj_id,
self.span_ix,
SPIFFS_PH_FLAG_USED_FINAL)
img = struct.pack(
SpiffsPage._endianness_dict[self.build_config.endianness]
+ SpiffsPage._len_dict[self.build_config.obj_id_len]
+ SpiffsPage._len_dict[self.build_config.span_ix_len]
+ SpiffsPage._len_dict[SPIFFS_PH_FLAG_LEN],
self.obj_id,
self.span_ix,
SPIFFS_PH_FLAG_USED_FINAL,
)
img += self.contents
assert len(img) <= self.build_config.page_size
img += b'\xFF' * (self.build_config.page_size - len(img))
img += b'\xff' * (self.build_config.page_size - len(img))
return img
class SpiffsBlock(object):
class SpiffsBlock:
def _reset(self): # type: () -> None
self.cur_obj_index_span_ix = 0
self.cur_obj_data_span_ix = 0
@@ -319,12 +335,11 @@ class SpiffsBlock(object):
except AttributeError: # no next lookup page
# Since the amount of lookup pages is pre-computed at every block instance,
# this should never occur
raise RuntimeError('invalid attempt to add page to a block when there is no more space in lookup')
log.die('invalid attempt to add page to a block when there is no more space in lookup')
self.pages.append(page)
def begin_obj(self, obj_id, size, name, obj_index_span_ix=0, obj_data_span_ix=0
): # type: (int, int, str, int, int) -> None
def begin_obj(self, obj_id, size, name, obj_index_span_ix=0, obj_data_span_ix=0): # type: (int, int, str, int, int) -> None
if not self.remaining_pages > 0:
raise SpiffsFullError()
self._reset()
@@ -344,8 +359,13 @@ class SpiffsBlock(object):
def update_obj(self, contents): # type: (bytes) -> None
if not self.remaining_pages > 0:
raise SpiffsFullError()
page = SpiffsObjDataPage(self.offset + (len(self.pages) * self.build_config.page_size),
self.cur_obj_id, self.cur_obj_data_span_ix, contents, self.build_config)
page = SpiffsObjDataPage(
self.offset + (len(self.pages) * self.build_config.page_size),
self.cur_obj_id,
self.cur_obj_data_span_ix,
contents,
self.build_config,
)
self._register_page(page)
@@ -362,7 +382,7 @@ class SpiffsBlock(object):
img = b''
if self.build_config.use_magic:
for (idx, page) in enumerate(self.pages):
for idx, page in enumerate(self.pages):
if idx == self.build_config.OBJ_LU_PAGES_PER_BLOCK - 1:
assert isinstance(page, SpiffsObjLuPage)
page.magicfy(blocks_lim)
@@ -373,14 +393,14 @@ class SpiffsBlock(object):
assert len(img) <= self.build_config.block_size
img += b'\xFF' * (self.build_config.block_size - len(img))
img += b'\xff' * (self.build_config.block_size - len(img))
return img
class SpiffsFS(object):
class SpiffsFS:
def __init__(self, img_size, build_config): # type: (int, SpiffsBuildConfig) -> None
if img_size % build_config.block_size != 0:
raise RuntimeError('image size should be a multiple of block size')
log.die('image size should be a multiple of block size')
self.img_size = img_size
self.build_config = build_config
@@ -392,7 +412,7 @@ class SpiffsFS(object):
def _create_block(self): # type: () -> SpiffsBlock
if self.is_full():
raise SpiffsFullError('the image size has been exceeded')
log.die('the image size has been exceeded')
block = SpiffsBlock(len(self.blocks), self.build_config)
self.blocks.append(block)
@@ -404,7 +424,7 @@ class SpiffsFS(object):
def create_file(self, img_path, file_path): # type: (str, str) -> None
if len(img_path) > self.build_config.obj_name_len:
raise RuntimeError("object name '%s' too long" % img_path)
log.die(f"object name '{img_path}' too long")
name = img_path
@@ -434,9 +454,13 @@ class SpiffsFS(object):
if block.is_full():
raise SpiffsFullError
# If its (2), write another object index page
block.begin_obj(self.cur_obj_id, len(contents), name,
obj_index_span_ix=block.cur_obj_index_span_ix,
obj_data_span_ix=block.cur_obj_data_span_ix)
block.begin_obj(
self.cur_obj_id,
len(contents),
name,
obj_index_span_ix=block.cur_obj_index_span_ix,
obj_data_span_ix=block.cur_obj_data_span_ix,
)
continue
except (IndexError, SpiffsFullError):
# All pages in the block have been exhausted. Create a new block, copying
@@ -471,120 +495,165 @@ class SpiffsFS(object):
bix += 1
else:
# Just fill remaining spaces FF's
all_blocks.append(b'\xFF' * (self.img_size - len(all_blocks) * self.build_config.block_size))
all_blocks.append(b'\xff' * (self.img_size - len(all_blocks) * self.build_config.block_size))
img += b''.join([blk for blk in all_blocks])
return img
class CustomHelpFormatter(argparse.HelpFormatter):
"""
Similar to argparse.ArgumentDefaultsHelpFormatter, except it
doesn't add the default value if "(default:" is already present.
This helps in the case of options with action="store_false", like
--no-magic or --no-magic-len.
"""
def _get_help_string(self, action): # type: (argparse.Action) -> str
if action.help is None:
return ''
if '%(default)' not in action.help and '(default:' not in action.help:
if action.default is not argparse.SUPPRESS:
defaulting_nargs = [argparse.OPTIONAL, argparse.ZERO_OR_MORE]
if action.option_strings or action.nargs in defaulting_nargs:
return action.help + ' (default: %(default)s)'
return action.help
def _generate_spiffs_image(
image_size: int,
base_dir: str,
output_file: str,
page_size: int,
block_size: int,
obj_name_len: int,
meta_len: int,
use_magic: bool,
use_magic_len: bool,
follow_symlinks: bool,
big_endian: bool,
aligned_obj_ix_tables: bool,
) -> None:
if not os.path.exists(base_dir):
log.die(f'given base directory {base_dir} does not exist')
spiffs_build_default = SpiffsBuildConfig(
page_size,
SPIFFS_PAGE_IX_LEN,
block_size,
SPIFFS_BLOCK_IX_LEN,
meta_len,
obj_name_len,
SPIFFS_OBJ_ID_LEN,
SPIFFS_SPAN_IX_LEN,
True,
True,
'big' if big_endian else 'little',
use_magic,
use_magic_len,
aligned_obj_ix_tables,
)
spiffs = SpiffsFS(image_size, spiffs_build_default)
for root, dirs, files in os.walk(base_dir, followlinks=follow_symlinks):
for f in files:
full_path = os.path.join(root, f)
img_path = '/' + os.path.relpath(full_path, base_dir).replace('\\', '/')
spiffs.create_file(img_path, full_path)
with open(output_file, 'wb') as image_file:
image_file.write(spiffs.to_binary())
def _build_cli(): # type: () -> typing.Any
import rich_click as click
from esp_pylib.cli_types import AnyIntType
@click.command(
context_settings={'help_option_names': ['-h', '--help']},
help='SPIFFS Image Generator',
)
@click.argument('image_size', type=AnyIntType(), metavar='IMAGE_SIZE')
@click.argument('base_dir', type=click.Path(exists=False, file_okay=False))
@click.argument('output_file', type=click.Path())
@click.option(
'--page-size',
type=int,
default=256,
show_default=True,
help='Logical page size. Set to value same as CONFIG_SPIFFS_PAGE_SIZE.',
)
@click.option(
'--block-size',
type=int,
default=4096,
show_default=True,
help="Logical block size. Set to the same value as the flash chip's sector size (g_rom_flashchip.sector_size).",
)
@click.option(
'--obj-name-len',
type=int,
default=32,
show_default=True,
help='File full path maximum length. Set to value same as CONFIG_SPIFFS_OBJ_NAME_LEN.',
)
@click.option(
'--meta-len',
type=int,
default=4,
show_default=True,
help='File metadata length. Set to value same as CONFIG_SPIFFS_META_LENGTH.',
)
@click.option(
'--use-magic/--no-magic',
default=True,
show_default=True,
help='Use magic number to create an identifiable SPIFFS image. Specify if CONFIG_SPIFFS_USE_MAGIC.',
)
@click.option(
'--use-magic-len/--no-magic-len',
default=True,
show_default=True,
help='Use position in memory to create different magic numbers for each block. '
'Specify if CONFIG_SPIFFS_USE_MAGIC_LENGTH.',
)
@click.option(
'--follow-symlinks',
is_flag=True,
default=False,
help='Take into account symbolic links during partition image creation.',
)
@click.option(
'--big-endian',
is_flag=True,
default=False,
help='Specify if the target architecture is big-endian. If not specified, little-endian is assumed.',
)
@click.option(
'--aligned-obj-ix-tables',
is_flag=True,
default=False,
help='Use aligned object index tables. Specify if SPIFFS_ALIGNED_OBJECT_INDEX_TABLES is set.',
)
def cli( # type: ignore[no-untyped-def]
image_size,
base_dir,
output_file,
page_size,
block_size,
obj_name_len,
meta_len,
use_magic,
use_magic_len,
follow_symlinks,
big_endian,
aligned_obj_ix_tables,
):
_generate_spiffs_image(
image_size,
base_dir,
output_file,
page_size,
block_size,
obj_name_len,
meta_len,
use_magic,
use_magic_len,
follow_symlinks,
big_endian,
aligned_obj_ix_tables,
)
return cli
def main(): # type: () -> None
parser = argparse.ArgumentParser(description='SPIFFS Image Generator',
formatter_class=CustomHelpFormatter)
parser.add_argument('image_size',
help='Size of the created image')
parser.add_argument('base_dir',
help='Path to directory from which the image will be created')
parser.add_argument('output_file',
help='Created image output file path')
parser.add_argument('--page-size',
help='Logical page size. Set to value same as CONFIG_SPIFFS_PAGE_SIZE.',
type=int,
default=256)
parser.add_argument('--block-size',
help="Logical block size. Set to the same value as the flash chip's sector size (g_rom_flashchip.sector_size).",
type=int,
default=4096)
parser.add_argument('--obj-name-len',
help='File full path maximum length. Set to value same as CONFIG_SPIFFS_OBJ_NAME_LEN.',
type=int,
default=32)
parser.add_argument('--meta-len',
help='File metadata length. Set to value same as CONFIG_SPIFFS_META_LENGTH.',
type=int,
default=4)
parser.add_argument('--use-magic',
dest='use_magic',
help='Use magic number to create an identifiable SPIFFS image. Specify if CONFIG_SPIFFS_USE_MAGIC.',
action='store_true')
parser.add_argument('--no-magic',
dest='use_magic',
help='Inverse of --use-magic (default: --use-magic is enabled)',
action='store_false')
parser.add_argument('--use-magic-len',
dest='use_magic_len',
help='Use position in memory to create different magic numbers for each block. Specify if CONFIG_SPIFFS_USE_MAGIC_LENGTH.',
action='store_true')
parser.add_argument('--no-magic-len',
dest='use_magic_len',
help='Inverse of --use-magic-len (default: --use-magic-len is enabled)',
action='store_false')
parser.add_argument('--follow-symlinks',
help='Take into account symbolic links during partition image creation.',
action='store_true')
parser.add_argument('--big-endian',
help='Specify if the target architecture is big-endian. If not specified, little-endian is assumed.',
action='store_true')
parser.add_argument('--aligned-obj-ix-tables',
action='store_true',
help='Use aligned object index tables. Specify if SPIFFS_ALIGNED_OBJECT_INDEX_TABLES is set.')
parser.set_defaults(use_magic=True, use_magic_len=True)
args = parser.parse_args()
if not os.path.exists(args.base_dir):
raise RuntimeError('given base directory %s does not exist' % args.base_dir)
with open(args.output_file, 'wb') as image_file:
image_size = int(args.image_size, 0)
spiffs_build_default = SpiffsBuildConfig(args.page_size, SPIFFS_PAGE_IX_LEN,
args.block_size, SPIFFS_BLOCK_IX_LEN, args.meta_len,
args.obj_name_len, SPIFFS_OBJ_ID_LEN, SPIFFS_SPAN_IX_LEN,
True, True, 'big' if args.big_endian else 'little',
args.use_magic, args.use_magic_len, args.aligned_obj_ix_tables)
spiffs = SpiffsFS(image_size, spiffs_build_default)
for root, dirs, files in os.walk(args.base_dir, followlinks=args.follow_symlinks):
for f in files:
full_path = os.path.join(root, f)
spiffs.create_file('/' + os.path.relpath(full_path, args.base_dir).replace('\\', '/'), full_path)
image = spiffs.to_binary()
image_file.write(image)
_build_cli()()
if __name__ == '__main__':
from esp_pylib.excepthook import install_exception_reporting
install_exception_reporting()
main()

View File

@@ -25,6 +25,7 @@ esp-idf-sbom
pyclang
construct
rich
esp-pylib[cli]
psutil
# ble's compressed log testing tool