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
  •  


1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot picture

1TB/2TB USB 3.0 Flash Drive Thumb U Disk Memory Stick Pen PC Laptop Storage lot

$80.39



Type C USB 3.0 Flash Drive Thumb Drive Memory Stick for PC Laptop 1TB 2TB lot picture

Type C USB 3.0 Flash Drive Thumb Drive Memory Stick for PC Laptop 1TB 2TB lot

$73.29



Seagate ST1000VM002 1TB 64MB SATA6Gb/s 3.5

Seagate ST1000VM002 1TB 64MB SATA6Gb/s 3.5" (Low Power) Hard Drive -PC, CCTV DVR

$24.99



SAMSUNG PM981A SERIES 1TB TLC PCIE 3.0 X4 NVME M.2 2280 SSD | MZ-VLB1T0B picture

SAMSUNG PM981A SERIES 1TB TLC PCIE 3.0 X4 NVME M.2 2280 SSD | MZ-VLB1T0B

$49.99



CISCO A03-D1TBSATA 1TB 7.2K 6G 2.5INCH SATA HDD picture

CISCO A03-D1TBSATA 1TB 7.2K 6G 2.5INCH SATA HDD

$9.00



1TB HDD/SSD 2.5

1TB HDD/SSD 2.5" SATA Hard Drive for Laptop with Win 10/Win 11 Pro Pre-installed

$27.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



Samsung - Geek Squad Certified Refurbished 870 EVO 1TB SATA Solid State Drive picture

Samsung - Geek Squad Certified Refurbished 870 EVO 1TB SATA Solid State Drive

$67.99



SAMSUNG PM981 PCIE 3.0 NVME M.2 SSD | 1TB | MZ-VLB1T00 picture

SAMSUNG PM981 PCIE 3.0 NVME M.2 SSD | 1TB | MZ-VLB1T00

$49.99



Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive picture

Fanxiang SSD 4TB 2TB 1TB PS5 SSD M.2 NVME SSD 7300MBS PCIe 4.0 Solid State Drive

$259.99