UE32D6500 PVR with WLAN, my changes to 02_04_vusb.vpvrimage.
Posted: Thu Jan 09, 2014 11:04 pm
I got my UE32D6500 working with recording via WLAN and NFS. But I have changed the script
02_04_vusb.vpvrimage.init
with
#RR PVRIMAGE=""$XFSMOUNT"/pvrimage"
PVRIMAGE=""$SYSROOT"/pvrimage"
Is it really wanted to have this large pvrimage on the TV itself? With my change it is located on the USB-Stick.
Some work of 02_04_vusb.vpvrimage.init I did by hand on my own and did not let the script do the work. Here are my notes of what I have done:
mv 01_04_pvr_drm_disable.init.dis 01_04_pvr_drm_disable.init
mv 02_04_vusb.init 02_04_vusb.init.dis
edit:
02_04_vusb.vpvrimage.init
#RR PVRIMAGE=""$XFSMOUNT"/pvrimage"
PVRIMAGE=""$SYSROOT"/pvrimage"
by hand:
mkdir xfsimage
dd if=/dev/zero of=xfsimage bs=1M count=24 status=noxfer 2>/dev/null
mkfs.xfs -qf xfsimage
cd /dtv
mkdir xfsmount
/bin/busybox mount -o loop xfsimage /dtv/xfsmount
dd if=/dev/zero of="pvrimage" bs=1M count=1 seek=2048 status=noxfer 2>/dev/null
mkfs.xfs pvrimage
cd /dtv/xfsmount
mkdir pvrmount
/bin/busybox mount -o loop pvrimage /dtv/xfsmount/pvrmount
touch /dtv/xfsmount/pvrmount/.PlaceHolderDO-NOT-REMOVE
umount /dtv/xfsmount/pvrmount
ls -l *.init
-rwxr-xr-x 1 root 0 832 Nov 7 2011 01_01_catch_crap.init
-rwxr-xr-x 1 root 0 245 May 13 2012 01_01_serial_unlock.init
-rwxr-xr-x 1 root 0 194 Jan 1 1980 01_04_pvr_drm_disable.init
-rwxr-xr-x 1 root 0 803 Aug 26 2011 01_04_server_replacement.init
-rwxr-xr-x 1 root 0 1123 Mar 29 2011 01_05_hiddev.init
-rwxr-xr-x 1 root 0 2169 Jan 1 01:19 02_04_vusb.vpvrimage.init
-rwxr-xr-x 1 root 0 593 Mar 29 2011 03_01_fuse.init
-rwxr-xr-x 1 root 0 3400 Jan 1 2014 03_03_juuso_nfsmount.init
-rwxr-xr-x 1 root 0 2623 Jan 1 2014 03_03_nfsmount.init
-rwxr-xr-x 1 root 0 2488 Oct 2 2011 04_04_samba.init
-rwxr-xr-x 1 root 0 4500 Mar 29 2011 06_05_apache.init
-rwxr-xr-x 1 root 0 671 Oct 2 2011 06_05_samba-server.init
-rwxr-xr-x 1 root 0 4270 Jan 1 2014 80_80_record_to_nwshare.init
-rwxr-xr-x 1 root 0 1525 Jan 1 2014 99_99_z_sendinfo.init
reboot!!!!!!!!!!!!!!!
Es funktioniert, super
And this is my samygo.log :
cat samygo.log
19700101-000124 Start Record to Network Share script (80_80_record_to_nwshare.init)
19700101-000124 Check if server 192.168.178.36 is reachable and NFS service available... OK
19700101-000124 Search for mount point of pvrimage...
19700101-000135 pvrimage mount point is /dtv/usb/sdc
19700101-000135 Mount of 192.168.178.36:/home/rolf/UE32D6500 on /dtv/usb/sdc... OK
19700101-000141 Creating directory /dtv/usb/sdc/CONTENTS for the first time... OK
19700101-000141 Creating .PVRPfmChkLog file... OK
19700101-000141 PVR on server 192.168.178.36 is now ready in localpath /dtv/usb/sdc
19700101-000141 End Record to Network Share script (80_80_record_to_nwshare.init)
Many thanks to samygo.
02_04_vusb.vpvrimage.init
with
#RR PVRIMAGE=""$XFSMOUNT"/pvrimage"
PVRIMAGE=""$SYSROOT"/pvrimage"
Is it really wanted to have this large pvrimage on the TV itself? With my change it is located on the USB-Stick.
Some work of 02_04_vusb.vpvrimage.init I did by hand on my own and did not let the script do the work. Here are my notes of what I have done:
mv 01_04_pvr_drm_disable.init.dis 01_04_pvr_drm_disable.init
mv 02_04_vusb.init 02_04_vusb.init.dis
edit:
02_04_vusb.vpvrimage.init
#RR PVRIMAGE=""$XFSMOUNT"/pvrimage"
PVRIMAGE=""$SYSROOT"/pvrimage"
by hand:
mkdir xfsimage
dd if=/dev/zero of=xfsimage bs=1M count=24 status=noxfer 2>/dev/null
mkfs.xfs -qf xfsimage
cd /dtv
mkdir xfsmount
/bin/busybox mount -o loop xfsimage /dtv/xfsmount
dd if=/dev/zero of="pvrimage" bs=1M count=1 seek=2048 status=noxfer 2>/dev/null
mkfs.xfs pvrimage
cd /dtv/xfsmount
mkdir pvrmount
/bin/busybox mount -o loop pvrimage /dtv/xfsmount/pvrmount
touch /dtv/xfsmount/pvrmount/.PlaceHolderDO-NOT-REMOVE
umount /dtv/xfsmount/pvrmount
ls -l *.init
-rwxr-xr-x 1 root 0 832 Nov 7 2011 01_01_catch_crap.init
-rwxr-xr-x 1 root 0 245 May 13 2012 01_01_serial_unlock.init
-rwxr-xr-x 1 root 0 194 Jan 1 1980 01_04_pvr_drm_disable.init
-rwxr-xr-x 1 root 0 803 Aug 26 2011 01_04_server_replacement.init
-rwxr-xr-x 1 root 0 1123 Mar 29 2011 01_05_hiddev.init
-rwxr-xr-x 1 root 0 2169 Jan 1 01:19 02_04_vusb.vpvrimage.init
-rwxr-xr-x 1 root 0 593 Mar 29 2011 03_01_fuse.init
-rwxr-xr-x 1 root 0 3400 Jan 1 2014 03_03_juuso_nfsmount.init
-rwxr-xr-x 1 root 0 2623 Jan 1 2014 03_03_nfsmount.init
-rwxr-xr-x 1 root 0 2488 Oct 2 2011 04_04_samba.init
-rwxr-xr-x 1 root 0 4500 Mar 29 2011 06_05_apache.init
-rwxr-xr-x 1 root 0 671 Oct 2 2011 06_05_samba-server.init
-rwxr-xr-x 1 root 0 4270 Jan 1 2014 80_80_record_to_nwshare.init
-rwxr-xr-x 1 root 0 1525 Jan 1 2014 99_99_z_sendinfo.init
reboot!!!!!!!!!!!!!!!
Es funktioniert, super
And this is my samygo.log :
cat samygo.log
19700101-000124 Start Record to Network Share script (80_80_record_to_nwshare.init)
19700101-000124 Check if server 192.168.178.36 is reachable and NFS service available... OK
19700101-000124 Search for mount point of pvrimage...
19700101-000135 pvrimage mount point is /dtv/usb/sdc
19700101-000135 Mount of 192.168.178.36:/home/rolf/UE32D6500 on /dtv/usb/sdc... OK
19700101-000141 Creating directory /dtv/usb/sdc/CONTENTS for the first time... OK
19700101-000141 Creating .PVRPfmChkLog file... OK
19700101-000141 PVR on server 192.168.178.36 is now ready in localpath /dtv/usb/sdc
19700101-000141 End Record to Network Share script (80_80_record_to_nwshare.init)
Many thanks to samygo.