summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2014-08-01 08:54:17 -0400
committerColin Walters <walters@verbum.org>2014-08-03 14:11:40 -0400
commit05114f856592d3068addd10871032662f87b9a29 (patch)
treee609cee0129e98b0c4e6405daf8e6d1fcebf8688
parent72d1ba82e07985e269ed47ba868dac566759bd07 (diff)
downloadostree-05114f856592d3068addd10871032662f87b9a29.tar.gz
deploy: Propertly append multiple kernel arguments with --karg-proc-cmdline
We want to allow multiply specified arguments, as it's useful for things like console= and rd.lvm.lv. See: https://bugzilla.gnome.org/show_bug.cgi?id=721136 Reported-by: Dusty Mabe <dustymabe@gmail.com>
-rw-r--r--src/ostree/ot-admin-builtin-deploy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ostree/ot-admin-builtin-deploy.c b/src/ostree/ot-admin-builtin-deploy.c
index b99497fe..a99cc89e 100644
--- a/src/ostree/ot-admin-builtin-deploy.c
+++ b/src/ostree/ot-admin-builtin-deploy.c
@@ -143,7 +143,7 @@ ot_admin_builtin_deploy (int argc, char **argv, OstreeSysroot *sysroot, GCancell
g_strchomp (proc_cmdline);
proc_cmdline_args = g_strsplit (proc_cmdline, " ", -1);
- _ostree_kernel_args_replace_argv (kargs, proc_cmdline_args);
+ _ostree_kernel_args_append_argv (kargs, proc_cmdline_args);
}
else if (merge_deployment)
{