Small faq to DS Team images:
How to add manually EMU??
At fisrt you must put line in /var/tuxbox/config/emulist.xml
for example running
one daemon:
<emu emulator="
DCCAMD" osdname="
CI" emuscript="" daemon="
dccamd filecheck=""" />
for example running
more than one daemon:
<emu emulator="
Newcamd 6.05" osdname="
NEWCAMD" emuscript="
/var/tuxbox/config/newcamd605.xml" daemon="
newcamd.ppc filecheck=""" />
emulator - the name in EmuManger
emuscript - you must use it when you want start more daemon then one, than we must create xml file
daemon - file name in /var/bin to run
/var/tuxbox/config/newcamd605.xml
<?xml version="1.0" encoding="iso-8859-1" ?>
<emu>
<start>
<run binary="
/var/bin/cardserver.dream" />
<delay ms="
1000" />
<run binary="
/var/bin/cardspider.ppc" />
<delay ms="
1000" />
<run binary="
/var/bin/betad.ppc" />
</start>
<stop>
<kill command="
killall cardserver.dream cardspider.ppc betad.ppc" />
</stop>
</emu>
<run binary="
/var/bin/cardserver.dream" /> -this is file which want run with daemon="
newcamd.ppc"
<kill command="
killall cardserver.dream cardspider.ppc betad.ppc" /> - here you must write which daemons it must kill
