[package] create kmod-fb and update xen framebuffer module
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32805 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
a4e930b56b
commit
8bf393f3e3
|
@ -8,6 +8,28 @@
|
|||
|
||||
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)
|
||||
endef
|
||||
|
||||
define KernelPackage/fb/description
|
||||
Kernel support for framebuffers
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,fb))
|
||||
|
||||
|
||||
define KernelPackage/video-core
|
||||
SUBMENU:=$(VIDEO_MENU)
|
||||
TITLE=Video4Linux support
|
||||
|
|
|
@ -88,14 +88,12 @@ endef
|
|||
|
||||
$(eval $(call KernelPackage,xen-evtchn))
|
||||
|
||||
# FIXME: the FB support should be moved to a separate kmod
|
||||
define KernelPackage/xen-fbdev
|
||||
SUBMENU:=$(VIRTUAL_MENU)
|
||||
TITLE:=Xen virtual frame buffer
|
||||
DEPENDS:=@TARGET_x86_xen_domu
|
||||
DEPENDS:=@TARGET_x86_xen_domu +kmod-fb
|
||||
KCONFIG:= \
|
||||
CONFIG_XEN_FBDEV_FRONTEND \
|
||||
CONFIG_FB \
|
||||
CONFIG_FB_DEFERRED_IO=y \
|
||||
CONFIG_FB_SYS_COPYAREA \
|
||||
CONFIG_FB_SYS_FILLRECT \
|
||||
|
@ -104,7 +102,6 @@ define KernelPackage/xen-fbdev
|
|||
CONFIG_FIRMWARE_EDID=n
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/drivers/video/xen-fbfront.ko \
|
||||
$(LINUX_DIR)/drivers/video/fb.ko \
|
||||
$(LINUX_DIR)/drivers/video/syscopyarea.ko \
|
||||
$(LINUX_DIR)/drivers/video/sysfillrect.ko \
|
||||
$(LINUX_DIR)/drivers/video/fb_sys_fops.ko \
|
||||
|
|
Loading…
Reference in New Issue