blob: 9882ddb1daa55f122fedc33bd59003ce22cb4a57 [file] [log] [blame]
Simon Glass4349ba52022-10-29 19:47:05 -06001# SPDX-License-Identifier: GPL-2.0+
2#
Simon Glass4349ba52022-10-29 19:47:05 -06003# Copyright (c) 2018, Linaro Limited
4# Author: Takahiro Akashi <takahiro.akashi@linaro.org>
5
Simon Glass7cbb5732022-10-29 19:47:06 -06006"""Helper functions for dealing with filesystems"""
7
Simon Glass4349ba52022-10-29 19:47:05 -06008import re
9import os
10from subprocess import call, check_call, check_output, CalledProcessError
11
Simon Glass00613bc2023-08-24 13:55:38 -060012def mk_fs(config, fs_type, size, prefix):
Simon Glass4349ba52022-10-29 19:47:05 -060013 """Create a file system volume
14
15 Args:
Simon Glass7cbb5732022-10-29 19:47:06 -060016 config (u_boot_config): U-Boot configuration
Simon Glass4349ba52022-10-29 19:47:05 -060017 fs_type (str): File system type, e.g. 'ext4'
18 size (int): Size of file system in bytes
19 prefix (str): Prefix string of volume's file name
Simon Glass7cbb5732022-10-29 19:47:06 -060020
21 Raises:
22 CalledProcessError: if any error occurs when creating the filesystem
Simon Glass4349ba52022-10-29 19:47:05 -060023 """
Simon Glass7cbb5732022-10-29 19:47:06 -060024 fs_img = f'{prefix}.{fs_type}.img'
Simon Glass00613bc2023-08-24 13:55:38 -060025 fs_img = os.path.join(config.persistent_data_dir, fs_img)
Simon Glass4349ba52022-10-29 19:47:05 -060026
27 if fs_type == 'fat16':
28 mkfs_opt = '-F 16'
29 elif fs_type == 'fat32':
30 mkfs_opt = '-F 32'
31 else:
32 mkfs_opt = ''
33
34 if re.match('fat', fs_type):
35 fs_lnxtype = 'vfat'
36 else:
37 fs_lnxtype = fs_type
38
Simon Glass7cbb5732022-10-29 19:47:06 -060039 count = (size + 0x100000 - 1) // 0x100000
Simon Glass4349ba52022-10-29 19:47:05 -060040
41 # Some distributions do not add /sbin to the default PATH, where mkfs lives
42 if '/sbin' not in os.environ["PATH"].split(os.pathsep):
43 os.environ["PATH"] += os.pathsep + '/sbin'
44
45 try:
Simon Glass7cbb5732022-10-29 19:47:06 -060046 check_call(f'rm -f {fs_img}', shell=True)
47 check_call(f'dd if=/dev/zero of={fs_img} bs=1M count={count}',
48 shell=True)
49 check_call(f'mkfs.{fs_lnxtype} {mkfs_opt} {fs_img}', shell=True)
Simon Glass4349ba52022-10-29 19:47:05 -060050 if fs_type == 'ext4':
Simon Glass7cbb5732022-10-29 19:47:06 -060051 sb_content = check_output(f'tune2fs -l {fs_img}',
52 shell=True).decode()
Simon Glass4349ba52022-10-29 19:47:05 -060053 if 'metadata_csum' in sb_content:
Simon Glass7cbb5732022-10-29 19:47:06 -060054 check_call(f'tune2fs -O ^metadata_csum {fs_img}', shell=True)
Simon Glass4349ba52022-10-29 19:47:05 -060055 return fs_img
56 except CalledProcessError:
Simon Glass7cbb5732022-10-29 19:47:06 -060057 call(f'rm -f {fs_img}', shell=True)
Simon Glass4349ba52022-10-29 19:47:05 -060058 raise
Simon Glass7cbb5732022-10-29 19:47:06 -060059
60# Just for trying out
61if __name__ == "__main__":
62 import collections
63
64 CNF= collections.namedtuple('config', 'persistent_data_dir')
65
66 mk_fs(CNF('.'), 'ext4', 0x1000000, 'pref')