I did not have mvp.bin. That's the file that the log indicated could not be
found. So I simply renamed dongle.bin to mvp.bin and I renamed
dongle.bin.config to mvp.bin.config. My config file contents are shown
below. However, mvpmc is not loading the config file. I can tell because the
TZ and hosts file are not being set.
# set up host environment variable
HNAME=`hostname`
export HNAME
# setup time and date
# timezone first
TZ='EST+5EDT,M3.2.0/2,M11.1.0/2'
export TZ
echo "TZ='EST+5EDT,M3.2.0/2,M11.1.0/2'; export TZ" > /etc/shell.config;
# set the system clock from the backend ntp service
/bin/ntpclient -s -h 192.168.1.100
# create an /etc/hosts file
# note -- on H4 hardware, the following and third line (below) caused
MVP reboot loop. Including the "BE" lines helped with LiveTV.
LH="127.0.0.1 localhost localhost"
BE="192.168.1.100 backend_hostname backend_hostname"
echo $LH > /etc/hosts
echo $BE >> /etc/hosts
# set up to load and save settings
# load settings
. /etc/udhcpc.config
SETTINGSDIR=/tmp/settings
mkdir -p ${SETTINGSDIR}
SETTINGS=${SETTINGSDIR}/settings
RSETTINGS=settings.${HNAME:-$IP}
LASTSAVED=${SETTINGSDIR}/.lastsaved
touch $LASTSAVED
tftp -g -r $RSETTINGS -l $SETTINGS $SERVER;
# save settings
(
while true; do
if [ $SETTINGS -nt $LASTSAVED ] ; then
tftp -p -l $SETTINGS -r $RSETTINGS $SERVER;
touch $LASTSAVED;
fi;
sleep 300;
done
)&
# boot the MediaMVP
mvpmc -f /etc/helvB14.pcf -o composite -s 192.168.1.100 -y
192.168.1.100 -T mythconverg -u mythtv -p DBPASSWORD -F $SETTINGS &
On Thu, Dec 3, 2009 at 1:39 PM, Dave Ansell <[email protected]> wrote:
> If you have mvp.bin then you should also have mvp.bin.config.
> What is in the config file?
>
>
> ----- Original Message -----
> *From:* Dave <[email protected]>
> *To:* [email protected]
> *Sent:* Thursday, December 03, 2009 5:17 PM
> *Subject:* [Mvpmc-users] File /tftpboot/mvp.bin not found
>
> I am using this
> guide<https://help.ubuntu.com/community/MythTV/MediaMVP_Frontend>to set up a
> MediaMVP frontend with Mythbuntu 9.10.
>
> After completing all the basic installation steps, I attempted to boot up
> the MediaMVP. The boot process did not complete, so I checked the logs:
> $ tail -n 25 /var/log/syslog
> Dec 3 10:49:14 myMythBE atftpd[2306]: socket may listen on any address,
> including broadcast
> Dec 3 10:49:14 myMythBE atftpd[2306]: Creating new socket:
> 192.168.2.107:43431
> Dec 3 10:49:14 myMythBE atftpd[2306]: Serving mvp.bin to
> 192.168.2.103:3909
> Dec 3 10:49:14 myMythBE atftpd[2306]: *File /tftpboot/mvp.bin not found*
> Dec 3 10:49:14 myMythBE atftpd[2306]: Server thread exiting
> Dec 3 10:49:54 myMythBE atftpd[2306]: socket may listen on any address,
> including broadcast
>
> Indeed, there is no mention of /tftpboot/mvp.bin in the how-to. As a guess,
> I copied dongle.bin to mvp.bin. Now the MediaMVP will boot up, but it lacks
> the MythTV configuration.
>
> Searching on Google gives: *No results found* for "File /tftpboot/mvp.bin
> not found" (with quotes)
> Wow. No one else has run into this???
>
> more info:
> MediaMVP Model 86001 rev D3A.ot4503
> # uname -a
> Linux 192.168.2.103 2.4.31-v1.1-hcwmvp #1 Tue Feb 20 22:58:51 CST 2007 ppc
> unknown
>
> *Can anyone tell me where I went wrong?*
>
> ------------------------------
>
>
> ------------------------------------------------------------------------------
> Join us December 9, 2009 for the Red Hat Virtual Experience,
> a free event focused on virtualization and cloud computing.
> Attend in-depth sessions from your desk. Your couch. Anywhere.
> http://p.sf.net/sfu/redhat-sfdev2dev
>
> ------------------------------
>
> _______________________________________________
> Mvpmc-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/mvpmc-users
> mvpmc wiki: http://mvpmc.wikispaces.com/
>
>
------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing.
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
_______________________________________________
Mvpmc-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mvpmc-users
mvpmc wiki: http://mvpmc.wikispaces.com/