Anyhow, I got Raspbian Jessie up and running and installed Kodi (and the addon for Google Music).
I've made the adjustment to prevent booting into the WM GUI.
What I'd like is to get my Pi to boot straight into Kodi, as this *should* end up being a headless media streamer (controlled via Yatse).
So far, I have created kodi.conf in /etc/init/ with the following script:
Code: Select all
# kodi-upstart
# starts Kodi on startup by using xinit.
# by default runs as kodi, to change edit below.
env USER=kodi
description "Kodi-barebones-upstart-script"
author "Matt Filetto"
start on (filesystem and stopped udevtrigger)
stop on runlevel [016]
# tell upstart to respawn the process if abnormal exit
respawn
script
exec su -c "xinit /usr/bin/kodi-standalone -- -nocursor :0" $USER
end script
Thanks in advance for any assistance.