I have been doing some stuff lately with the mediamvp from Hauppauge to get it running on LMCE. And it does, has only one drawback: everytime a new system (MD etc) is added to the system, the dhcp3.conf file is overwritten so you have to put in your configuration again manually. As my system only changes about once a week
it will stay a simple job.
This is what my dhcp3.conf (in /etc/dhcp3) looks like:
# option definitions common to all supported networks...
#option domain-name "fugue.com";
#option domain-name-servers toccata.fugue.com;
option domain-name-servers 192.168.80.1;
authoritative;
option routers 192.168.80.1;
option subnet-mask 255.255.255.0;
# lease IPs for 1 day, maximum 1 week
default-lease-time 86400;
max-lease-time 604800;
allow booting;
allow bootp;
option space pxelinux;
option pxelinux.magic code 208 = string;
option pxelinux.configfile code 209 = text;
option pxelinux.pathprefix code 210 = text;
option pxelinux.reboottime code 211 = unsigned integer 32;
subnet 192.168.80.0 netmask 255.255.255.0 {
next-server 192.168.80.1;
filename "/tftpboot/pxelinux.0";
option pxelinux.reboottime = 30;
default-lease-time 86400;
max-lease-time 604800;
pool {
allow unknown-clients;
range 192.168.80.129 192.168.80.
240;
}
}
# PXE booting machines
group {
next-server 192.168.80.1;
filename "/tftpboot/pxelinux.0";
option pxelinux.reboottime = 30;
# Keuken MD (102)
host moon102 { hardware ethernet 00:11:2F:E3:2A:0A; fixed-address 192.168.80.2; }
# Woonkamer MD (222)
host moon222 { hardware ethernet 00:18:F3:75:26:C2; fixed-address 192.168.80.3; }
# Generic PC as MD (250)
host moon250 { hardware ethernet 00:15:60:58:D0:3C; fixed-address 192.168.80.4; }
# MediaMVP
host mvp {
hardware ethernet 00:0d:fe:00:97:41;
fixed-address 192.168.80.254;
filename "/tftpboot/dongle.bin.mvpmc-20080110";}}
# regular machines
group {
}
after this you have to add the files for the MVP to the /tftpboot directory:
dongle.bin.mvpmc-20080110.config
dongle.bin.mvpmc-20080110
i have added the config file only as the bin file containing the image is too big (3.5 Mb). If anybody likes to receive just pm me and I'll send it by email.
After that you should be able to boot the mediamvp and enjoy watching your recordings and live tv.
When I am fully finished exploring the ins and outs i will put the info into the wiki.
rgds
Han
Edit: this will only work for the H1 models, still working on the H3 (sticker at the back will show which model it is)