Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If you look at
cat /proc/stb/info/model
it shows "dm500hd"
Could the team here update this in next version to "vuplus duo"?
Thanks for a great image
#!/bin/sh
if grep -qs 7020 /proc/bus/dreambox ; then
BOXTYPE=DM7020
elif grep -qs DM600PVR /proc/bus/dreambox ; then
BOXTYPE=DM600PVR
elif grep -qs DM500PLUS /proc/bus/dreambox ; then
BOXTYPE=DM500plus
elif grep -qs 'ATI XILLEON HDTV SUPERTOLL' /proc/cpuinfo ; then
BOXTYPE=DM7025
elif grep -qs 'dm8000' /proc/stb/info/model ; then
BOXTYPE=DM8000HD
elif grep -qs 'dm800' /proc/stb/info/model ; then
BOXTYPE=DM800HD
else
echo "Box not found or not defined in script!!!"
exit 0
fi
echo $BOXTYPE " found"
wget -q 'http://127.0.0.1/cgi-bin/xmessage?caption=Boxtype&timeout=10&body='$BOXTYPE'' > /dev/nullexit
If you look at
cat /proc/stb/info/model
it shows "dm500hd"
Could the team here update this in next version to "vuplus duo"?
Thanks for a great image