blob: 95910da77b4c4e82afa3cac7acfbb11ceff87f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
SUMMARY = "Setting files of mapviewer for the AGL Demonstrator"
DESCRIPTION = "Setting files of mapviewer for the AGL Demonstrator"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SECTION = "apps"
inherit systemd
SRC_URI = " \
file://weston-mapviewer-demo.ini \
file://weston-mapviewer-demo.conf \
file://weston-ready.conf \
file://mapviewer-demo-network-conf.service \
"
do_install() {
# Install tweaked weston configuration
install -d ${D}${sysconfdir}/xdg/weston
install -m 0644 ${WORKDIR}/weston-${PN}.ini ${D}${sysconfdir}/xdg/weston/weston-${PN}.ini
# Install weston service unit configuration over-ride drop-in
install -d ${D}${systemd_system_unitdir}/weston.service.d
install -m 0644 ${WORKDIR}/weston-mapviewer-demo.conf ${D}${systemd_system_unitdir}/weston.service.d
# Install cluster demo network configuration service unit
install -m 0644 ${WORKDIR}/mapviewer-demo-network-conf.service ${D}${systemd_system_unitdir}
# Add symlink to network.target.wants
install -d ${D}${sysconfdir}/systemd/system/network.target.wants
ln -s ${systemd_system_unitdir}/mapviewer-demo-network-conf.service ${D}${sysconfdir}/systemd/system/network.target.wants/
# Workaround for now to ensure that the windowmanager and its dependencies
# start after weston, which takes longer with gst-record enabled.
# This should be investigated a bit further and likely reworked into
# something more generically applicable.
install -d ${D}${sysconfdir}/systemd/system/afm-api-windowmanager@.service.d
install -m 0644 ${WORKDIR}/weston-ready.conf ${D}${sysconfdir}/systemd/system/afm-api-windowmanager@.service.d
}
FILES_${PN} += " \
${sysconfdir}/xdg/weston/ \
${systemd_system_unitdir} \
"
|