[OE-core] [PATCH] xorg-xserver : Disabled BlankTime, StandbyTime, SuspendTime and OffTime in X default for QEMU images

2024-04-12 Thread K Sanjay Nayak
Fixes [YOCTO #15436]

This fix addresses the issue of Xserver screensaver blanking being enabled on 
QEMU images by
disabling BlankTime, StandbyTime, SuspendTime, and OffTime in the Xorg default 
settings for QEMU images.

Reference : https://www.x.org/archive/X11R6.8.0/doc/xorg.conf.5.html

Reported-by   : Richard Purdie 
Signed-off-by: K Sanjay Nayak 
---
 .../xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf| 4 
 .../xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf| 4 
 .../xorg-xserver/xserver-xf86-config/qemush4/xorg.conf| 4 
 .../xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf | 4 
 .../xorg-xserver/xserver-xf86-config/qemux86/xorg.conf| 4 
 5 files changed, 20 insertions(+)

diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf
index f4cd139e8d..3eb380a0a4 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf
@@ -35,4 +35,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf
index f4cd139e8d..3eb380a0a4 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf
@@ -35,4 +35,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf
index f4cd139e8d..3eb380a0a4 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf
@@ -35,4 +35,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
index c12d92c201..c01c3331c5 100644
--- 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
+++ 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
@@ -30,4 +30,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
index c12d92c201..c01c3331c5 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
@@ -30,4 +30,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#198184): 
https://lists.openembedded.org/g/openembedded-core/message/198184
Mute This Topic: https://lists.openembedded.org/mt/105488284/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [PATCH] xorg-xserver : Disabled BlankTime, StandbyTime, SuspendTime and OffTime in X default for QEMU images

2024-04-09 Thread K Sanjay Nayak
Fixes [YOCTO #15436]

This fix addresses the issue of Xserver screensaver blanking being enabled on 
QEMU images by
disabling BlankTime, StandbyTime, SuspendTime, and OffTime in the Xorg default 
settings for QEMU images.

Reference : https://www.x.org/archive/X11R6.8.0/doc/xorg.conf.5.html

Reported-by   : Richard Purdie 
Signed-off-by: K Sanjay Nayak 
---
 .../xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf| 4 
 .../xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf| 4 
 .../xorg-xserver/xserver-xf86-config/qemush4/xorg.conf| 4 
 .../xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf | 4 
 .../xorg-xserver/xserver-xf86-config/qemux86/xorg.conf| 4 
 5 files changed, 20 insertions(+)

diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf
index f4cd139e8d..3eb380a0a4 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuarm/xorg.conf
@@ -35,4 +35,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf
index f4cd139e8d..3eb380a0a4 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemuppc/xorg.conf
@@ -35,4 +35,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf
index f4cd139e8d..3eb380a0a4 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemush4/xorg.conf
@@ -35,4 +35,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
index c12d92c201..c01c3331c5 100644
--- 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
+++ 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86-64/xorg.conf
@@ -30,4 +30,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
diff --git 
a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf 
b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
index c12d92c201..c01c3331c5 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/qemux86/xorg.conf
@@ -30,4 +30,8 @@ Section "ServerLayout"
 Identifier"Default Layout"
 Screen"Default Screen"
 Option "AllowEmptyInput" "no"
+Option"BlankTime" "0"
+Option"StandbyTime" "0"
+Option"SuspendTime" "0"
+Option"OffTime" "0"
 EndSection
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#198056): 
https://lists.openembedded.org/g/openembedded-core/message/198056
Mute This Topic: https://lists.openembedded.org/mt/105418183/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-