Results 1 to 6 of 6

Thread: Suggestions / Wishlist for next version?

Hybrid View

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

    Enabling job-control (ctrl-c/z) via the serial port

    To enable job control via serial cable connections you will need to remove the shondss.sh call in the rc.sysinit.author script, and comment out any lines that may exist near the bottom of the rc.sysinit script that look like "/bin/bash </dev/ttyS3 >& /dev/ttyS3 &", and place the following lines at the very bottom of the rc.sysinit script:

    Code:
    # ShellOnDDS with job-control
    exec < /dev/ttyS3 >& /dev/ttyS3
    while :; do
      /bin/bash -login
    done
    After a reboot you will be able to use Ctrl-Z (background) and Ctrl-C (interrupt) when connecting via a serial cable.

  2. #2
    Join Date
    May 2004
    Location
    Wellington, NZ
    Posts
    477

    Reduce the chance of any add-on causing a video-glitch

    By inserting the following lines before additional applications are loaded by rc.sysinit.author you can ensure that all additional modules will have minimal effect on any TiVo process. This will reduce the likelyhood that poorly written modules (or those requiring a lot of CPU/MFS access) will cause glitches during playback.

    Code:
    # Run the following at low priority
    [ -x /var/hack/bin/setpri ] && /var/hack/bin/setpri fifo 1 $$
    Anything started after the call to setpri has been made will now run at a priority level of 1 (lowest) rather than the default of 25. Of course you will need the (mbm) setpri binary.
    Attached Files Attached Files

  3. #3
    Join Date
    Nov 2004
    Location
    Christchurch, NZ
    Posts
    31

    One for the wishlist... change order things start up

    I'd quite like to see a change to the order the various systems start up - I managed to get my Tivo in a knot and would have like to telnet to it to find out what was going on. Didn't have to reimage but got v close...

    Maybe starting the networking & telnet/tivoweb stuff very early on would be helpful so you could see/fix the state of the box if it froze?

  4. #4
    Join Date
    Oct 2005
    Location
    South Africa
    Posts
    59

    OzTiVo image changes to support TivoZA, nzTivo & nlTivo

    I have made the request in http://minnie.tuhs.org/twiki/bin/vie...tsForNextImage as well but for completness sake I will add it here.

    I know this request isn't needed by the ozTivo community but for the other communities (TivoZA, nzTivo & nlTivo) already using the ozTivo image the following changes would really be great. These changes would allow our users to use the ozTivo installation as is without needing to make any special changes to fix clock warping or access to the emulator (aside from commenting in and out in rc.sysinit.author).
    In rc.sysinit.author, comment out the following line:
    Code:
    emuProxy2 -s 131.244.9.101 &
    and replace it with (assuming you decide to use emuProxyZA):
    Code:
    emuProxyZA -s minnie.tuhs.org &	#ozTivo emulator
    #emuProxyZA -s tivoza.nanfo.com &	#TivoZA emulator
    #emuProxyZA -s 64.151.65.200 &	#nzTivo emulator: Original
    #emuProxyZA -s 210.48.107.133 &	#nzTivo emulator: Orac
    #emuProxyZA -s hydra.demon.nl &	#nlTivo emulator
    Making the above changes allows users of other emulators to easily comment out the first line and uncomment their relevant guide provider.

    Adding the following lines to '/etc/postcodezones' would prevent clock warping without causing any problems for the ozTivo community:
    Code:
    12345	Africa/Johannesburg
    54321	Africa/Johannesburg
    02113	Pacific/Auckland
    02115	Pacific/Auckland
    01014	Europe/Amsterdam
    02500	Europe/Amsterdam
    02612	Europe/Amsterdam
    02671	Europe/Amsterdam
    08004	Europe/Amsterdam
    09000	Europe/Amsterdam
    I have checked the above postal codes against the existing ones in '/etc/postcodezones' and there are no conflicts.

    These changes would very much be appreciated, by all 3 communities. If you have any question or would like to discuss these changes please feel free to post them on the following forum topic:
    http://tivoza.nanfo.com/forum/viewtopic.php?t=14

Similar Threads

  1. Wishlist
    By johnhedge in forum Question and Answer Forum
    Replies: 1
    Last Post: 23-09-2013, 05:38 AM
  2. wishlist for SD only
    By JustinD in forum Australian TiVoHD
    Replies: 2
    Last Post: 02-03-2010, 08:55 AM
  3. Wishlist question regarding duplicates
    By ominous2003 in forum Question and Answer Forum
    Replies: 2
    Last Post: 01-12-2006, 02:45 PM
  4. Wishlist functionality not seemingly working
    By JustinD in forum Question and Answer Forum
    Replies: 8
    Last Post: 21-11-2006, 08:55 PM

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
  •