diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2025-06-03 20:37:01 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-03 22:01:47 -0700 |
commit | 09be9f040c7a6df7eba0386cffa6417c89178613 (patch) | |
tree | c4a22c15f7725d5e59383c141d93562fc4f4c69d | |
parent | 9c1a286b428b50a686a09c85c3abaddbfef5c9cc (diff) | |
download | meta-openembedded-09be9f040c7a6df7eba0386cffa6417c89178613.tar.gz |
python3-blivet: support fat resize
According to release_notes.rst of 3.12.0 [1], it requires the `vfat-resize`
tool for FAT filesystem resize support. In Yocto, package libblockdev-bin
provides vfat-resize
[1] https://github.com/storaged-project/blivet/commit/ce03a4869d9ad55349819ff0d6a7557862ec4258#diff-b99febf52a7481dd33d7896edaaad85373851e76d8f01303491713e723b905ddR21-R25
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb b/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb index 6a00e48ebb..bf492b3d57 100644 --- a/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb +++ b/meta-python/recipes-extended/python-blivet/python3-blivet_3.12.1.bb | |||
@@ -24,7 +24,7 @@ REQUIRED_DISTRO_FEATURES = "systemd" | |||
24 | 24 | ||
25 | RDEPENDS:${PN} += "python3-pykickstart python3-pyudev \ | 25 | RDEPENDS:${PN} += "python3-pykickstart python3-pyudev \ |
26 | parted python3-pyparted multipath-tools \ | 26 | parted python3-pyparted multipath-tools \ |
27 | lsof cryptsetup libblockdev \ | 27 | lsof cryptsetup libblockdev libblockdev-bin \ |
28 | libbytesize \ | 28 | libbytesize \ |
29 | " | 29 | " |
30 | 30 | ||