Skip to content
Snippets Groups Projects
Commit 05e7875a authored by Naoto Yamaguchi's avatar Naoto Yamaguchi
Browse files

Create simple layout manager recipe


The ivi guest for demo use wayland-ivi-extension.  That need to window manager.
This patch add tiny window manager for demo.

Bug-AGL: SPEC-4097

Signed-off-by: default avatarNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Change-Id: I8392db39a7e2de5d8c61d511421afea9586d7922
parent 538e7951
No related branches found
No related tags found
No related merge requests found
{
"screen": [
{
"name": "cluster-screen",
"dispname": "HDMI-A-2"
},
{
"name": "ivi-screen",
"dispname": "HDMI-A-1"
}
],
"layer": [
{
"name": "cluster-layer",
"id": 1000,
"width": 1920,
"height": 720,
"x": 0,
"y": 0,
"z": 10,
"attach": "cluster-screen"
},
{
"name": "ivi-layer",
"id": 2000,
"width": 1920,
"height": 1080,
"x": 0,
"y": 0,
"z": 10,
"attach": "ivi-screen"
}
],
"surface": [
{
"name": "cluster-app",
"id": 10,
"x": 0,
"y": 0,
"z": 100,
"attach": "cluster-layer"
},
{
"name": "ivi-app",
"id": 2010,
"x": 0,
"y": 0,
"z": 100,
"attach": "ivi-layer"
},
{
"name": "xdg-test",
"id": 9801,
"x": 0,
"y": 0,
"z": 110,
"attach": "ivi-layer"
}
]
}
[Unit]
Description=Tiny Window Manager
After=weston.service
Wants=weston.service
[Service]
Type=simple
EnvironmentFile=/etc/default/weston
ExecStart=/usr/bin/ilmmanager
[Install]
WantedBy=weston.service
SUMMARY = "Tiny window manager for wayland-ivi-extension"
DESCRIPTION = "Tiny window manager for wayland-ivi-extension"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=89aea4e17d99a7cacdbeed46a0096b10"
DEPENDS = "jsoncpp wayland-ivi-extension"
PV = "0.1.0+rev${SRCPV}"
SRCREV = "e3a33d47195e4656f7117753d27a0f2d6b21aab9"
SRC_URI = " \
git://github.com/AGLExport/ilm-manager.git;protocol=https \
file://agl.json \
file://ilm-manager.service \
"
S = "${WORKDIR}/git"
inherit autotools pkgconfig systemd
do_install_append() {
#install scripts
install -d ${D}/etc
install -m 0644 ${WORKDIR}/agl.json ${D}/etc
install -d ${D}/lib/systemd/system
install -m 0644 ${WORKDIR}/ilm-manager.service ${D}/lib/systemd/system
}
FILES_${PN} += " ${systemd_unitdir} /etc/* "
SYSTEMD_PACKAGES = "${PN}"
SYSTEMD_SERVICE_${PN} = "ilm-manager.service"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment