diff options
author | Stephen Lawrence <stephen.lawrence@renesas.com> | 2017-01-04 20:37:08 +0000 |
---|---|---|
committer | Khiem Nguyen <khiem.nguyen.xt@renesas.com> | 2017-03-27 03:34:01 +0000 |
commit | 0f150a21d21bc7e24ea111d1e039abad76b4dfc0 (patch) | |
tree | e72353fe278b32d5dae08d53aed7ac8600ab42cd /meta-rcar-gen3/include | |
parent | bad228d40fbec195d2ec0240e34606bcd08126cb (diff) |
rcar-gen3: weston: Add support ivi-shell and ivi-extension
This commit configures weston to use the Genivi Compositor components
ivi-shell and ivi-extension rather than the default desktop-shell.
Default status is disabled.
To enable ivi-shell and ivi-extension,
please uncomment the following line in local.conf:
DISTRO_FEATURES_append = " ivi-shell"
Change-Id: Ia6aa51175c83bf4b9f3e887cd114b3755c1e4e09
Signed-off-by: Stephen Lawrence <stephen.lawrence@renesas.com>
Signed-off-by: Thao Nguyen <thao.nguyen.yb@rvc.renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/include')
-rw-r--r-- | meta-rcar-gen3/include/gles-control.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-rcar-gen3/include/gles-control.inc b/meta-rcar-gen3/include/gles-control.inc index 65ca5e2..045caa3 100644 --- a/meta-rcar-gen3/include/gles-control.inc +++ b/meta-rcar-gen3/include/gles-control.inc @@ -1,3 +1,6 @@ USE_GLES = "${@'1' if 'gsx' in '${MACHINE_FEATURES}' else '0'}" USE_GLES_WAYLAND = \ "${@'1' if '${USE_GLES}' == '1' and 'wayland' in '${DISTRO_FEATURES}' else '0'}" +USE_WAYLAND_IVI_SHELL = \ + "${@'1' if 'ivi-shell' in '${DISTRO_FEATURES}' and \ + 'wayland' in '${DISTRO_FEATURES}' else '0'}" |