diff options
Diffstat (limited to 'meta-python/recipes-extended/python-blivet/python3-blivet/0005-update-fstab-by-appending.patch')
-rw-r--r-- | meta-python/recipes-extended/python-blivet/python3-blivet/0005-update-fstab-by-appending.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta-python/recipes-extended/python-blivet/python3-blivet/0005-update-fstab-by-appending.patch b/meta-python/recipes-extended/python-blivet/python3-blivet/0005-update-fstab-by-appending.patch new file mode 100644 index 0000000000..4f343b7d83 --- /dev/null +++ b/meta-python/recipes-extended/python-blivet/python3-blivet/0005-update-fstab-by-appending.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 386ff899763f8473eb93a7a1578fb7cc4f86f66d Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Mon, 8 May 2017 16:28:12 +0800 | ||
4 | Subject: [PATCH 05/13] update fstab by appending | ||
5 | |||
6 | The 'storage.write()' has updated fstab by overwriting | ||
7 | the original one, we should update fstab by appending | ||
8 | to keep original tmpfs partitions. | ||
9 | |||
10 | Upstream-Status: Inappropriate [oe specific] | ||
11 | |||
12 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
13 | --- | ||
14 | blivet/osinstall.py | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/blivet/osinstall.py b/blivet/osinstall.py | ||
18 | index 61819c2..afa82db 100644 | ||
19 | --- a/blivet/osinstall.py | ||
20 | +++ b/blivet/osinstall.py | ||
21 | @@ -728,7 +728,7 @@ class FSSet(object): | ||
22 | # /etc/fstab | ||
23 | fstab_path = os.path.normpath("%s/etc/fstab" % get_sysroot()) | ||
24 | fstab = self.fstab() | ||
25 | - open(fstab_path, "w").write(fstab) | ||
26 | + open(fstab_path, "a").write(fstab) | ||
27 | |||
28 | # /etc/crypttab | ||
29 | crypttab_path = os.path.normpath("%s/etc/crypttab" % get_sysroot()) | ||
30 | -- | ||
31 | 2.7.4 | ||
32 | |||