mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-05 07:35:31 +00:00
The method `enter_scope` of class `Context` is a reduced implementation of `change_scope` which assumes that the given name is simply a NameSeg. This method is currently only used when a new named scope is opened by a DefDevice object for historical reasons. As the other named-scope-opening objects all use `change_scope` which can handle arbitrary NameString, this patch unifies the code by removing `enter_scope` and replacing the only occurrence with `change_scope`. This also resolves the parsing of AML templates in board XMLs where device names can be more than a simple NameSeg. Tracked-On: #6287 Signed-off-by: Junjie Mao <junjie.mao@intel.com>
folder structure board_inspector : Get target board information under native Linux environment and generate board_info XML. board_config : Parse board_info XML and scenario XML to generate board related configuration files under misc/acrn-config/xmls/board-xmls/ folder. scenario_config : Parse board_info XML and scenario XML to generate scenario based VM configuration files under misc/acrn-config/xmls/config-xmls/$(BOARD)/ folder. launch_config : Parse board_info XML, scenario XML and devicemodel param XML to generate launch script for post-launched vm under misc/acrn-config/xmls/config-xmls/$(BOARD)/ folder. library : The folder stores shared software modules or libs for acrn-config offline tool.