21 lines
946 B
Plaintext
21 lines
946 B
Plaintext
# The VM type of a VM which lifecycle manager will run on
|
|
# -service_vm the lifecycle manager will be run on the service VM
|
|
# -user_vm the lifecycle manager will be run on the user VM
|
|
VM_TYPE=user_vm
|
|
|
|
# The VM name of a VM which lifecycle manager will run on, the name should
|
|
# be unique in the whole system, this name will be embedded log message to
|
|
# help user to do system debugging.
|
|
VM_NAME=user_VM
|
|
|
|
# The device type and device names of the devices which are used to
|
|
# communicate with other VMs in lifecycle manager.
|
|
# For user VM, the default value is tty:/dev/ttyS1;
|
|
#
|
|
# For service VM, the default setting rule of this field: /dev/ttyS8 is to
|
|
# communicate with VM1 (VM ID in hypervisor = 1), /dev/ttyS9 is for VM2 (VM ID is 2),
|
|
# /dev/ttyS10 is for VM3 (VM ID is 3) ... /dev/ttyS14 is for VM7 (VM ID is 7)
|
|
# note: need to double check related communication vuarts are valid in hypervisor scenario config
|
|
# file.
|
|
DEV_NAME=tty:/dev/ttyS1
|