diff options
author | 2017-03-06 11:24:07 +0200 | |
---|---|---|
committer | 2017-03-06 11:24:07 +0200 | |
commit | 2daf41e5fc8e2971215ccdaa49efdc7ecdc0b930 (patch) | |
tree | 875aa194109c8c6aea118b1730d9d8a45ba9e5bb /getting-started/troubleshooting.md | |
parent | 9e314198e85becc8fd11bdfdb784a79081851469 (diff) |
docs/getting-started: Fix format
Fix format to ensure that pandoc will generate
successfully HTML, PDF and docuwiki documents.
The docuwiki output has been used to update the
articles in the AGL wiki.
Bug-AGL: SPEC-461
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
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 e252640..0027738 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. @@ -49,22 +49,31 @@ TARGET_CXXFLAGS_remove_pn-gcc-runtime = "-D_GLIBCXX_USE_CXX11_ABI=0" CXXFLAGS_re 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 |