Browse Source

brcm2708: add kmod-video-bcm2835 support

This adds BCM2835 camera interface driver as a kernel module.

Signed-off-by: Álvaro Fernández Rojas <[email protected]>

SVN-Revision: 46460
John Crispin 10 years ago
parent
commit
2eab9e03cc
1 changed files with 17 additions and 0 deletions
  1. 17 0
      target/linux/brcm2708/modules.mk

+ 17 - 0
target/linux/brcm2708/modules.mk

@@ -140,3 +140,20 @@ define KernelPackage/i2c-bcm2835/description
 endef
 
 $(eval $(call KernelPackage,i2c-bcm2835))
+
+
+define KernelPackage/video-bcm2835
+  TITLE:=Broadcom BCM2835 camera interface driver
+  KCONFIG:= \
+	CONFIG_VIDEO_BCM2835=y \
+	CONFIG_VIDEO_BCM2835_MMAL
+  FILES:= $(LINUX_DIR)/drivers/media/platform/bcm2835/bcm2835-v4l2.ko
+  AUTOLOAD:=$(call AutoLoad,65,bcm2835-v4l2)
+  $(call AddDepends/video,@TARGET_brcm2708 +kmod-video-videobuf2)
+endef
+
+define KernelPackage/video-bcm2835/description
+  This is a V4L2 driver for the Broadcom 2835 MMAL camera host interface
+endef
+
+$(eval $(call KernelPackage,video-bcm2835))