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 Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 240GB SSD 2x 10GBE picture

1U Supermicro Server 10 Bay 2x Intel Xeon 3.3Ghz 8C 128GB RAM 240GB SSD 2x 10GBE

$259.00



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



Supermicro 1U Server X9SRI-F Xeon E5-2640 v2 2.5Ghz 16-Cores / 64GB / No HDD picture

Supermicro 1U Server X9SRI-F Xeon E5-2640 v2 2.5Ghz 16-Cores / 64GB / No HDD

$149.99



HPE ProLiant MicroServer Gen10 picture

HPE ProLiant MicroServer Gen10

$420.00



HP ProLiant MicroServer Generation 8 Xeon 4gb 4-BAY 2x500GB HDD (included) picture

HP ProLiant MicroServer Generation 8 Xeon 4gb 4-BAY 2x500GB HDD (included)

$200.00



Supermicro Server 505-2 Intel 2.4GHz 16GB SYS-5018A-FTN4 - pfSense Compatible picture

Supermicro Server 505-2 Intel 2.4GHz 16GB SYS-5018A-FTN4 - pfSense Compatible

$220.48



HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon picture

HPE ProLiant MicroServer Gen10 Plus v2 Ultra Micro Tower Server - 1 x Intel Xeon

$846.48



HP HPE Microserver Gen 7 8 9 iLO 2/3/4/5Advanced License Lifetime Key| FAST SHIP picture

HP HPE Microserver Gen 7 8 9 iLO 2/3/4/5Advanced License Lifetime Key| FAST SHIP

$10.00



Super micro Server picture

Super micro Server

$168.00



2U 12 Bay SAS3 SuperMicro Server 6028U-TR4T+ W/ X10DRU-i+ Barebone 12 Caddy RAIL picture

2U 12 Bay SAS3 SuperMicro Server 6028U-TR4T+ W/ X10DRU-i+ Barebone 12 Caddy RAIL

$299.00