mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-10-11 23:48:07 +00:00
At build time (on the *dev* machine), config_tools depends on "iasl" to generate the binary of ACPI tables for pre-launched VMs. This patch does: - pass ASL_COMPILER to config_tools By default, ASL_COMPILER is initialized by "which iasl" at build time. User could override it by specifying ASL_COMPILER as the build option, like below: make BOARD=xxxx SCENARIO=yyyy ASL_COMPILER=/usr/local/bin/iasl - use ASL_COMPILER as the path to the "iasl" compiler in config_tools v1 -> v2: - add a check to make sure ASL_COMPILER is initialized to a value Tracked-On: #7880 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Reviewed-by: Wang, Yu1 <yu1.wang@intel.com>
Supporting libraries of ACRN configuration toolset
This package contains the libraries supporting ACRN configuration toolset, including:
- The manipulators and validators of scenario schemas or XMLs
- The generator of guest ACPI tables
The main objective of this package is to ease the import of the supporting libraries in the ACRN configurator which uses a Python interpreter built in WebAssembly (WASM). This package is thus NOT intended to be used by users; invoke the Python scripts directly if needed.