diff options
author | Scott Murray <scott.murray@konsulko.com> | 2024-02-20 15:17:17 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2024-03-19 14:10:19 +0000 |
commit | a048283b5d63452f1a752769a690b53ef884e70f (patch) | |
tree | 724bea2d0c5cc4ead366c8fa967f4605293f2a2e /recipes-platform/images/agl-kvm-demo-platform.bb | |
parent | cdb8cbef1ff2bbf188918f7d5a37763b57873f66 (diff) |
Enable running audio services on host for KVM demo
Changes:
- Add agl-kvm-host-audio feature for configuring other changes.
- Make installation of packagegroup-agl-ivi-service-platform in the
KVM host versus IVI images dependent on the agl-kvm-host-audio
feature. Some recipe dependencies are tweaked by the feature
being specified to avoid accidentally pulling things into the
IVI guest images.
- Add KVM demo specific configuration for applications affected by
running the databroker on the host versus in the IVI guest, and
use it if the agl-kvm-host-kuksa feature is enabled.
Bug-AGL: SPEC-5082
Change-Id: I3a6e6216a90e4d260c20f0b048e6332466aef4ff
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/29702
ci-image-boot-test: Jenkins Job builder account
ci-image-build: Jenkins Job builder account
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jenkins Job builder account
(cherry picked from commit 49a85681e52d1f568a5bb6086d7e14af701ac6dc)
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/29762
Diffstat (limited to 'recipes-platform/images/agl-kvm-demo-platform.bb')
-rw-r--r-- | recipes-platform/images/agl-kvm-demo-platform.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-platform/images/agl-kvm-demo-platform.bb b/recipes-platform/images/agl-kvm-demo-platform.bb index feafe2e13..ddb2ddb45 100644 --- a/recipes-platform/images/agl-kvm-demo-platform.bb +++ b/recipes-platform/images/agl-kvm-demo-platform.bb @@ -30,6 +30,29 @@ IMAGE_INSTALL += " \ alsa-utils \ " +# Until virtio sound is workable with QEMU, run the audio using +# services on the host for a better demo experience. At the +# moment, this also includes the HVAC service since it does not +# make sense to try to make things more fine-grained with respect +# to configuration for where things expect to find the databroker. +# It will need to be revisited when virtio-snd, virtio-gpio, etc. +# become feasible to use. +HOST_AUDIO_INSTALL = " \ + packagegroup-agl-ivi-services-platform \ + agl-service-radio-conf-kvm-demo \ + packagegroup-pipewire \ + wireplumber-config-agl \ + wireplumber-policy-config-agl \ + mpd \ + udisks2 \ + ${@bb.utils.contains("DISTRO_FEATURES", "agl-devel", "packagegroup-pipewire-tools mpc" , "", d)} \ +" + +IMAGE_INSTALL += "\ + ${@bb.utils.contains("AGL_FEATURES", "agl-kvm-host-kuksa", "kuksa-databroker-agl-demo-cluster", "", d)} \ + ${@bb.utils.contains("AGL_FEATURES", "agl-kvm-host-audio", "${HOST_AUDIO_INSTALL}", "", d)} \ +" + # Potential size reduction options #IMAGE_LINGUAS = " " #NO_RECOMMENDATIONS = "1" |