diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-08-01 16:27:43 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2018-08-02 11:23:03 -0700 |
| commit | d3ae34eec2d312410da6cc1dd1c6fb85e8259261 (patch) | |
| tree | 3f827986a0f5c4865d33b05001b2c59601208b76 /meta-python/recipes-extended/python-blivet/python3-blivet/0006-tweak-btrfs-packages.patch | |
| parent | 78de74100807303fe304ea0f088317d2aa0be917 (diff) | |
| download | meta-openembedded-d3ae34eec2d312410da6cc1dd1c6fb85e8259261.tar.gz | |
python3-blivet: 2.2.0 -> 3.0.1
- Drop 0004-Mount-var-volatile-during-install.patch and
0005-update-fstab-by-appending.patch
which are moved to python3-anaconda 28.22.11
- Drop 0013-Revert-Adapt-to-logging-module-name-change.patch
whichis obsolete
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended/python-blivet/python3-blivet/0006-tweak-btrfs-packages.patch')
| -rw-r--r-- | meta-python/recipes-extended/python-blivet/python3-blivet/0006-tweak-btrfs-packages.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivet/0006-tweak-btrfs-packages.patch b/meta-python/recipes-extended/python-blivet/python3-blivet/0006-tweak-btrfs-packages.patch new file mode 100644 index 0000000000..da568a4b06 --- /dev/null +++ b/meta-python/recipes-extended/python-blivet/python3-blivet/0006-tweak-btrfs-packages.patch | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | From 0659d8a85bcdd76c0b23b8b5af6958783d35ac65 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 3 | Date: Mon, 8 May 2017 16:33:15 +0800 | ||
| 4 | Subject: [PATCH 06/11] tweak btrfs packages | ||
| 5 | |||
| 6 | In oe-cre/yocto, we name btrfs package with btrfs-tools, | ||
| 7 | rather than btrfs-progs. | ||
| 8 | |||
| 9 | Upstream-Status: Inappropriate [oe specific] | ||
| 10 | |||
| 11 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
| 12 | --- | ||
| 13 | blivet/devices/btrfs.py | 2 +- | ||
| 14 | blivet/formats/fs.py | 2 +- | ||
| 15 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/blivet/devices/btrfs.py b/blivet/devices/btrfs.py | ||
| 18 | index cada940..7e4d4b8 100644 | ||
| 19 | --- a/blivet/devices/btrfs.py | ||
| 20 | +++ b/blivet/devices/btrfs.py | ||
| 21 | @@ -55,7 +55,7 @@ class BTRFSDevice(StorageDevice): | ||
| 22 | |||
| 23 | """ Base class for BTRFS volume and sub-volume devices. """ | ||
| 24 | _type = "btrfs" | ||
| 25 | - _packages = ["btrfs-progs"] | ||
| 26 | + _packages = ["btrfs-tools"] | ||
| 27 | _external_dependencies = [availability.BLOCKDEV_BTRFS_PLUGIN] | ||
| 28 | |||
| 29 | def __init__(self, *args, **kwargs): | ||
| 30 | diff --git a/blivet/formats/fs.py b/blivet/formats/fs.py | ||
| 31 | index 81e367f..55e5d57 100644 | ||
| 32 | --- a/blivet/formats/fs.py | ||
| 33 | +++ b/blivet/formats/fs.py | ||
| 34 | @@ -926,7 +926,7 @@ class BTRFS(FS): | ||
| 35 | _formattable = True | ||
| 36 | _linux_native = True | ||
| 37 | _supported = True | ||
| 38 | - _packages = ["btrfs-progs"] | ||
| 39 | + _packages = ["btrfs-tools"] | ||
| 40 | _min_size = Size("256 MiB") | ||
| 41 | _max_size = Size("16 EiB") | ||
| 42 | _mkfs_class = fsmkfs.BTRFSMkfs | ||
| 43 | -- | ||
| 44 | 2.7.4 | ||
| 45 | |||
