View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 8 posts ] 
Print view Previous topic   Next topic  
Author Message
Search for:
PostPosted: Tue Mar 27, 2007 7:31 am 
Offline
Joined: Thu Aug 24, 2006 7:14 am
Posts: 5
First, if your'e checking out this thread now, its a work in progress. Im trying to backtrace all of my steps one by one, so have patience with me please. Also, this guide is going to be assuming you already have a R5E50 version of Knoppmyth installed. I hope this works for you step by step, but if not, use your brain. If anyone else has input from their experience doing this, that would be great. Im a newbie to Linux, so if there's someone more experienced that could help shorten or better this guide, feel free. If you find this helpful, give me some feedback. Thanks.

After Knoppmyth setup is complete, exit knoppmyth to the desktop and open a terminal prompt.
Login as root
$su

Download the kernel-source and correct the symbolic links, etc.
$wget ftp://knoppmyth.net/R5/linux-source-2.6 ... om_all.deb
$dpkg -i linux-source-2.6.18-chw-13_2.6.18-chw-13-10.00.Custom_all.deb
$cd /usr/src
$tar xjvf linux-source<tab>
$cd /usr/src/linux-headers-2.6.18-chw-13
$cp -r . ../linux-source-2.6.18-chw-13
$cp /boot/config-2.6.18-chw-13 .config
$cd /usr/src/linux-source-2.6.18-chw-13
$make ##This could take a little while
$cd /usr/src
$rm linux
$ln -s linux-source-2.6.18-chw-13 linux
$cd /lib/modules/2.6.18-chw-13
$rm build
$ln -s /usr/src/linux-source-2.6.18-chw-13 build

Search for all of you alsa packages.
$dpkg-query -l |grep alsa

That should return several alsa packages. You need to remove the ones that say 'alsa-base' and 'alsa-modules-2.6.18-chw-13'.
$dpkg -r alsa-base
$dpkg -r alsa-modules-2.6.18-chw-13

Download the go7007 driver and untar it.
$wget http://oss.wischip.com/wis-go7007-linux-0.9.8.tar.bz2
$tar -xjvf wis-go7007-linux-0.9.8.tar.bz2

Download the go7007 patch for kernel 2.6.18. You must run the patch in the directory above the wis-go7007~ directory.
$wget http://bugs.gentoo.org/attachment.cgi?id=103288
$patch -p0 < attachment.cgi?id=103288

Now install the go7007 driver.
$cd wis-go7007<tab>
$make clean
$make
$make install USE_UDEV=y

Last of all we must edit the /etc/udev/rules.d/wis-ezusb.rules file so that the go7007 load everytime on boot, otherwise you'll get a firmware error when udev initializes.
$cp /etc/udev/rules.d/wis-ezusb.rules /etc/udev/rules.d/wis-ezusb.rules.sav
$nano /etc/udev/rules.d/wis-ezusb.rules

There are two lines that look like this:
ACTION=="add", BUS=="usb", ENV{PRODUCT}=="93b/a004/*", \
RUN+="/sbin/fxload -t fx2 -I /lib/firmware/ezusb/hpi_PX-TV402U.hex"

Modify the lines to look like this:
ACTION=="add", BUS=="usb", ENV{PRODUCT}=="*93b/a004/*", \
RUN+="/usr/sbin/lsusb -d 093b: | /usr/bin/awk '{print "/sbin/fxload -t fx2 -D /proc/bus/usb/"substr(%2"/"%4,1,7)" -I /lib/firmware/ezusb/hpi_PX-TV402U.hex";}' | sh

Notice the only thing that changes on the ACTION line is the "*" in front of the 93b/ . Got that part from here: http://knoppmythwiki.org/index.php?page ... stallation Thanks guys.


