to run VDR make a script calll runvdr :
(that is mine)
-------------------------------
VDRPRG="/usr/local/src/VDR/vdr"
VDRCONFIG="/data/vdrconf"
VDRCMD="$VDRPRG -c $VDRCONFIG -w 60 -P'sc' -P'streamdev-server -r /data/vdrconf/plugins/streamdev/externremux.sh' $*"
KILL="/usr/bin/killall -q -TERM"
DRIVERS="rmmod cx88xx
rmmod dvb_ttpci
rmmod budget_ci
modprobe dvb_ttpci
modprobe cx88xx
modprobe budget_ci"
while (true) do
eval "$VDRCMD"
if test $? -eq 0 -o $? -eq 2; then exit; fi
echo "`date` reloading DVB driver"
$KILL $VDRPRG
sleep 10
$DRIVERS
echo "`date` restarting VDR"
done
---------------------------------------
adapted according to your config
then sudo runvdr will do something (for now you are lauching a blank script
)
After what you could tried to connect your xbmc to your VDR
(don t forget about all the settings for streamdev to work correctly & if your xbmc is not in the same box you should also edit the streamdevhosts.conf to allow connection from other computer from the network)
Until next problem
all the others things seems OK
[EDIT1]
it is not
sudo cp streamdev/streamdev/streamdevhosts.conf /etc/vdr/plugins/streamdev
but
sudo cp streamdev/streamdev/streamdevhosts.conf /etc/vdr/plugins/streamdevhosts.conf
hope it is a typo in your post
[EDIT2]
for the part
VDRPRG="/usr/local/src/VDR/vdr"
adapt to where you have install VDR
and for
VDRCONFIG="/data/vdrconf"
for your config it seems to be
VDRCONFIG="/etc/vdr/"