diff options
author | Walt Miner <wminer@linuxfoundation.org> | 2017-04-26 08:03:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 08:03:09 -0500 |
commit | 4e9dc8be544e2a107d35860d1a9852e16d60cc03 (patch) | |
tree | f8d0f26c234a8183d4efd0cb545a2a5fc99760ba /getting-started/troubleshooting.md | |
parent | f518f73e6d081f0fe6468449c9f1c91259f5274f (diff) | |
parent | 3072d763f22d76aa5caef4636ffef2835b14155d (diff) |
Merge pull request #50 from leon-anavi/master
Update Raspberry Pi docs and fix format to export valid docuwiki for AGL wiki
Diffstat (limited to 'getting-started/troubleshooting.md')
-rw-r--r-- | getting-started/troubleshooting.md | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/getting-started/troubleshooting.md b/getting-started/troubleshooting.md index 7059599..183d0c9 100644 --- a/getting-started/troubleshooting.md +++ b/getting-started/troubleshooting.md @@ -2,7 +2,7 @@ ## Extended attributes MUST be copied -***IMPORTANT, The extended attribute set during image construction MUST be copied to the SD card.*** +**IMPORTANT, The extended attribute set during image construction MUST be copied to the SD card.** When using tar to create the SDcard, it is a common error to not copy the extended attributes. Find below instruction for using tar. @@ -61,22 +61,31 @@ Line: transform=90 To disable IVI-Shell and revert to the "plain old" weston desktop, you can follow the 4 steps below: -1. modify */etc/xdg/weston/weston.ini* and comment the line mentioning IVI-shell. For example on Porter board: +* Modify */etc/xdg/weston/weston.ini* and comment the line mentioning IVI-shell. For example on Porter board: +``` [core] backend=drm-backend.so #shell=ivi-shell.so ... -2. modify */usr/lib/systemd/user/afm-user-daemon.service* and comment the line specifying QT Wayland backend: +``` + +* modify */usr/lib/systemd/user/afm-user-daemon.service* and comment the line specifying QT Wayland backend: +``` ... #Environment=QT_WAYLAND_SHELL_INTEGRATION=ivi-shell ... -3. disable Homescreen services: +``` +* disable Homescreen services: + +``` # systemctl disable HomeScreenAppFrameworkBinderAGL.service # systemctl disable HomeScreen.service # systemctl disable InputEventManager.service # systemctl disable WindowManager.service -4. Reboot your target and you should then be able to start apps on the standard weston screen using afm-util +``` + +* Reboot your target and you should then be able to start apps on the standard weston screen using afm-util |