diff options
author | Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com> | 2017-06-10 17:30:21 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-06-20 09:45:23 +0000 |
commit | 8ae8c01240bddc1f88a2350094eedcfff2ad58c2 (patch) | |
tree | fdb0921e549f56bb50e152029520bb8948b20999 | |
parent | 95b850fa3ae4674576a5ff7b5afd6c27b753b840 (diff) |
Set idle-time to 0 in weston.service.
As described weston.ini.man, "idle-time" should be set 0 if user
want not to enable screen saver.
A value of 0 disables the timeout.
Change-Id: I17cff212a5231be05008ac1a5acc23d86bb9be51
Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/9693
Tested-by: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
ci-image-build: Jenkins Job builder account <agl-jobbuilder@automotivelinux.org>
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | meta-agl/classes/agl-graphical.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-agl/classes/agl-graphical.bbclass b/meta-agl/classes/agl-graphical.bbclass index 3eb82dbc0..e99a441b7 100644 --- a/meta-agl/classes/agl-graphical.bbclass +++ b/meta-agl/classes/agl-graphical.bbclass @@ -1,7 +1,7 @@ WESTONTTY ??= "1" WESTONUSER ??= "display" WESTONGROUP ??= "display" -WESTONARGS ?= "--idle-time=4294967" +WESTONARGS ?= "--idle-time=0 --tty=${WESTONTTY}" WESTONLAUNCHARGS ??= "--tty /dev/tty${WESTONTTY} --user ${WESTONUSER}" DISPLAY_XDG_RUNTIME_DIR ??= "/run/platform/${WESTONUSER}" |