diff options
author | Scott Murray <scott.murray@konsulko.com> | 2022-12-20 14:24:30 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2022-12-20 14:34:43 -0500 |
commit | 32c9f3f9c795b6508a8b76d1f00da25f556ca180 (patch) | |
tree | ef26e6f7ac2fa3cacb09be6d7a489578a4f095bc /recipes-config/cluster-demo-config/cluster-demo-config_1.0.bb | |
parent | 4bab714419f09eb5f341557fd701266b5d9f1baa (diff) |
Rework cluster demo configuration
Changes:
- Rename cluster-dashboard-demo-config to cluster-demo-config since
the installed AGL.conf will also be used for receiver configuration
now.
- Add a Flutter cluster version of AGL.conf that configures the
receiver window geometry as required. The alternative mechanism
is used to generate separate packages with the different AGL.conf
files.
- Update the package names installed by agl-demo-preload in the Qt
and Flutter cluster demo images.
It may make sense to do further rework in the dashboard and receiver
apps post-CES to split things into separate configuration files, but
this seems the most straightforward way to do things for now.
Bug-AGL: SPEC-4640
Change-Id: If8a65228c75f28a53ef32a49be90f75a85d60a16
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'recipes-config/cluster-demo-config/cluster-demo-config_1.0.bb')
-rw-r--r-- | recipes-config/cluster-demo-config/cluster-demo-config_1.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-config/cluster-demo-config/cluster-demo-config_1.0.bb b/recipes-config/cluster-demo-config/cluster-demo-config_1.0.bb new file mode 100644 index 000000000..48b7965e4 --- /dev/null +++ b/recipes-config/cluster-demo-config/cluster-demo-config_1.0.bb @@ -0,0 +1,31 @@ +SUMMARY = "AGL cluster demo configuration file" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" + +SRC_URI += " \ + file://AGL.conf.default \ + file://AGL.conf.flutter \ +" + +inherit allarch update-alternatives + +do_install() { + install -D -m 0644 ${WORKDIR}/AGL.conf.default ${D}${sysconfdir}/xdg/AGL.conf.default + install -m 0644 ${WORKDIR}/AGL.conf.flutter ${D}${sysconfdir}/xdg/ +} + +ALTERNATIVE_LINK_NAME[AGL.conf] = "${sysconfdir}/xdg/AGL.conf" + +PACKAGE_BEFORE_PN += "${PN}-flutter" + +FILES:${PN} += "${sysconfdir}/xdg/AGL.conf.default" +RPROVIDES:${PN} = "AGL.conf" +RCONFLICTS:${PN} = "${PN}-flutter" +ALTERNATIVE:${PN} = "AGL.conf" +ALTERNATIVE_TARGET_${PN} = "${sysconfdir}/xdg/AGL.conf.default" + +FILES:${PN}-flutter += "${sysconfdir}/xdg/AGL.conf.flutter" +RPROVIDES:${PN}-flutter = "AGL.conf" +RCONFLICTS:${PN}-flutter = "${PN}" +ALTERNATIVE:${PN}-flutter = "AGL.conf" +ALTERNATIVE_TARGET_${PN}-flutter = "${sysconfdir}/xdg/AGL.conf.flutter" |