anybody knows any way how to allow PVR together with Media Play without need to select correct USB after every start of Media Play?
It looks like TV prefer XFS devices (black colored) which are a must for PVR. Everytime they are first in the list. You need to change USB first (red button A) then you are able to play your movies or watch photos.
What I tried:
1)
Put movie/photo onto XFS disk itself. TV will not even try to find it, only TV recordings are allowed on XFS.
2)
Created two partitions on USB stick. FAT32 + XFS then changed order to XFS + FAT32. In both cases XFS partition was first in Media Play.
3)
Created virtual XFS USB. Bind it with remote NFS to have 1TB etc. for recordings (drawback - at least 1GB useless file on NFS (NTFS drive) which can be lowered to ~20MB at cost of complexity).
Code: Select all
mkdir -p /tmp/xfs
mount -t nfs -o tcp,soft,nolock 10.0.0.2:/RECORDING /tmp/xfs
mkfs.xfs -f -d file,name=/tmp/xfs/pvrimage,size=1536m
insmod dummy_hcd.ko
insmod g_file_storage.ko file=/tmp/xfs/pvrimage
mount -o bind /tmp/xfs /dtv/usb/sdb

At least PVR seems to work flawleslly in this setup.
Any other idea what to try, please?