Last edited by jlowery7 on Fri Mar 30, 2007 9:16 am, edited 1 time in total.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 29, 2007 6:23 am 
Offline
Joined: Tue Jun 14, 2005 6:34 am
Posts: 116
Location: Indiana
I haven't used my TV-402U since I bought my PVR150. Does Myth still only support MPEG-4 on the TV-402U? When I tried it with R5A26, it wouldn't record in the MPEG-2 format which I needed for my EPIA frontened. I might have to try it again on my test R5E50 system.

_________________
Backend R5E50
P4 1.3 - 384MB, 250GB HD, HD5000AV, PVR150 non MCE
Frontend R5E50
EPIA M1000 - 512MB, 40GB HD, Streamzap
KnoppMyth Folding Team Stats


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 29, 2007 8:42 am 
Offline
Joined: Thu Aug 24, 2006 7:14 am
Posts: 5
yes, it only supports mpeg-4 as far as i know. that's what i have it setup for.


Top
 Profile  
 
 Post subject: For R5F27
PostPosted: Fri Oct 19, 2007 1:08 am 
Offline
Joined: Thu Feb 16, 2006 5:29 pm
Posts: 1
Follow this discussion for R5F27
http://mysettopbox.tv/phpBB2/viewtopic. ... ht=kconfig


Top
 Profile  
 
 Post subject:
PostPosted: Thu Nov 15, 2007 6:43 pm 
Offline
Joined: Sun Nov 11, 2007 9:45 pm
Posts: 2
Will the new driver be included in the next release?


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 06, 2008 12:34 am 
Offline
Joined: Thu Feb 23, 2006 2:41 pm
Posts: 68
Additional tips for R5F27 are to follow instructions regarding the kernel from http://mysettopbox.tv/phpBB2/viewtopic.php?t=16730 and then pick up this thread where the intro on that one finishes. But, when you get to the download info and patching for the Go7007 get a fully patched driver (the wischip.com links are dead) that will cover up to Linux Kernel 2.6.24 here: http://nikosapi.org/wiki/index.php?title=WIS_Go7007_Linux_driver

in other words:
Code:
$wget http://nikosapi.org/software/WIS_Go7007/wis-go7007-linux-0.9.8-2.tar.bz2
$tar -xjvf wis-go7007-linux-0.9.8-2.tar.bz2
$cd wis-go7007-linux-0.9.8-2
$make clean
$make
$make install USE_UDEV=y


Worked for me, don't forget to check your sound input in myth-setup, and then to also correct the recording profiles associated with the Plextor to 640x480 as they default to 480x480 resulting in a green scrambled screen.

arri

_________________
Athlon 64 X2 4200+ 2GB Ram
MSI K8N Neo4-F NF4 939
ASUS N EN6200TC256/TD/64M
500gb SATA
1x Plextor PX-M402U
1x HD5000
R5.5 Upgrade from F27


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 06, 2008 6:58 pm 
Offline
Joined: Thu Feb 23, 2006 2:41 pm
Posts: 68
I haven't yet set this up for R5.5, but the automatic upgrade killed my Plextor configuration.
Hints?

edited, welp, about a week later, possibly after I set up a storage group, my Plextor showed up. dunno.

arri

_________________
Athlon 64 X2 4200+ 2GB Ram
MSI K8N Neo4-F NF4 939
ASUS N EN6200TC256/TD/64M
500gb SATA
1x Plextor PX-M402U
1x HD5000
R5.5 Upgrade from F27


Top
 Profile  
 
 Post subject:
PostPosted: Thu Sep 04, 2008 11:15 pm 
Offline
Joined: Thu Feb 23, 2006 2:41 pm
Posts: 68
And then it went away again. I gotsta find some time to get that up again now that the Olympics are over.

arri

_________________
Athlon 64 X2 4200+ 2GB Ram
MSI K8N Neo4-F NF4 939
ASUS N EN6200TC256/TD/64M
500gb SATA
1x Plextor PX-M402U
1x HD5000
R5.5 Upgrade from F27


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 8 posts ] 


All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 16 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu