mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-01 11:55:25 +00:00
Currently, if user starts acrnd service, acrnd service will fail to find the folder "/sys/kernel/gvt" in Service VM, fail to start. Root cause is GVT-g is not supported in current ACRN, the folder "/sys/kernel/gvt" will not be created in Service VM. This patch updates acrnd service to remove this condition check. v1-->v2: Weston service is optional for ACRN, acrnd should not depend on it, so remove weston service dependency in acrnd service. Tracked-On: #6994 Signed-off-by: Xiangyang Wu <xiangyang.wu@intel.com> Acked-by: Wang, Yu1 <yu1.wang@intel.com>
14 lines
238 B
Desktop File
14 lines
238 B
Desktop File
[Unit]
|
|
Description=ACRN manager deamon
|
|
After=systemd-resolved.service
|
|
ConditionPathExists=/dev/acrn_hsm
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/bin/acrnd -t
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|