Results 1 to 4 of 4

Thread: BufferHack (longer record buffer)

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    May 2004
    Location
    Wellington, NZ
    Posts
    477

    BufferHack (longer record buffer)

    The bufferhack application has recently been updated to include support for v3.0 which is the version used on the oztivo image. By comparing a disassembly of the v3.0 tivoapp against the v2.5.5 tivoapp I have been able to update this application to support UK TiVo's running their standard 2.5.5 image. I have posted the changes under the Development Thread (using my DD/john1980 account) so they should be rolled into the next official release. [UPDATE: The owner of bufferhack has rolled the changes into his code, so I have replaced my patched code with his v3.0a release].

    If you are keen to increase your "live buffer" from the standard 30 minutes then you may like to give this application a shot. Under the OZTiVo image you will need to remove the symbolic links before running the application otherwise you will get "Text file busy" error messages as it will be making copies of the symbolic links, rather than the actual binary file.

    WARNING: Your TiVo will not boot if it is missing, or has a corrupt, /tvbin/tivoapp binary. There are a couple of ways to fix this, the simplest being reimaging the harddrive.

    Do not "rm tivoapp" if it is not a symbolic link, otherwise the system will not be able to load after a reboot. The best way to see if you need to perform the following steps is to have a look at the outcome of the "du -sk /tvbin/tivoapp" command. If it returns "0 tivoapp" then it is a symbolic link, if it returns "6449 tivoapp" then it is a real file and the following extra steps do not need to be performed.

    Put the file system in "read-write" mode:
    Code:
    [/tvbin]# rw
    Check if "tivoapp" is a symbolic link by running the following?
    Code:
    [/tvbin]# cd /tvbin
    [/tvbin]# du -sk tivoapp
    0       tivoapp
    If it responds with a size of 0 (as seen above) rather than 6449 then you will need to issue the following commands which will remove the symbolic link and create a copy of the binary. Firstly you need to make sure that tivoapp is a symbolic link, and that you have a tivoapp.orig binary on your system.
    Code:
    [/tvbin] ls -l tivoapp
    [/tvbin] ls -l tivoapp.orig
    Once you are sure of the above, then you can issue the following commands, making sure that last command does return a size of 6449 otherwise something has gone wrong, and you should not reboot the tivo until it has been fixed.
    Code:
    [/tvbin]# rm tivoapp
    [/tvbin]# rm tivoapp.backup 
    [/tvbin]# rm tivoapp.tmp
    
    [/tvbin]# cp tivoapp.orig tivoapp
    [/tvbin]# du -sk tivoapp
    6449    tivoapp
    Now you can set the buffer to 60 minutes. The following commands assume that you have placed the bufferhack script in the /var/hack/bin directory (it also includes commands to ensure that the file is in Unix format and is executable):
    Code:
    [/tvbin]# cd /var/hack/bin/
    [/var/hack/bin]# rw
    [/var/hack/bin]# dos2unix bufferhack30a.tcl
    [/var/hack/bin]# chmod 755 bufferhack30a.tcl
    [/var/hack/bin]# ./bufferhack30a.tcl 60
    [/var/hack/bin]# ro
    If everything has gone smoothly then you can reboot the system so that the patch can take effect:
    Code:
    [/var/hack/bin]# reboot
    Attached Files Attached Files
    Last edited by thomson; 01-09-2004 at 12:24 PM.

Similar Threads

  1. Clearing the 30 minute Buffer
    By RalphMesiti in forum Question and Answer Forum
    Replies: 3
    Last Post: 25-03-2008, 09:47 AM
  2. Bufferhack confusion
    By daggo in forum Question and Answer Forum
    Replies: 2
    Last Post: 16-07-2006, 07:45 AM
  3. bufferhack
    By panjabi in forum Question and Answer Forum
    Replies: 6
    Last Post: 27-09-2005, 07:32 AM
  4. That darned 30 minute buffer
    By MrGadget in forum Question and Answer Forum
    Replies: 1
    Last Post: 26-08-2004, 08:02 PM
  5. TivoWeb – manual record module – repeat record setup bombs out
    By AJOS31 in forum Question and Answer Forum
    Replies: 1
    Last Post: 11-07-2004, 10:41 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •