diff options
Diffstat (limited to 'meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland')
-rw-r--r-- | meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston/weston-rcar.ini | 11 | ||||
-rw-r--r-- | meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston_%.bbappend | 16 |
2 files changed, 26 insertions, 1 deletions
diff --git a/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston/weston-rcar.ini b/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston/weston-rcar.ini new file mode 100644 index 000000000..a37895c9c --- /dev/null +++ b/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston/weston-rcar.ini @@ -0,0 +1,11 @@ +[core] +shell=ivi-shell.so +backend=drm-backend.so +repaint-window=34 + +[ivi-shell] +ivi-module=ivi-controller.so + +[output] +name=HDMI-A-1 +transform=90 diff --git a/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston_%.bbappend b/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston_%.bbappend index 9fa8dd8f8..98b973caa 100644 --- a/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston_%.bbappend +++ b/meta-agl-bsp/meta-rcar-gen3/recipes-graphics/wayland/weston_%.bbappend @@ -1,3 +1,15 @@ +FILESEXTRAPATHS_append := ":${THISDIR}/${PN}" + +SRC_URI_append = "\ + file://weston-rcar.ini \ + " + +do_install_append() { + WESTON_INI_CONFIG=${sysconfdir}/xdg/weston + install -d ${D}${WESTON_INI_CONFIG} + install -m 0644 ${WORKDIR}/weston-rcar.ini ${D}${WESTON_INI_CONFIG}/weston.ini +} + FILES_${PN}_append_rcar-gen3 = " \ ${libexecdir}/weston-screenshooter \ ${libexecdir}/weston-ivi-shell-user-interface \ @@ -6,4 +18,6 @@ FILES_${PN}_append_rcar-gen3 = " \ ${libexecdir}/weston-desktop-shell \ " -SRC_URI_remove = "file://fix-touchscreen-crash.patch" +FILES_${PN}_append = " \ + ${sysconfdir}/xdg/weston/weston.ini \ + " |