diff options
Diffstat (limited to 'meta-python/recipes-extended/python-blivet/python3-blivet/0007-invoking-mount-with-infinite-timeout.patch')
-rw-r--r-- | meta-python/recipes-extended/python-blivet/python3-blivet/0007-invoking-mount-with-infinite-timeout.patch | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivet/0007-invoking-mount-with-infinite-timeout.patch b/meta-python/recipes-extended/python-blivet/python3-blivet/0007-invoking-mount-with-infinite-timeout.patch index b2606d7699..809f4e1584 100644 --- a/meta-python/recipes-extended/python-blivet/python3-blivet/0007-invoking-mount-with-infinite-timeout.patch +++ b/meta-python/recipes-extended/python-blivet/python3-blivet/0007-invoking-mount-with-infinite-timeout.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From f53481dc4a56b8a996628733553e080bb0aafdd7 Mon Sep 17 00:00:00 2001 | 1 | From f159d71d742ace5640c7810bcc27365f8fde95a3 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, 23 Nov 2018 17:07:22 +0800 | 3 | Date: Fri, 23 Nov 2018 17:07:22 +0800 |
4 | Subject: [PATCH 07/11] invoking mount with infinite timeout | 4 | Subject: [PATCH 07/11] invoking mount with infinite timeout |
@@ -14,10 +14,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | |||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | 14 | 1 file changed, 1 insertion(+), 1 deletion(-) |
15 | 15 | ||
16 | diff --git a/blivet/util.py b/blivet/util.py | 16 | diff --git a/blivet/util.py b/blivet/util.py |
17 | index 5571e73..02c8033 100644 | 17 | index 5bc5804..9de77e1 100644 |
18 | --- a/blivet/util.py | 18 | --- a/blivet/util.py |
19 | +++ b/blivet/util.py | 19 | +++ b/blivet/util.py |
20 | @@ -258,7 +258,7 @@ def mount(device, mountpoint, fstype, options=None): | 20 | @@ -271,7 +271,7 @@ def mount(device, mountpoint, fstype, options=None): |
21 | makedirs(mountpoint) | 21 | makedirs(mountpoint) |
22 | 22 | ||
23 | argv = ["mount", "-t", fstype, "-o", options, device, mountpoint] | 23 | argv = ["mount", "-t", fstype, "-o", options, device, mountpoint] |
@@ -26,6 +26,3 @@ index 5571e73..02c8033 100644 | |||
26 | 26 | ||
27 | 27 | ||
28 | def umount(mountpoint): | 28 | def umount(mountpoint): |
29 | -- | ||
30 | 2.7.4 | ||
31 | |||