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
  •  


for Laptops 500GB-4TB Internal Solid State Drive Hard Disk 2.5 Inch SSD Drive picture

for Laptops 500GB-4TB Internal Solid State Drive Hard Disk 2.5 Inch SSD Drive

$75.18



Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot picture

Netac 1TB 2TB 512GB Internal SSD 2.5'' SATA III 6Gb/s Solid State Drive lot

$119.99



Samsung 860EVO 500GB 2.5

Samsung 860EVO 500GB 2.5" Laptop SATA Solid State Drive V-NAND SSD Tested, Wiped

$34.99



Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot picture

Fanxiang 4TB 2TB 1TB SSD 550MB/s 2.5'' SATA III Internal Solid State Drive lot

$188.99



Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5

Patriot P210 128GB 256GB 512GB 1TB 2TB 2.5" SATA 3 6GB/s Internal SSD PC/MAC Lot

$19.99



Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot picture

Fanxiang M.2 SATA SSD 2TB 1TB 512GB 256GB SSD Internal M2 Solid State Drive Lot

$21.99



Samsung 250GB 2.5

Samsung 250GB 2.5" SATA SSD MZ-76E250, Grade A+, SKU 10368

$19.99



SanDisk 240GB SSD Plus, Internal Solid State Drive - SDSSDA-240G picture

SanDisk 240GB SSD Plus, Internal Solid State Drive - SDSSDA-240G

$16.94



Fanxiang SSD 4TB 2TB 1TB 512GB SATA SSD 2.5'' III Internal Solid State Drive lot picture

Fanxiang SSD 4TB 2TB 1TB 512GB SATA SSD 2.5'' III Internal Solid State Drive lot

$108.29



4tb Ssd 870evo Internal Solid State Drive Hard Disk 2.5 Inch Sata SSD For Laptop picture

4tb Ssd 870evo Internal Solid State Drive Hard Disk 2.5 Inch Sata SSD For Laptop

$50.15