Add Xen domctl API implementation for Zephyr as control domain. Previously Zephyr OS was used as unprivileged Xen domain (Domain-U), but it also can be used as lightweight Xen control domain (Domain-0). To implement such fuctionality additional Xen interfaces are needed. One of them is Xen domain controls (domctls) - it allows to create, configure and manage Xen domains. Also, used it as a possibility to update files copyright and licenses identifiers in touched files. Signed-off-by: Dmytro Firsov <dmytro_firsov@epam.com>
8 lines
225 B
CMake
8 lines
225 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2021-2023 EPAM Systems
|
|
|
|
zephyr_sources(hvm.c)
|
|
zephyr_sources(events.c)
|
|
zephyr_sources_ifdef(CONFIG_XEN_GRANT_TABLE gnttab.c)
|
|
|
|
add_subdirectory_ifdef(CONFIG_XEN_DOM0 dom0)
|