Anzeige:
Ergebnis 1 bis 11 von 11

Thema: Werde aus der Anleitung nicht so recht schlau :( Wie kann ich das Modul kompilieren ?

  1. #1
    Registrierter Benutzer
    Registriert seit
    Jan 2003
    Beiträge
    125

    Red face Werde aus der Anleitung nicht so recht schlau.... Lauter FehlerMeldungen

    Ich habe mal die Anleitung unten gepostet -> Ich hoffe, es gibt kein Ärger, da vielleicht ein Link gereicht hätte ( http://sourceforge.net/projects/spca50x/ ).

    Soweit ich es verstehe, kann ich das Modul spca50x.o auch erstellen und einbinden, ohne das Kernel zu kompilieren. Als Newbie, würde sich das ja erst einmal anbieten, bevor ich das System ganz schiesse ....
    Im Verz. ist noch ein Dir namens Drivers und ein "makefile".
    In der Anleitung geht mir das ein wenig durcheinander : Was ist nur für das Modul *.o , was ist hier für einen neuen Kernel.

    Oder besser gefragt -> wie sind die Steps, um an das *.o Modul zu kommen ( kompilieren ) und wie wird es eingebunden )

    nur ein Make in dem Verzeichnis ( habe ies im /Home/Webcam probiert )eingeben, ergibt eine Fehlermeldung, das Dateien nicht gefunden wurden. Muss erst was rumkopiert werden ?
    Was bedeuten die Parameter in dem Manuell make [config???|Menuconfig???|xconfig???] ???
    Was muss, sollte oder auch nicht, da rein ?



    Einfach nur mit "insmod spca50x" ? nach dem kompilieren ?

    Entschuldigt meine "dummen " Fragen, aber für den Anfang bräuchte ich ein wenig Unterstützung, bevor ich 2 Jahre die ganzen Befehle mit Optionen gelesen und gelernt und vielleicht nichts kapiert habe, bis dahin gibt es andere HW .....

    THX





    This is the 0.20 release of the SPCA50X based USB camera driver for Linux.
    (Intel PC Camera Pro, Intel Create and Share, Viewquest Technologies range)
    * This release is for developers only *


    should work fine.

    !! As with any kernel module, you risk serious data corruption !!
    !! Please read below for essential module parameters before inserting !!
    !! this module !!

    * at spca50x-devs@lists.sourceforge.net *

    volunteers. Many thanks to all of them!
    The project page on sourceforge is at http://spca50x.sourceforge.net/


    polesworth@users.sourceforge.net



    Initialises the camera and begins streaming color or greyscale data
    You can take still shots with it, and see moving video.
    Brightness and contrast and some mode switching on external input.
    External input support is stable enough for experimental use.
    Internal brightness/contrast and mode switch coming when I get
    the chance to run and interpret some more traces.
    Experimental brightness and colour on internal CCD (need compile
    flag to enable)

    Otherwise untested. Please try only if you are developer and
    prepared to suffer crashes and lost data. I need the vendor
    and product ID's for a camera with this IC - if you have one
    please send me your boot log. The GrandTec V.cap is one AFAIK

    Otherwise untested. Please try only if you are developer and
    prepared to suffer crashes and lost data. This one seems to
    be closer to the SPCA501 not the SPCA506. The 0.10 release
    significantly improves support for this device.

    interested developers.

    ------------------
    The driver module can be built without modifying your kernel source tree.

    and updated the dependencies: 'make [config|menuconfig|xconfig]; make dep'.

    installed one, build the driver with
    'make KINCLUDE=/usr/src/linux-<version>/include', or similar.

    /usr/src/linux.

    ------------------------------
    This version of the driver offers an automatic installation facility.
    Use 'make install' to have the driver installed into your kernel modules
    directory, which is assumed to be /lib/modules/<version>/kernel/drivers/usb.
    <version> is picked up from the currently running kernel, so if that's not
    the right place, then don't use 'make install'!

    Compiling against the linux kernel 2.4 source tree, there should be no warnings
    at all.
    If you compile against the linux kernel 2.2 source tree, you may see:

    {standard input}: Warning: ignoring changed section attributes for .modinfo

    outputs two modinfo sections. It doesn't affect the running of the module,
    however.

    If you see complaints about modules using kernel include files, ensure that
    the include files for linux and asm in the /usr/include tree are symbolic
    links to the same directories in the kernel source tree.
    ************************************************** *********************


    in <kernel root>/drivers/usb.
    Diff Config.in and <kernel root>/drivers/usb/Config.in and add the changes
    for the SPCA50X. Add a line to <kernel root>/include/linux/videodev.h for
    #define VID_HARDWARE_SPCA50X 29 /* Or first free number */
    Add this line to the makefile in <kernel root>/drivers/usb
    obj-$(CONFIG_USB_SPCA50X) += spca50x.o
    Reconfigure the kernel (proc and videodev are required) and make modules.
    Warnings about unused variables may be safely ignored.

    insmod drivers/usb/spca50x.o
    or
    insmod spca50x.o
    if you use the outside kernel source compile

    Remember to use
    insmod spca50x.o ccd=0 dumppix=6
    for the internal CCD on the SPCA506 (Intel PC Camera Pro) if you
    want to see bright mono video, otherwise you will need a bright external
    light source to see something resembling colour.
    ************************************************** *********************

    strange, the brightness and contrast are probably incorrect. If you use the
    internal CCD, aren't using dumppix=6 and see a black image, this is a color
    image which is too dark to show anything. I'm working on brightness control
    for the CCD, in the meantime use an external camera with a very bright light.

    gqcam also has a filter which will exchange RGB and BGR formats. If your
    colour is strange it may be this filter which needs changing.
    ************************************************** *********************

    bright=25 <-- Set camera initial brightness (25 for greyscale, ~90 for color)
    contrast=16 <-- Set camera initial contrast (16 for greyscale, ~32-64 for
    color)
    dumppix=4 <-- return raw camera data for use with raw.c
    dumppix=6 <-- return greyscale video from the YUV decoder [use with internal
    CCD]
    debug=<n> <-- set debug level (!! 5 crashes kernel, 4 sometimes crashes
    kernel !!)
    ccd=0 <-- SPCA505 only. Switch between the internal CCD (zero) and
    the external video input (non-zero)
    osd=1 <-- Enable on-screen display if kernel patches applied (see below)

    * Works with either the internal CCD or an external video device with an
    SPCA505
    * Camera must be connected and live before opening video device
    * Sometimes fails to start streaming - suspect a sync/lock problem with the
    SAA7113
    If you don't get a picture, unload and re-load the module, then try again
    * To take still shots, use vgrabber to grab a frame as a PNM format image
    * Limited colour support. You may find that this works now with the
    internal CCD
    * Only supports 160x120 [Some limited support for larger sizes on external
    input and CCD on 505]
    * No compression support
    * Some instability, particularly on SMP machines.
    * Brightness and contrast controls are fixed for external inputs, and may
    now work for CCD
    Enable this support with the DANGER_WILL_ROBINSON define on the
    compile line
    * Only tested with the SPCA505 and SAA7113. Work in progress for
    SPCA506/SPCA501 (ish) support
    * Some limited image size changing is supported for the external input
    only. (Expect some image corruption when switching size, I know what
    causes this and I'm working on fixing it).
    Supported resolutions are 160x120, 176x144, 352x288, but the driver
    will accept other sizes and map to the closest smaller size it
    supports.
    * Only tested on X86 - maybe byte ordering problems on other systems.
    * GQCam throttles frames at 10 frames per second - the driver supports up
    to about 25 if you change the gcqam command line parameter.
    * Some support for on-screen display of frame index and size. See below.


    compile-time option ENABLE_OSD. This option displays the current frame number,
    along with other data, in the resultant image. To use this, you need to make
    some patches to the kernel and re-compile the kernel with the VGA(VESA) frame
    buffer on (we don't use the frame buffer, but we need it compiled in to get
    the fonts). The options you need are VESA frame buffer, and 8 pixel fonts, and
    font VGA 8x8. These are the patches (they export the methods needed to lookup
    font tables) :

    22a23
    > #include <linux/module.h>
    131a133,135
    >
    > EXPORT_SYMBOL(fbcon_find_font);
    > EXPORT_SYMBOL(fbcon_get_default_font);

    18c18
    < .. cyber2000fb.o fbcon-hga.o
    ---
    > .. cyber2000fb.o fbcon-hga.o fonts.o

    ensure that the following symbols are defined:

    CONFIG_FBCON_FONTWIDTH8_ONLY 1 <--- this may not be necessary
    CONFIG_FBCON_FONTS 1
    CONFIG_FONT_8x8 1

    bzImage). Once you have installed it and rebooted then you can check for the
    existance of fbcon_find_font in the /proc/ksyms file.

    display


    Thanks to all the authors of the ov511 driver and its ancestors
    Thanks to Darrell Scott for debug assistance and suggestions.
    Thanks to Razvan Surdulescu for kicking me back into action.
    Thanks to Bill Roehl for traces on the Create and Share (id 0x401). I WILL
    make this work... or die trying...
    Thanks to everyone who has tested this driver and given me feedback on it.

    Enjoy !




    Geändert von Wesie (13.02.03 um 08:57 Uhr)
    Suse 9.3 64bit Prof. // AMD 3700MHZ Notebook / 1 GB RAM / WLAN RA2500 / ATI 9700 Mobile / Nec Dual DVD Brenner / 80GB HD

  2. #2
    Registrierter Benutzer
    Registriert seit
    Jan 2003
    Beiträge
    125

    Question

    Stell ich mich jetzt nur alleine so "dumm" an und die Leute, welche sich auskennen denken sich " was will der denn, es steht doch alles schön und sauber da! ", oder ist die Anleitung für andere auch nicht so klar ?

    Wer steigt da durch und kann ein paar Tips geben ?
    Suse 9.3 64bit Prof. // AMD 3700MHZ Notebook / 1 GB RAM / WLAN RA2500 / ATI 9700 Mobile / Nec Dual DVD Brenner / 80GB HD

  3. #3
    OpenGurke Avatar von Thomas Mitzkat
    Registriert seit
    Mar 2002
    Ort
    Weimarer Republik
    Beiträge
    4.028
    ich hab nur in das makefile geguckt:


    make
    make install

    modprobe spca50x


    und schon läufts
    Deutschland ist die Kanne für alle Tassen dieser Welt

  4. #4
    Agent (Clone #17264) Avatar von Jasper
    Registriert seit
    Jul 2002
    Ort
    The Matrix (Reloaded)
    Beiträge
    3.073
    Original geschrieben von Wesie
    Stell ich mich jetzt nur alleine so "dumm" an und die Leute, welche sich auskennen denken sich " was will der denn, es steht doch alles schön und sauber da! ", oder ist die Anleitung für andere auch nicht so klar ?

    Wer steigt da durch und kann ein paar Tips geben ?
    naja, es steht eigentlich alles da. entweder du baust einen komplett neuen kernel oder du kompilierst nur das modul.
    da du letzteres willst, reicht wohl ein:

    make

    -ODER-

    make KINCLUDE=<pfad-zu-kernel-include-files>

    in dem verzeichnis, in dem die moduldateien liegen (da wo das file namens 'Makefile' liegt).
    das hast du schon gemacht, nur leider hast du nicht geschrieben, welche fehlermeldungen aufgetreten sind.
    wenn das ganze compiliert hat, reicht ein 'make install', der das modul (ein file namens *.o) an die richtige stelle kopiert.
    dann noch die dependencies aktualisieren mit 'depmod -a' und das modul mit modprobe <modulename>' laden, wobei <modulename> der filename OHNE '.o' ist.

    -j

  5. #5
    Registrierter Benutzer
    Registriert seit
    Jan 2003
    Beiträge
    125

    Question

    Folgende Ausgabe bekomme ich :


    AMD1GHZ:/home/amd1ghz/webcam # make
    Compiling drivers/usb/spca50x.c
    make: gcc: Command not found
    make: *** [drivers/usb/spca50x.o] Error 127

    Dann habe ich geschaut, ob ich den <pfad-zu-kernel-include-files> finde, aber irgendwie fehlen mir noch die Kernelsourcen ?
    Den Befehl make hatte ich schon nachinstalliert.
    in dem Pfad /usr/src/ habe ich nur die Subdir. /Kernel-modules und /packages ....
    Suse 9.3 64bit Prof. // AMD 3700MHZ Notebook / 1 GB RAM / WLAN RA2500 / ATI 9700 Mobile / Nec Dual DVD Brenner / 80GB HD

  6. #6
    Registrierter Benutzer
    Registriert seit
    Feb 2002
    Beiträge
    223
    soweit ich das beurteilen kann fehlt dir " gcc" .Das teil gibts auf deiner Distri.

    gruss lenny

  7. #7
    Registrierter Benutzer
    Registriert seit
    Jan 2003
    Beiträge
    125
    Nur GCC ?
    da wäre noch
    gcc-c++
    gcc-g77
    gcc-info
    gcc-java
    gcc-obj

    im Angebot. gcc natürlich auch allein.
    Nach Installation von GCC gibt es folgenden Ausgabe :
    AMD1GHZ:/home/amd1ghz/webcam # make
    Compiling drivers/usb/spca50x.c
    In file included from /usr/include/linux/module.h:297,
    from drivers/usb/spca50x.c:48:
    /usr/include/linux/version.h:2:2: #error "================================================= ======"
    /usr/include/linux/version.h:3:2: #error "You should not include /usr/include/{linux,asm}/ header"
    /usr/include/linux/version.h:4:2: #error "files directly for the compilation of kernel modules."
    /usr/include/linux/version.h:5:2: #error ""
    /usr/include/linux/version.h:6:2: #error "glibc now uses kernel header files from a well-defined"
    /usr/include/linux/version.h:7:2: #error "working kernel version (as recommended by Linus Torvalds)"
    /usr/include/linux/version.h:8:2: #error "These files are glibc internal and may not match the"
    /usr/include/linux/ ......
    ....
    ... gekürzt
    ...
    Geändert von Wesie (13.02.03 um 21:00 Uhr)
    Suse 9.3 64bit Prof. // AMD 3700MHZ Notebook / 1 GB RAM / WLAN RA2500 / ATI 9700 Mobile / Nec Dual DVD Brenner / 80GB HD

  8. #8
    Registrierter Benutzer
    Registriert seit
    Jan 2003
    Beiträge
    125
    Kann das die Lösung für den nächsten Gehversuch sein ?


    Bezieht sich auf
    SuSE Linux: Versionen ab 7.1
    Kernel: Versionen ab 2.4.0



    Symptom
    Beim Kompilierungsvorgang von Quellpaketen ( z.B. VMware ) werden vom verwendeten Compiler Fehlermeldungen ausgegeben, die darauf hinweisen, daß eine falsche Kernelversion verwendet wird.
    Ursache
    Die Header-Dateien 'version.h' und 'autoconf.h' zeigen nicht auf den verwendeten Standardkernel.
    Lösung
    Führen Sie bitte die folgenden Befehle an der Kommandozeile als Benutzer 'root' aus:
    cp /boot/vmlinuz_24.version.h /usr/src/linux/include/linux/version.h
    cp /boot/vmlinuz_24.autoconf.h /usr/src/linux/include/linux/autoconf.h
    In dem Fall Sie nutzen eine aktuellere Linuxversion, sollten die Dateinamen entsprechend geändert werden:
    cp /boot/vmlinuz.version.h /usr/src/linux/include/linux/version.h
    cp /boot/vmlinuz.autoconf.h /usr/src/linux/include/linux/autoconf.h
    Suse 9.3 64bit Prof. // AMD 3700MHZ Notebook / 1 GB RAM / WLAN RA2500 / ATI 9700 Mobile / Nec Dual DVD Brenner / 80GB HD

  9. #9
    Registrierter Benutzer
    Registriert seit
    Jan 2003
    Beiträge
    125

    Exclamation Aaarrgghhh - ausser Fehler nichts gewesen

    Jetzt habe ich die Kernel-Sourcen nach-installiert und den Pfad wie oben angegeben :
    Ergebnis : ( Ist das OK ????? -> Bei soviel Fehlermeldungen -> Ich weiß ja nicht so recht ... )



    AMD1GHZ:/home/amd1ghz/webcam # make KINCLUDE=/usr/src/linux-2.4.19.SuSE/include
    Compiling drivers/usb/spca50x.c
    In file included from /usr/src/linux-2.4.19.SuSE/include/linux/pagemap.h:16,
    from drivers/usb/spca50x.c:56:
    /usr/src/linux-2.4.19.SuSE/include/linux/highmem.h: In function `bh_kmap':
    /usr/src/linux-2.4.19.SuSE/include/linux/highmem.h:22: warning: pointer of type `void *' used in arithmetic
    drivers/usb/spca50x.c: In function `create_proc_spca50x_cam':
    drivers/usb/spca50x.c:700: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:714: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `destroy_proc_spca50x_cam':
    drivers/usb/spca50x.c:734: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `proc_spca50x_destroy':
    drivers/usb/spca50x.c:785: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_reg_write':
    drivers/usb/spca50x.c:820: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_reg_read':
    drivers/usb/spca50x.c:843: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_read_i2c':
    drivers/usb/spca50x.c:875: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:880: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:883: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:884: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_read_SAA7113_status':
    drivers/usb/spca50x.c:893: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:895: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:896: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:897: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:899: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:900: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:901: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:902: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:903: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:904: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_write_i2c':
    drivers/usb/spca50x.c:926: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:931: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:945: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:950: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:958: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:962: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_write_vector':
    drivers/usb/spca50x.c:992: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_reset':
    drivers/usb/spca50x.c:1002: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_stop':
    drivers/usb/spca50x.c:1011: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_restart':
    drivers/usb/spca50x.c:1018: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_set_packet_size':
    drivers/usb/spca50x.c:1045: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_isoc_irq':
    drivers/usb/spca50x.c:1102: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1109: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1115: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_init_isoc':
    drivers/usb/spca50x.c:1157: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1208: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_stop_isoc':
    drivers/usb/spca50x.c:1249: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1289: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_mode_init_regs':
    drivers/usb/spca50x.c:1368: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `autobrightness':
    drivers/usb/spca50x.c:1566: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_next_frame':
    drivers/usb/spca50x.c:1835: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_move_data':
    drivers/usb/spca50x.c:1906: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1919: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1924: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1929: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1941: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1950: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1951: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1952:50: warning: multi-line string literals are deprecated
    drivers/usb/spca50x.c:1956: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1961: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1965: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1966: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1970: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1977: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1978: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1980: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:1981: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2016: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2022: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2055: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2094: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2102: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2135: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2148: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2168: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_alloc':
    drivers/usb/spca50x.c:2327: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2346: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2354: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2359: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2378: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_do_dealloc':
    drivers/usb/spca50x.c:2390: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2406: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2408: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_buf_callback':
    drivers/usb/spca50x.c:2414: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2421: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_dealloc':
    drivers/usb/spca50x.c:2427: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2430: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2448: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_init_source':
    drivers/usb/spca50x.c:2466: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2483: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2488: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2493: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2524: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2534: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_open':
    drivers/usb/spca50x.c:2575: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2617: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_close':
    drivers/usb/spca50x.c:2626: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_ioctl':
    drivers/usb/spca50x.c:2692: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2702: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2795: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2859: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2870: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2937: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2965: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:2994: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3035: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3064: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3066: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3127: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3146: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_read':
    drivers/usb/spca50x.c:3220: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3295: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3302: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3312: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3321: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3324: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3330: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3336: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3340: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_mmap':
    drivers/usb/spca50x.c:3355: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_configure_sensor':
    drivers/usb/spca50x.c:3399: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `config_spca508':
    drivers/usb/spca50x.c:3421: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3424: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3425: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3429: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3432: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3433: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3437: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3438: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_configure':
    drivers/usb/spca50x.c:3476: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3493: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3503: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_probe':
    drivers/usb/spca50x.c:3579: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3696: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c: In function `spca50x_disconnect':
    drivers/usb/spca50x.c:3740: warning: concatenation of string literals with __FUNCTION__ is deprecated
    drivers/usb/spca50x.c:3746: warning: concatenation of string literals with __FUNCTION__ is deprecated
    Linking spca50x.o
    AMD1GHZ:/home/amd1ghz/webcam #
    Geändert von Wesie (13.02.03 um 21:05 Uhr)
    Suse 9.3 64bit Prof. // AMD 3700MHZ Notebook / 1 GB RAM / WLAN RA2500 / ATI 9700 Mobile / Nec Dual DVD Brenner / 80GB HD

  10. #10
    OpenGurke Avatar von Thomas Mitzkat
    Registriert seit
    Mar 2002
    Ort
    Weimarer Republik
    Beiträge
    4.028
    wo ist da ein fehler? da steht nur was von warnings! es fehlt noch


    make install

    und

    modprobe spca50x


    wer lesen kann, ist eindeutig im vorteil.
    Deutschland ist die Kanne für alle Tassen dieser Welt

  11. #11
    Registrierter Benutzer
    Registriert seit
    Jan 2003
    Beiträge
    125

    Red face Operation erfolgreich : Patient tot !

    Die 2 letzten Befehle wurden ohne zu meckern angenommen. Beim Versuch Neu anzumelden startet der XServer nicht mehr und die Tastatur pumpt wie ein Eichhörnchen : NUM und Caps sind am blinken -> das wars. Maus Tot , Tastatur keine Reaktion ... Kein AnmeldeBildschirm mehr : nur noch ein "geriffelter Hintergrund. Immo kopmme ich nur noch ins System über Fail-Login von Grub aus ....

    Werde übers WE mal neu installieren. ( Geht ja zum Glück ratzfatz und der Online-Update kann ja alleine laufen // Ist ja nicht wie Windoof )












    PS.: Wer Schreibfehler findet, darf sie ruhig behalten
    Suse 9.3 64bit Prof. // AMD 3700MHZ Notebook / 1 GB RAM / WLAN RA2500 / ATI 9700 Mobile / Nec Dual DVD Brenner / 80GB HD

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •