mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-24 14:33:38 +00:00
config tool: fixup load_order bug
fixup load_order bug Tracked-On:#6690 Signed-off-by: hangliu1 <hang1.liu@linux.intel.com>
This commit is contained in:
parent
d1e3e8d633
commit
c4bf41bfd0
@ -119,16 +119,16 @@ def get_ivshmem_enabled_by_tree(etree):
|
||||
return shmem_enabled
|
||||
|
||||
def is_pre_launched_vm(vm_type):
|
||||
if vm_type is 'PRE_LAUNCHED_VM':
|
||||
if vm_type == 'PRE_LAUNCHED_VM':
|
||||
return True
|
||||
return False
|
||||
|
||||
def is_post_launched_vm(vm_type):
|
||||
if vm_type is 'POST_LAUNCHED_VM':
|
||||
if vm_type == 'POST_LAUNCHED_VM':
|
||||
return True
|
||||
return False
|
||||
|
||||
def is_service_vm(vm_type):
|
||||
if vm_type is 'SERVICE_VM':
|
||||
if vm_type == 'SERVICE_VM':
|
||||
return True
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user