xbmc-live.conf not loading setting from ./xbmc
#1
Hi,

I just updated to 9.11 beta1 on my Jaunty minimal install and by mistake I overwrote the xbmc-live launch script that is in /etc/init.d for autostart.
The problem now is that XBMC launches fine but doesn't load my personal settings and library that are in ./xbmc local folder.
If I start X and XBMC manually everything goes fines.
The xbmc-live script is the default one, I haven't modified it (located in /etc/init.d)
The following parameters have been added to the boot command in menu.lst: xbmc=noredir,nodiskmount,autostart

What should I modify in the script to have it:
-autostart XBMC without login
-load my personal settings and library stored in /home/xbmc/.xbmc
-not create a custom xorg.conf since I want to use the one stored in /etc/X11/

Thanks for your help!
Reply
#2
Here's an update to my problem that is still not solved...

I found this post http://forum.xbmc.org/showthread.php?tid=61002&page=2 and tried the following xbmc-live script:
Code:
# xbmc-minimal
#
# init XBMC environment and starts XBMC in fullscreen (if asked to do so)

description     "XBMC-minimal"
author          "Luigi Capriotti - Modified by alanwww1"

start on (filesystem and started hal)
stop on runlevel [06]

pre-start script
    if [ -f /home/xbmc/.xsession ] ; then
        rm /home/xbmc/.xsession
    fi
    if [ -f /tmp/noRestartXBMC ] ; then
        rm /tmp/noRestartXBMC
    fi
end script

script
    exec /usr/bin/runXBMC
end script

post-start script
        /usr/bin/setAlsaVolumes
        /usr/bin/diskmounter
        echo USB0 > /proc/acpi/wakeup
        echo -1 >/sys/module/usbcore/parameters/autosuspend
end script

pre-stop script
    touch /tmp/noRestartXBMC
end script

Unfortunately it didn't work and I get an error on the line containing:
start on (filesystem and started hal)

May it be related to the fact that this script has been made for Karmic and I'm running Jaunty?

If anyone has another solution please share!
Thanks!
Reply

Logout Mark Read Team Forum Stats Members Help
xbmc-live.conf not loading setting from ./xbmc0