diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-31 13:15:45 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-31 13:15:45 +0000 |
commit | 823bc4caacfb8e6dc0b4ede20ef88953064e5a60 (patch) | |
tree | 2ca7f35c5b0c94134db44656d63b47e346b00aea | |
parent | f380abfbc258528beb2fd5d906bc68badf99b32a (diff) | |
download | master-187ad058-823bc4caacfb8e6dc0b4ede20ef88953064e5a60.tar.gz master-187ad058-823bc4caacfb8e6dc0b4ede20ef88953064e5a60.tar.bz2 master-187ad058-823bc4caacfb8e6dc0b4ede20ef88953064e5a60.zip |
linux: fix framebuffer kmods for >= 3.15
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44227 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/kernel/linux/modules/video.mk | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/package/kernel/linux/modules/video.mk b/package/kernel/linux/modules/video.mk index 77ba29a000..2bf80546e5 100644 --- a/package/kernel/linux/modules/video.mk +++ b/package/kernel/linux/modules/video.mk @@ -16,7 +16,9 @@ define KernelPackage/fb TITLE:=Framebuffer support DEPENDS:=@DISPLAY_SUPPORT KCONFIG:=CONFIG_FB - FILES:=$(LINUX_DIR)/drivers/video/fb.ko + FILES:= \ + $(LINUX_DIR)/drivers/video/fb.ko@lt3.15 \ + $(LINUX_DIR)/drivers/video/fbdev/core/fb.ko@ge3.15 AUTOLOAD:=$(call AutoLoad,06,fb) endef @@ -36,7 +38,9 @@ define KernelPackage/fb-cfb-fillrect TITLE:=Framebuffer software rectangle filling support DEPENDS:=+kmod-fb KCONFIG:=CONFIG_FB_CFB_FILLRECT - FILES:=$(LINUX_DIR)/drivers/video/cfbfillrect.ko + FILES:= \ + $(LINUX_DIR)/drivers/video/cfbfillrect.ko@lt3.15 \ + $(LINUX_DIR)/drivers/video/fbdev/core/cfbfillrect.ko@ge3.15 AUTOLOAD:=$(call AutoLoad,07,cfbfillrect) endef @@ -52,7 +56,9 @@ define KernelPackage/fb-cfb-copyarea TITLE:=Framebuffer software copy area support DEPENDS:=+kmod-fb KCONFIG:=CONFIG_FB_CFB_COPYAREA - FILES:=$(LINUX_DIR)/drivers/video/cfbcopyarea.ko + FILES:= \ + $(LINUX_DIR)/drivers/video/cfbcopyarea.ko@lt3.15 \ + $(LINUX_DIR)/drivers/video/fbdev/core/cfbcopyarea.ko@ge3.15 AUTOLOAD:=$(call AutoLoad,07,cfbcopyarea) endef @@ -67,7 +73,9 @@ define KernelPackage/fb-cfb-imgblt TITLE:=Framebuffer software image blit support DEPENDS:=+kmod-fb KCONFIG:=CONFIG_FB_CFB_IMAGEBLIT - FILES:=$(LINUX_DIR)/drivers/video/cfbimgblt.ko + FILES:= \ + $(LINUX_DIR)/drivers/video/cfbimgblt.ko@lt3.15 \ + $(LINUX_DIR)/drivers/video/fbdev/core/cfbimgblt.ko@ge3.15 AUTOLOAD:=$(call AutoLoad,07,cfbimgblt) endef |