diff options
author | Walt Miner <wminer@linuxfoundation.org> | 2017-09-27 08:04:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-27 08:04:59 -0500 |
commit | 8c17e62a94e02abbaf7867a7dc2f6806af8cc1a0 (patch) | |
tree | 50a5e17c220c7a1db432be2b3bf19665be38bfb8 /getting-started | |
parent | 6b3c0d9131a5222ba6df120fd9e451b6ac19c579 (diff) | |
parent | 59e5e346f40c965c17adc5f6210bbed856149117 (diff) |
Merge pull request #78 from XevoInc/master
troubleshooting: Disabling Homescreen in AGL 4.0.x DD release
Diffstat (limited to 'getting-started')
-rw-r--r-- | getting-started/troubleshooting.md | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/getting-started/troubleshooting.md b/getting-started/troubleshooting.md index 274456d..4438e57 100644 --- a/getting-started/troubleshooting.md +++ b/getting-started/troubleshooting.md @@ -60,7 +60,7 @@ File: /etc/xdg/weston/weston.ini Line: transform=90 ``` -## Disabling Homescreen in AGL 3.0.x CC release +## Disabling Homescreen in AGL 4.0.x DD release **Problem**: new installed applications are not available on Homescreen and even if started manually through afm-util, the application starts but no surface appears. @@ -77,7 +77,7 @@ To disable IVI-Shell and revert to the "plain old" weston desktop, you can follo ... ``` -* modify */usr/lib/systemd/user/afm-user-daemon.service* and comment the line specifying QT Wayland backend: +* modify */etc/afm/unit.env.d/qt-for-ivi-shell* and comment the line specifying QT Wayland backend: ```bash ... @@ -85,13 +85,12 @@ To disable IVI-Shell and revert to the "plain old" weston desktop, you can follo ... ``` +(If you use vi, remove backup files by `rm /etc/afm/unit.env.d/*~`) + * disable Homescreen services: ```bash - # systemctl disable HomeScreenAppFrameworkBinderAGL.service - # systemctl disable HomeScreen.service - # systemctl disable InputEventManager.service - # systemctl disable WindowManager.service + # systemctl --user mask HomeScreen.service ``` -* Reboot your target and you should then be able to start apps on the standard weston screen using afm-util
\ No newline at end of file +* Reboot your target and you should then be able to start apps on the standard weston screen using afm-util |