mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
gpt-auto: make arg_root_rw a tri-state
No change in behaviour, but let's track whether ro or rw are specified on the kernel cmdline at all.
This commit is contained in:
parent
59f13dd6f8
commit
c94b241777
@ -39,7 +39,7 @@
|
||||
static const char *arg_dest = NULL;
|
||||
static bool arg_enabled = true;
|
||||
static bool arg_root_enabled = true;
|
||||
static bool arg_root_rw = false;
|
||||
static int arg_root_rw = -1;
|
||||
|
||||
static int add_cryptsetup(const char *id, const char *what, bool rw, bool require, char **device) {
|
||||
_cleanup_free_ char *e = NULL, *n = NULL, *d = NULL, *id_escaped = NULL, *what_escaped = NULL;
|
||||
@ -640,7 +640,7 @@ static int add_root_mount(void) {
|
||||
"/dev/gpt-auto-root",
|
||||
in_initrd() ? "/sysroot" : "/",
|
||||
NULL,
|
||||
arg_root_rw,
|
||||
arg_root_rw > 0,
|
||||
NULL,
|
||||
"Root Partition",
|
||||
in_initrd() ? SPECIAL_INITRD_ROOT_FS_TARGET : SPECIAL_LOCAL_FS_TARGET);
|
||||
|
Loading…
Reference in New Issue
Block a user