diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-03-21 14:33:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2017-03-21 14:33:07 +0000 |
commit | 6f6cfc38e424a55cea120327d0c365caa00cb8ce (patch) | |
tree | f7e789986b2198b6dcbcbbeb37219c34a4ccb9a1 /meta-agl-bsp/meta-rcar-gen3/recipes-graphics | |
parent | 646138f47c45364cca0c80a57294ace4075dbfb9 (diff) | |
parent | 74018582ffebc8d985fcfa7e33526ac32078010c (diff) |
Merge "[rcar-gen3] update weston recipes bbappend"
Diffstat (limited to 'meta-agl-bsp/meta-rcar-gen3/recipes-graphics')
-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 \ + " |