From 6bc35217d932ce7b4b5078ea9d97752c792588ae Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Thu, 24 Sep 2015 10:05:20 +0200 Subject: [PATCH] vm.set() supports PV args. --- src/api/vm.coffee | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/api/vm.coffee b/src/api/vm.coffee index 3c7920c6c..2032a0c89 100644 --- a/src/api/vm.coffee +++ b/src/api/vm.coffee @@ -309,6 +309,7 @@ set = $coroutine (params) -> for param, fields of { 'name_label' 'name_description' + 'PV_args' } continue unless param of params @@ -338,6 +339,9 @@ set.params = { # # Note: static_min ≤ dynamic_min ≤ dynamic_max ≤ static_max memory: { type: 'integer', optional: true } + + # Kernel arguments for PV VM. + PV_args: { type: 'string', optional: true } } set.resolve = {