From cdd132c493f95b795b4082b110ccde17c74e70bd Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 25 Jul 2012 14:01:54 +0000 Subject: [package] split framebuffer helper modules to their own packages git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32843 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/kernel/modules/video.mk | 58 ++++++++++++++++++++++++++++++++++------- target/linux/ep93xx/modules.mk | 3 ++- 2 files changed, 51 insertions(+), 10 deletions(-) diff --git a/package/kernel/modules/video.mk b/package/kernel/modules/video.mk index fecedb0f1..24fff6d96 100644 --- a/package/kernel/modules/video.mk +++ b/package/kernel/modules/video.mk @@ -12,15 +12,9 @@ VIDEO_MENU:=Video Support define KernelPackage/fb SUBMENU:=$(VIDEO_MENU) TITLE:=Framebuffer support - KCONFIG:=CONFIG_FB \ - CONFIG_FB_CFB_FILLRECT \ - CONFIG_FB_CFB_COPYAREA \ - CONFIG_FB_CFB_IMAGEBLIT - FILES:=$(LINUX_DIR)/drivers/video/fb.ko \ - $(LINUX_DIR)/drivers/video/cfbfillrect.ko \ - $(LINUX_DIR)/drivers/video/cfbcopyarea.ko \ - $(LINUX_DIR)/drivers/video/cfbimgblt.ko - AUTOLOAD:=$(call AutoLoad,06,fb cfbfillrect cfbcopyarea cfbimgblt) + KCONFIG:=CONFIG_FB + FILES:=$(LINUX_DIR)/drivers/video/fb.ko + AUTOLOAD:=$(call AutoLoad,06,fb) endef define KernelPackage/fb/description @@ -29,6 +23,52 @@ endef $(eval $(call KernelPackage,fb)) +define KernelPackage/fb-cfb-fillrect + SUBMENU:=$(VIDEO_MENU) + TITLE:=Framebuffer software rectangle filling support + DEPENDS:=+kmod-fb + KCONFIG:=CONFIG_FB_CFB_FILLRECT + FILES:=$(LINUX_DIR)/drivers/video/cfbfillrect.ko + AUTOLOAD:=$(call AutoLoad,07,cfbfillrect) +endef + +define KernelPackage/fb-cfb-fillrect/description + Kernel support for software rectangle filling +endef + +$(eval $(call KernelPackage,fb-cfb-fillrect)) + + +define KernelPackage/fb-cfb-copyarea + SUBMENU:=$(VIDEO_MENU) + TITLE:=Framebuffer software copy area support + DEPENDS:=+kmod-fb + KCONFIG:=CONFIG_FB_CFB_COPYAREA + FILES:=$(LINUX_DIR)/drivers/video/cfbcopyarea.ko + AUTOLOAD:=$(call AutoLoad,07,cfbcopyarea) +endef + +define KernelPackage/fb-cfb-copyarea/description + Kernel support for software copy area +endef + +$(eval $(call KernelPackage,fb-cfb-copyarea)) + +define KernelPackage/fb-cfb-imgblt + SUBMENU:=$(VIDEO_MENU) + TITLE:=Framebuffer software image blit support + DEPENDS:=+kmod-fb + KCONFIG:=CONFIG_FB_CFB_IMAGEBLIT + FILES:=$(LINUX_DIR)/drivers/video/cfbimgblt.ko + AUTOLOAD:=$(call AutoLoad,07,cfbimgblt) +endef + +define KernelPackage/fb-cfb-imgblt/description + Kernel support for software image blitting +endef + +$(eval $(call KernelPackage,fb-cfb-imgblt)) + define KernelPackage/video-core SUBMENU:=$(VIDEO_MENU) diff --git a/target/linux/ep93xx/modules.mk b/target/linux/ep93xx/modules.mk index b8fc3067c..1156f610a 100644 --- a/target/linux/ep93xx/modules.mk +++ b/target/linux/ep93xx/modules.mk @@ -8,7 +8,8 @@ define KernelPackage/fb-ep93xx SUBMENU:=$(VIDEO_MENU) TITLE:=EP93xx framebuffer support - DEPENDS:=@TARGET_ep93xx +kmod-fb + DEPENDS:=@TARGET_ep93xx +kmod-fb +kmod-fb-cfb-fillrect \ + +kmod-fb-cfb-copyarea +kmod-fb-cfb-imgblt KCONFIG:=CONFIG_FB_EP93XX FILES:=$(LINUX_DIR)/drivers/video/ep93xx-fb.ko AUTOLOAD:=$(call AutoLoad,51,ep93xx-fb) -- cgit v1.2.3