summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-03-19 13:45:10 +0800
committerKhem Raj <raj.khem@gmail.com>2024-03-20 09:28:07 -0700
commita6439a2179f8b6d514bc00f14f76ae71ea3bb5f0 (patch)
treea1262d9be6d5e6fff26c16422a0570a79e0adee2 /meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch
parent99b4f570ff7da277c407a86ad809086d433e813b (diff)
downloadmeta-openembedded-a6439a2179f8b6d514bc00f14f76ae71ea3bb5f0.tar.gz
python3-blivet: upgrade 3.8.2 -> 3.9.1
0002-run_program-support-timeout.patch 0003-support-infinit-timeout.patch 0005-fix-incorrect-timeout-while-system-time-changed.patch 0006-tweak-btrfs-packages.patch 0007-invoking-mount-with-infinite-timeout.patch 0008-use-oe-variable-to-replace-hardcoded-dir.patch 0010-invoking-mkfs-with-infinite-timeout.patch 0011-invoking-dd-with-infinite-timeout.patch refreshed for 3.9.1 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch')
-rw-r--r--meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch9
1 files changed, 3 insertions, 6 deletions
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch b/meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch
index c441acd173..394a818aa2 100644
--- a/meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch
+++ b/meta-python/recipes-extended/python-blivet/python3-blivet/0010-invoking-mkfs-with-infinite-timeout.patch
@@ -1,4 +1,4 @@
1From 33844f6773a676bd57240954e402ae9a843663a4 Mon Sep 17 00:00:00 2001 1From abadd821acffd5dbc870f86dad3c3a6bf3f2f74f Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com> 2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Fri, 16 Jun 2017 15:43:00 +0800 3Date: Fri, 16 Jun 2017 15:43:00 +0800
4Subject: [PATCH 10/11] invoking mkfs with infinite timeout 4Subject: [PATCH 10/11] invoking mkfs with infinite timeout
@@ -18,10 +18,10 @@ Signed-off-by: Kai Kang <kai.kang@windriver.com>
18 1 file changed, 1 insertion(+), 1 deletion(-) 18 1 file changed, 1 insertion(+), 1 deletion(-)
19 19
20diff --git a/blivet/tasks/fsmkfs.py b/blivet/tasks/fsmkfs.py 20diff --git a/blivet/tasks/fsmkfs.py b/blivet/tasks/fsmkfs.py
21index e4a6aaa8..9730f7e5 100644 21index e9daa9e..2174cc3 100644
22--- a/blivet/tasks/fsmkfs.py 22--- a/blivet/tasks/fsmkfs.py
23+++ b/blivet/tasks/fsmkfs.py 23+++ b/blivet/tasks/fsmkfs.py
24@@ -203,7 +203,7 @@ class FSMkfs(task.BasicApplication, FSMkfsTask): 24@@ -207,7 +207,7 @@ class FSMkfs(task.BasicApplication, FSMkfsTask):
25 options = options or [] 25 options = options or []
26 cmd = self._mkfs_command(options, label, set_uuid, nodiscard) 26 cmd = self._mkfs_command(options, label, set_uuid, nodiscard)
27 try: 27 try:
@@ -30,6 +30,3 @@ index e4a6aaa8..9730f7e5 100644
30 except OSError as e: 30 except OSError as e:
31 raise FSError(e) 31 raise FSError(e)
32 32
33--
342.7.4
35