aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2016-12-14 15:17:50 -0500
committerScott Murray <scott.murray@konsulko.com>2016-12-14 15:22:55 -0500
commit7aa7d70bde8242edf1f0a12546754c371fbfe03c (patch)
treef023f42a495bbf6f3e9eb3352b8258f91097c33a
parentb0632b0a5cd7e31c79c4a81764ebed329114a983 (diff)
Fix EGL library name in HomeScreen systemd unit
The LD_PRELOAD of the EGL library in HomeScreen.service's Environment definition needs to be /usr/lib/libEGL.so.1, as the images do not contain an undecorated .so symlink. This had recently been fixed in the old demo's startup scripts, but seems to have been missed in the switch to systemd startup. Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Ief95db5a6a7e26294a2db919c9efe01616fe7755
-rw-r--r--HomeScreen/conf/HomeScreen.service2
1 files changed, 1 insertions, 1 deletions
diff --git a/HomeScreen/conf/HomeScreen.service b/HomeScreen/conf/HomeScreen.service
index 6d76382..b60c86e 100644
--- a/HomeScreen/conf/HomeScreen.service
+++ b/HomeScreen/conf/HomeScreen.service
@@ -10,7 +10,7 @@ Type=dbus
BusName=org.agl.homescreen
ExecStartPre=/bin/systemctl --user is-active WindowManager
ExecStart=/usr/AGL/homescreen/HomeScreen
-Environment=QT_IVI_SURFACE_ID=1000 QT_WAYLAND_SHELL_INTEGRATION=ivi-shell LD_PRELOAD=/usr/lib/libEGL.so
+Environment=QT_IVI_SURFACE_ID=1000 QT_WAYLAND_SHELL_INTEGRATION=ivi-shell LD_PRELOAD=/usr/lib/libEGL.so.1
Restart=on-failure
RestartSec=1