From 5ca90dc052dc62ce526f01ec55e521ee7cf08123 Mon Sep 17 00:00:00 2001 From: Martin Sehnoutka Date: Mon, 8 Jul 2019 15:56:38 +0200 Subject: [PATCH] mount filesystems as rw d-bus service was unable to start with the previous setup --- stages/io.weldr.grub2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/io.weldr.grub2 b/stages/io.weldr.grub2 index e01b5d7e..6cc6f30c 100755 --- a/stages/io.weldr.grub2 +++ b/stages/io.weldr.grub2 @@ -58,7 +58,7 @@ def main(tree, options): env.write("# GRUB Environment Block\n" f"GRUB2_ROOT_FS_UUID={root_fs_uuid}\n" f"GRUB2_BOOT_FS_UUID={root_fs_uuid}\n" - f"kernelopts=root=UUID={root_fs_uuid} ro\n") + f"kernelopts=root=UUID={root_fs_uuid} rw\n") with open(f"{tree}/boot/grub2/grub.cfg", "w") as cfg: cfg.write("set timeout=0\n" "load_env\n"