Make appliqué sur ce seul module te prendrait certainement moins de temps que tout recompiler par make-kpkg.
Regarde les dépendances de gspca_zc3xx
[code]
config USB_GSPCA_ZC3XX
tristate "ZC3XX USB Camera Driver"
depends on VIDEO_V4L2 && USB_GSPCA
help
Say Y here if you want support for cameras based on the ZC3XX chip.
To compile this driver as a module, choose M here: the
module will be called gspca_zc3xx.[/code]
Dépend de USB_GSPCA et VIDEO_V4L2
[code] menuconfig USB_GSPCA
tristate "GSPCA based webcams"
depends on VIDEO_V4L2
default m
—help—
Say Y here if you want to enable selecting webcams based
on the GSPCA framework.
See <file:Documentation/video4linux/gspca.txt> for more info.
This driver uses the Video For Linux API. You must say Y or M to
"Video For Linux" to use this driver .
To compile this driver as modules, choose M here: the
module will be called gspca_main.
if USB_GSPCA && VIDEO_V4L2 [/code]
depend de VIDEO_V4L2, sélectionner “Video For Linux”,
[code]#
Multimedia device configuration
menuconfig MEDIA_SUPPORT
tristate "Multimedia support"
depends on HAS_IOMEM
help
If you want to use Webcams, Video grabber devices and/or TV devices
enable this option and other options below.
Additional info and docs are available on the web at
http://linuxtv.org
if MEDIA_SUPPORT
comment “Multimedia core support”
Multimedia support - automatically enable V4L2 and DVB core
[/code]
Dépend de HAS_IOMEM
[code]
menuconfig MEDIA_USB_SUPPORT
bool "Media USB Adapters"
depends on USB && MEDIA_SUPPORT
help
Enable media drivers for USB bus.
If you have such devices, say Y.
if MEDIA_USB_SUPPORT[/code]
dépend de USB && MEDIA_SUPPORT… etc jusqu’à complète résolution.
J’ai bien peur que la voie la plus sage soit de tout reprendre…
«chi va piano va lontano»
En passant par make menuconfig et make-kpkg tu aurais moins de risques de rater des dépendances.
Menuconfig facilite grandement la résolution des dépendances.