diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-07-25 14:01:54 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-07-25 14:01:54 +0000 |
commit | 89a312bf48184a6468be6c32b6bacd2d241ce96b (patch) | |
tree | d59024d7ad9dd7de905853f0ab4e78f3581d45ce /package/kernel/modules/video.mk | |
parent | ba9f6a46b17ce02115828d6d14635358270918da (diff) | |
download | upstream-89a312bf48184a6468be6c32b6bacd2d241ce96b.tar.gz upstream-89a312bf48184a6468be6c32b6bacd2d241ce96b.tar.bz2 upstream-89a312bf48184a6468be6c32b6bacd2d241ce96b.zip |
split framebuffer helper modules to their own packages
SVN-Revision: 32843
Diffstat (limited to 'package/kernel/modules/video.mk')
-rw-r--r-- | package/kernel/modules/video.mk | 58 |
1 files changed, 49 insertions, 9 deletions
diff --git a/package/kernel/modules/video.mk b/package/kernel/modules/video.mk index fecedb0f1b..24fff6d966 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) |