From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 880C31B1DC for ; Wed, 10 Jan 2018 08:18:20 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jan 2018 23:18:19 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,339,1511856000"; d="scan'208";a="19775249" Received: from dpdk-test38.sh.intel.com ([10.67.119.87]) by fmsmga004.fm.intel.com with ESMTP; 09 Jan 2018 23:18:18 -0800 From: Marvin Liu To: dts@dpdk.org Cc: Marvin Liu Date: Tue, 9 Jan 2018 19:11:13 -0500 Message-Id: <1515543074-81373-16-git-send-email-yong.liu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1515543074-81373-1-git-send-email-yong.liu@intel.com> References: <1515379769-11553-1-git-send-email-yong.liu@intel.com> <1515543074-81373-1-git-send-email-yong.liu@intel.com> Subject: [dts] [PATCH v2 15/16] conf/virt_global: add vm management related configuration X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jan 2018 07:18:20 -0000 Signed-off-by: Marvin Liu diff --git a/conf/virt_global.cfg b/conf/virt_global.cfg index 176650a..58ca061 100644 --- a/conf/virt_global.cfg +++ b/conf/virt_global.cfg @@ -1,6 +1,23 @@ # virtualization global configurations #[LIBVIRT] #[KVM] +# start: settings for VM startup check +# wait_second: [wait seconds for VM startup] +# Will retry once if can't start in this time +# login_timeout: [seconds for login session timeout] +# used in login action command, login session will reset when timeout happened +# login_prompt: [prompt string] +# password_prompt: [prompt string] +# control: type for connect and manage the virtual machine +# type : [qga|telnet|socket] +# qga: control VM by quest qemu agent +# telnet: control VM by serial port, serial port will redirect to telnet port +# socket : control VM by serial port, serial port will redirect to unix socket domain +# vnc: setting for the virtual machine +# disable: [True|False] +# True: Disable display +# False: Enable display, will automatically allocate display port if no displayNumber option +# displayNumber: [display number] #[XEN] [LIBVIRT] cpu = @@ -12,6 +29,12 @@ cpu = model=host,number=4,cpupin=3 4 5 6; mem = size=2048; +start = + wait_seconds=120,login_timeout=60,login_prompt=login:,password_prompt=Password:; +control = + type=qga; +vnc = + disable=False; [XEN] cpu = number=4,cpupin=3 4 5 6; @@ -19,4 +42,3 @@ mem = size=2048; vif = mac=random,bridge=br0 - -- 1.9.3