mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
# SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
import os
|
|
from typing import Any, Dict, Union
|
|
|
|
CFG = dict(
|
|
sector_size=4096,
|
|
entry_size=32,
|
|
fat_start=0x1000,
|
|
data_start=0x7000,
|
|
root_start=0x2000,
|
|
output_file=os.path.join('output_data', 'tmp_file.img'),
|
|
test_dir=os.path.join('output_data', 'test'),
|
|
test_dir2=os.path.join('output_data', 'tst_str'),
|
|
) # type: Union[Dict[str, Any]]
|
|
|
|
|
|
def generate_test_dir_1() -> None:
|
|
os.makedirs(os.path.join(CFG['test_dir'], 'test', 'test'))
|
|
with open(os.path.join(CFG['test_dir'], 'test', 'test', 'lastfile'), 'w') as file:
|
|
file.write('deeptest\n')
|
|
with open(os.path.join(CFG['test_dir'], 'test', 'testfil2'), 'w') as file:
|
|
file.write('thisistest\n')
|
|
with open(os.path.join(CFG['test_dir'], 'testfile'), 'w') as file:
|
|
file.write('ahoj\n')
|
|
|
|
|
|
def generate_test_dir_2() -> None:
|
|
os.makedirs(os.path.join(CFG['test_dir2'], 'test', 'test'))
|
|
with open(os.path.join(CFG['test_dir2'], 'test', 'test', 'lastfile.txt'), 'w') as file:
|
|
file.write('deeptest\n')
|
|
with open(os.path.join(CFG['test_dir2'], 'test', 'testfil2'), 'w') as file:
|
|
file.write('thisistest\n')
|
|
with open(os.path.join(CFG['test_dir2'], 'testfile'), 'w') as file:
|
|
file.write('ahoj\n')
|