-1

I am trying to build vivi driver in linux kernel.. I tried using make menuconfig but i didnt see any option to enable vivi driver. Can someone tell me the process to enable vivi drivers in kernel

-kiran

2 Answers2

1

LINUX KERNEL 3.12 :
The support for vivi [virtual video driver] can be enable by following:


Device Driver -->
Multimedia support -->
Cameras/video grabbers support -->
Media test drivers -->
Virtual Video Driver.

Priyank Arora
  • 477
  • 4
  • 7
0

It's under 'Device Drivers' -> 'Multimedia support' -> 'Video capture adapters' -> 'Virtual Video Driver'.

It has dependencies on VIDEO_DEV, VIDEO_V4L2 and ( FRAMEBUFFER_CONSOLE or STI_CONSOLE ). It's also not supported on Sparc machines.

Reading the Kconfig files is usually the best place to start looking for this kind of thing.

Kristof Provost
  • 26,018
  • 2
  • 26
  • 28