aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorEgor Nemtsev <enemtsev@luxoft.com>2019-10-01 19:14:44 +0300
committerEgor Nemtsev <enemtsev@luxoft.com>2019-10-04 12:38:38 +0000
commitca17aa0664de421a8a0275f8c7a39de54b88c1d0 (patch)
treead87115f33edaeb8c947f392573ba6ab21b76275 /doc
parent6ffa9fcc790521fe3bda7e8f4052d5a1454b58bf (diff)
[qsr] docs update according to services changes
screen config, file names and service names changes on NUC boot2qt target Task-number: AUTOSUITE-1205 Change-Id: I7e2b1dcb8c0cb03b77c8354c40466932230a2ea0 Reviewed-by: Kavindra Palaraja <kpalaraja@luxoft.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/src/neptune3ui-qt-safe-renderer-integration.qdoc27
1 files changed, 16 insertions, 11 deletions
diff --git a/doc/src/neptune3ui-qt-safe-renderer-integration.qdoc b/doc/src/neptune3ui-qt-safe-renderer-integration.qdoc
index 41acff15..70fc55b1 100644
--- a/doc/src/neptune3ui-qt-safe-renderer-integration.qdoc
+++ b/doc/src/neptune3ui-qt-safe-renderer-integration.qdoc
@@ -142,31 +142,36 @@
using \c OnFailure property. When \c neptune3-ui stops, the \c neptune3-ui-qsr-cluster app is
started by systemd.
- The following code shows the "OnFailure" part of the \c {Neptune 3 UI with Safe Renderer}
+ The following code shows the "OnFailure" part of the \c {Neptune 3 UI}
service file, located in \c {/lib/systemd/system/neptune.service}:
\badcode
[Unit]
- OnFailure=neptune3-ui-qsr-cluster.service
+ Conflicts=neptune-qsr.service
+ Before=neptune-qsr.service
+ OnFailure=neptune-qsr.service
\endcode
- The \c {Safe UI} service file in \c {/lib/systemd/system/neptune3-qsr-cluster.service} contains:
+ The \c {Safe UI} service file in \c {/lib/systemd/system/neptune-qsr.service} contains:
\badcode
[Service]
- Type=oneshot
- ExecStart=/opt/neptune3/neptune3-ui-qsr-cluster -platform eglfs
+ ExecStart=/opt/neptune3/neptune3-ui-qsr-cluster
workingDirectory=/opt/neptune3
- Environment=QT_QPA_EGLFS_KMS_CONFIG=/opt/neptune3/neptune3-ui-qsr.json
+ Environment=QT_QPA_EGLFS_KMS_CONFIG=/etc/kms-qsr.conf
+ Environment=QSR_SHOW_TEXT_ON_STARTUP=1
+ Environment=QSR_FILL_BLACK_BACKGROUND=1
\endcode
- The corresponding EGLFS settings JSON file (\c {/opt/neptune3/neptune3-ui-qsr.json}) contains:
+ The corresponding EGLFS settings JSON file (\c {/etc/kms-qsr.conf}) contains:
\badcode
{
- "device": "/dev/dri/card0",
+ "hwcursor": false,
"outputs": [
- { "name": "DP1", "virtualIndex": 2, "mode": "1920x1080"},
- { "name": "DP3", "virtualIndex": 0, "mode": "1920x1080"},
- { "name": "DP4", "virtualIndex": 1, "mode": "1920x1080"}
+ {
+ "name": "DP3",
+ "virtualIndex": 0,
+ "primary": true
+ }
]
}
\endcode