return False
+_DEBUGFS_VERSION = None
+
+def debugfs_version_check(debugfs_path, min_ver=(1, 46, 5)):
+ global _DEBUGFS_VERSION
+
+ if _DEBUGFS_VERSION is None:
+ out = ""
+ for flag in ("-V", "-v"):
+ try:
+ out = exec_cmd(f"{debugfs_path} {flag}")
+ break
+ except Exception:
+ continue
+
+ import re
+ m = re.search(r"(\d+)\.(\d+)\.(\d+)", out or "")
+ _DEBUGFS_VERSION = tuple(map(int, m.groups())) if m else None
+
+ ver = _DEBUGFS_VERSION
+
+ if ver is not None and ver < min_ver:
+ raise WicError(
+ "Sorry, debugfs 1.46.5 or later is required for this script. "
+ "Older versions of debugfs can make directory copies into ext* partitions "
+ "via scripted debugfs (-f) unreliable or broken. Detected version: %s"
+ % (".".join(map(str, ver)) if ver else "unknown")
+ )
+
class Disk:
def __init__(self, imagepath, native_sysroot, fstypes=('fat', 'ext')):
if self.partitions[pnum].fstype.startswith('ext'):
if isinstance(src, str): # host to image case
if os.path.isdir(src):
+ debugfs_version_check(self.debugfs)
base = os.path.abspath(src)
base_parent = os.path.dirname(base)
cmds = []