Results 1 to 5 of 5

Thread: Broblem, with Avermedia TV - USB tuner

  1. #1
    Junior Member
    Join Date
    Feb 2010
    Location
    Poland
    Posts
    2

    Broblem, with Avermedia TV - USB tuner

    Please help me ; I have a Avermedia USB - TV card
    Code:
    Bus 001 Device 006: ID 07ca:a827 AVerMedia Technologies, Inc
    Linux driver I downloading from avermedia home page .
    When I need compiling this driver[ driver is type .sh script ] i have a bug ;

    Package "kernel-headers" is default installed in Knoppix 6.2 live DVD

    What I doing wrong
    Please help me
    I probing mode "ex[pert" to install Avermedia driver and have this results ;
    Code:
    knoppix@Microknoppix:/usr/src$ cd H826D-expert-install/
    knoppix@Microknoppix:/usr/src/H826D-expert-install$ sudo make
    make -C /lib/modules/2.6.31.6/source O=/lib/modules/2.6.31.6/build SUBDIRS=`pwd` 
    make[1]: Wejście do katalogu `/UNIONFS/usr/src/linux-headers-2.6.31.6'
    /UNIONFS/usr/src/linux-headers-2.6.31.6/arch/x86/Makefile:39: /UNIONFS/usr/src/linux-headers-2.6.31.6/arch/x86/Makefile_32.cpu: Nie ma takiego pliku ani katalogu
    make[2]: *** Brak reguł do wykonania obiektu `/UNIONFS/usr/src/linux-headers-2.6.31.6/arch/x86/Makefile_32.cpu'. Stop.
    make[1]: *** [sub-make] Błąd 2
    make[1]: Opuszczenie katalogu `/UNIONFS/usr/src/linux-headers-2.6.31.6'
    make: *** [default] Błąd 2
    knoppix@Microknoppix:/usr/src/H826D-expert-install$

  2. #2
    Senior Member registered user
    Join Date
    Sep 2006
    Posts
    802

    You can find the missing file in the kernel source package

    You can find the missing file in the kernel source package. You find it as /usr/source/linux-source-2.6.31.6.tar.bz2
    It comes with the DVD, or you can install it.

    Code:
    # sudo tar jzf linux-source-2.6.31.6.tar.bz2
    # ls -al linux-source-2.6.31.6/arch/x86/Ma*
    -rw-r--r-- 1 root root 6327 Sep  9 22:13 linux-source-2.6.31.6/arch/x86/Makefile
    -rw-r--r-- 1 root root 2314 Sep  9 22:13 linux-source-2.6.31.6/arch/x86/Makefile_32.cpu
    # sudo cp -a  linux-source-2.6.31.6/arch/x86/Makefile_32.cpu  /usr/src/linux-headers-2.6.31.6/arch/x86
    This solves the problem with the missing Makefile - but not necessarily other problems with this kernel version.

  3. #3
    Junior Member
    Join Date
    Feb 2010
    Location
    Poland
    Posts
    2
    I am using your help , but i i have other bug
    UNIONFS/usr/src/H826D-expert-install/aver/osdep.c:2380: warning: excess elements in struct initializer
    /UNIONFS/usr/src/H826D-expert-install/aver/osdep.c:2380: warning: (near initialization for '(anonymous)')
    /UNIONFS/usr/src/H826D-expert-install/aver/osdep.c: In function 'AVerH826D_SysSpinLockInit':
    /UNIONFS/usr/src/H826D-expert-install/aver/osdep.c:2566: error: 'ENOMEM' undeclared (first use in this function)
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c: At top level:
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:187: error: 'AVerH826D_SysVmallocToPage' undeclared here (not in a function)
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:187: warning: type defaults to 'int' in declaration of 'AVerH826D_SysVmallocToPage'
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:194: error: 'AVerH826D_SysGetSgDmaAddress' undeclared here (not in a function)
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:194: warning: type defaults to 'int' in declaration of 'AVerH826D_SysGetSgDmaAddress'
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:195: error: 'AVerH826D_SysGetSgDmaLen' undeclared here (not in a function)
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:195: warning: type defaults to 'int' in declaration of 'AVerH826D_SysGetSgDmaLen'
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:202: error: 'AVerH826D_SysPciMapSingle' undeclared here (not in a function)
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:202: warning: type defaults to 'int' in declaration of 'AVerH826D_SysPciMapSingle'
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:232: error: 'AVerH826D_SysVmalloc32' undeclared here (not in a function)
    /UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.c:232: warning: type defaults to 'int' in declaration of 'AVerH826D_SysVmalloc32'
    make[3]: *** [/UNIONFS/usr/src/H826D-expert-install/aver/averusb-mod.o] Błąd 1
    make[2]: *** [_module_/UNIONFS/usr/src/H826D-expert-install] Błąd 2
    make[1]: *** [sub-make] Błąd 2
    make[1]: Opuszczenie katalogu `/UNIONFS/usr/src/linux-headers-2.6.31.6'
    make: *** [default] Błąd 2
    knoppix@Microknoppix:/usr/src/H826D-expert-install$ sudo make install
    make: *** Brak reguł do wykonania obiektu `install'. Stop.
    knoppix@Microknoppix:/usr/src/H826D-expert-install$

  4. #4
    Senior Member registered user
    Join Date
    Sep 2006
    Posts
    802

    Got the same problem myself..

    I have struggled with exactly the same problem myself today, trying to compile kernel modules for vmware. Which is why I wrote "This solves the problem with the missing Makefile - but not necessarily other problems with this kernel version."

    My short-term fix was to downgrade to Knoppix 6.0.1, where kernel headers etc are in order, and I get the modules to compile correctly.

  5. #5
    Senior Member registered user
    Join Date
    Sep 2006
    Posts
    802

    Better suggestion: Upgrade to 6.2.1

    I've just started testing the new 6.2.1 release, and the problems may have gone away.
    At least, I run VMware player with no problems there, in fact I'm posting using Firefox in an old W2K virtual machine now.

Similar Threads

  1. TV tuner compatibility
    By 10007261 in forum Hardware & Booting
    Replies: 3
    Last Post: 12-28-2004, 08:03 AM
  2. AIW128 Pro - TV Tuner
    By ELeahi in forum Hardware & Booting
    Replies: 3
    Last Post: 10-15-2004, 03:13 PM
  3. MSI TV Tuner (TV@nywhere Master)??
    By s-r-b in forum Hardware & Booting
    Replies: 0
    Last Post: 10-03-2004, 02:15 AM
  4. Adding a tv tuner to 3.4
    By hippylong in forum Ideas
    Replies: 0
    Last Post: 07-22-2004, 10:36 PM
  5. ATI All in Wonder 8500 TV Tuner Support
    By ManM in forum Hardware & Booting
    Replies: 2
    Last Post: 01-11-2003, 12:31 AM

Posting Permissions

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


1U BareMetal pfsense opnsense Router Firewall DNS Server 6x 10GB Ethernet Ports picture

1U BareMetal pfsense opnsense Router Firewall DNS Server 6x 10GB Ethernet Ports

$149.00



VPS Windows / Linux Server - 12GB  RAM, 4 Core, 1 TB HD, Unltd. bandwidth 1 Year picture

VPS Windows / Linux Server - 12GB RAM, 4 Core, 1 TB HD, Unltd. bandwidth 1 Year

$280.50



1U 10 SFF Bay Supermicro Server X10DRW-iT 2x Xeon E5-2690 V4 128GB DDR4 RAM picture

1U 10 SFF Bay Supermicro Server X10DRW-iT 2x Xeon E5-2690 V4 128GB DDR4 RAM

$399.00



POGO Linux WEBWARE 1150 Rack-Mount Server Pentium 4 2.8GHz 512MB - No Drives picture

POGO Linux WEBWARE 1150 Rack-Mount Server Pentium 4 2.8GHz 512MB - No Drives

$152.99



SUSE LINUX Enterprise Server 9 Operating System Software New Sealed In Box picture

SUSE LINUX Enterprise Server 9 Operating System Software New Sealed In Box

$40.00



Dell PowerEdge R210 II Rackmount Server Xeon E31220L 16Gb 1TB + 500GB LINUX 6.6 picture

Dell PowerEdge R210 II Rackmount Server Xeon E31220L 16Gb 1TB + 500GB LINUX 6.6

$129.00



Globalscale Technologies DreamPlug AppNeta M22 Linux Server Dual GB Ethernet picture

Globalscale Technologies DreamPlug AppNeta M22 Linux Server Dual GB Ethernet

$24.99



6x Fedora Linux Computer Sticker Decals Desktop Laptop Server Badge Decal Vinyl picture

6x Fedora Linux Computer Sticker Decals Desktop Laptop Server Badge Decal Vinyl

$2.99



Australia - Win/Linux Server- 2GB RAM, 1 Core,100 GB HD, Ultd Bandwidth 2 yrs picture

Australia - Win/Linux Server- 2GB RAM, 1 Core,100 GB HD, Ultd Bandwidth 2 yrs

$200.36



VPS Windows / Linux Server 8GB RAM + 1TB HDD + Unlimited Bandwidth [ 1 Year ] picture

VPS Windows / Linux Server 8GB RAM + 1TB HDD + Unlimited Bandwidth [ 1 Year ]

$280.49