From 1dca1da96d5b2991626164677a38d3039f38ddf7 Mon Sep 17 00:00:00 2001 From: Junjie Mao Date: Wed, 18 Aug 2021 13:14:26 +0800 Subject: [PATCH] config_tools: rename two missed PSRAMs to SSRAMs The term PSRAM is now obsoleted and should be replaced with SSRAM, as has been done by commit 9facbb43b3c5 ("config-tool: rename PSRAM to SSRAM"). However, there are two places in the configuration toolset that still uses PSRAM. This patch updates these missed occurrences accordingly. Tracked-On: #6012 Signed-off-by: Junjie Mao --- misc/config_tools/schema/checks/pre_launched_vm_support.xsd | 2 +- misc/config_tools/static_allocators/gpa.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/config_tools/schema/checks/pre_launched_vm_support.xsd b/misc/config_tools/schema/checks/pre_launched_vm_support.xsd index a31f8860e..2fb11d111 100644 --- a/misc/config_tools/schema/checks/pre_launched_vm_support.xsd +++ b/misc/config_tools/schema/checks/pre_launched_vm_support.xsd @@ -36,7 +36,7 @@ or little cores are assigned, but not both. - diff --git a/misc/config_tools/static_allocators/gpa.py b/misc/config_tools/static_allocators/gpa.py index 188c85a56..829763143 100644 --- a/misc/config_tools/static_allocators/gpa.py +++ b/misc/config_tools/static_allocators/gpa.py @@ -334,7 +334,7 @@ def allocate_pci_bar(board_etree, scenario_etree, allocation_etree): def allocate_ssram_region(board_etree, scenario_etree, allocation_etree): # Guest physical address of the SW SRAM allocated to a pre-launched VM - enabled = common.get_node("//PSRAM_ENABLED/text()", scenario_etree) + enabled = common.get_node("//SSRAM_ENABLED/text()", scenario_etree) if enabled == "y": pre_rt_vms = common.get_node("//vm[vm_type ='PRE_RT_VM']", scenario_etree) if pre_rt_vms is not None: