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
  •  


CORSAIR Vengeance LPX 32GB 2x16GB DDR4-2666 PC4-21300 288Pin 2666Mhz Memory Ram picture

CORSAIR Vengeance LPX 32GB 2x16GB DDR4-2666 PC4-21300 288Pin 2666Mhz Memory Ram

$99.99



A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G picture

A-Tech 8GB DDR3 1600 PC3-12800 Laptop SODIMM 204-Pin Memory RAM PC3L DDR3L 1x 8G

$13.99



ram picture

ram

$165.00



HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin picture

HyperX FURY DDR3 8GB 16GB 32GB 1600 MHz PC3-12800 Desktop RAM Memory DIMM 240pin

$12.90



Crucial DDR3L 16GB 1600 2x 8GB PC3-12800 Laptop SODIMM Memory RAM PC3 16G DDR3 picture

Crucial DDR3L 16GB 1600 2x 8GB PC3-12800 Laptop SODIMM Memory RAM PC3 16G DDR3

$21.50



Crucial 16GB (2x 8GB) Kit DDR3L 1600MHz PC3-12800 UDIMM Desktop 240-Pin CL11 RAM picture

Crucial 16GB (2x 8GB) Kit DDR3L 1600MHz PC3-12800 UDIMM Desktop 240-Pin CL11 RAM

$23.33



Lot of 2 32GB DDR4 2666 PC4-21300 SODIMM RAM Modules Mixed Brand picture

Lot of 2 32GB DDR4 2666 PC4-21300 SODIMM RAM Modules Mixed Brand

$60.00



Team T-FORCE VULCAN Z 16GB (2 x 8GB) 288-Pin PC RAM DDR4 3200 (PC4 25600) Intel picture

Team T-FORCE VULCAN Z 16GB (2 x 8GB) 288-Pin PC RAM DDR4 3200 (PC4 25600) Intel

$33.99



HyperX FURY DDR4 8GB 16GB 32GB 3200MHz PC4-25600 Desktop RAM Memory DIMM 288pins picture

HyperX FURY DDR4 8GB 16GB 32GB 3200MHz PC4-25600 Desktop RAM Memory DIMM 288pins

$72.93



Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM picture

Kingston HyperX FURY DDR3 8GB 16GB 32G 1600 1866 1333 Desktop Memory RAM DIMM

$39.95