A few things that are important:
1. The network boot settings are different most notably the ramdisk size and the removal of a bunch of options like time server, remote type, etc
Code: Select all
excerpt from pxelinux.cfg/default:
PROMPT 1
DEFAULT linux-ramdisk
DISPLAY messages
TIMEOUT 5
label linux-ramdisk
KERNEL kernel-minimyth-0.17.0.0beta1.c3
APPEND initrd=rootfs-minimyth-0.17.0.0beta1.c3 root=/dev/ram0 ro ramdisk_blocksize=4096 ramdisk=64000
Optional files: xorg.conf, xinitrc, loadmods.script, minimyth.script
3. LIRCRC format has changed, it doesn't use irxevent so you need to rewrite the file to match your remote (an example here http://wilsonet.com/mythtv/lircrc-RS.txt).
4. You need to configure minimyth.conf, this file is well documented, but needs some examples for the serial remotes.
Code: Select all
excerpt from minimyth.conf:
MM_LIRC_DRIVER=serial
MM_LIRC_DEVICE=/dev/lirc0
MM_LIRC_KERNEL_MODULE=lirc_serial
MM_LIRC_KERNEL_MODULE_OPTIONS="irq=3 io=0x2f8"
Ed