diff options
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.patch | 9 |
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 @@ | |||
1 | From 33844f6773a676bd57240954e402ae9a843663a4 Mon Sep 17 00:00:00 2001 | 1 | From abadd821acffd5dbc870f86dad3c3a6bf3f2f74f Mon Sep 17 00:00:00 2001 |
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
3 | Date: Fri, 16 Jun 2017 15:43:00 +0800 | 3 | Date: Fri, 16 Jun 2017 15:43:00 +0800 |
4 | Subject: [PATCH 10/11] invoking mkfs with infinite timeout | 4 | Subject: [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 | ||
20 | diff --git a/blivet/tasks/fsmkfs.py b/blivet/tasks/fsmkfs.py | 20 | diff --git a/blivet/tasks/fsmkfs.py b/blivet/tasks/fsmkfs.py |
21 | index e4a6aaa8..9730f7e5 100644 | 21 | index 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 | -- | ||
34 | 2.7.4 | ||
35 | |||