x1157: add XGI video driver

Based on googlecode r575 by Thiago Correa.
This commit is contained in:
Peter Korsgaard 2008-06-30 13:16:00 +00:00
parent f49400e63c
commit 5404d73065
3 changed files with 27 additions and 0 deletions

View File

@ -228,6 +228,7 @@ if BR2_PACKAGE_XORG7
source package/x11r7/xdriver_xf86-video-via/Config.in
source package/x11r7/xdriver_xf86-video-vmware/Config.in
source package/x11r7/xdriver_xf86-video-voodoo/Config.in
source package/x11r7/xdriver_xf86-video-xgi/Config.in
endmenu
endif
menu "X11R7 Fonts"

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_XDRIVER_XF86_VIDEO_XGI
bool "xf86-video-xgi"
default n
select BR2_PACKAGE_XSERVER_XORG_SERVER
select BR2_PACKAGE_XPROTO_FONTSPROTO
select BR2_PACKAGE_XPROTO_RANDRPROTO
select BR2_PACKAGE_XPROTO_RENDERPROTO
select BR2_PACKAGE_XPROTO_XEXTPROTO
select BR2_PACKAGE_XPROTO_XPROTO
help
xf86-video-xgi 1.3.0
XGI based chips video driver

View File

@ -0,0 +1,14 @@
################################################################################
#
# xdriver_xf86-video-xgi -- XGI video driver
#
################################################################################
XDRIVER_XF86_VIDEO_XGI_VERSION = 1.5.0
XDRIVER_XF86_VIDEO_XGI_SOURCE = xf86-video-xgi-$(XDRIVER_XF86_VIDEO_VESA_VERSION).tar.bz2
XDRIVER_XF86_VIDEO_XGI_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_VIDEO_XGI_AUTORECONF = NO
XDRIVER_XF86_VIDEO_XGI_DEPENDENCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xproto
XDRIVER_XF86_VIDEO_XGI_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
$(eval $(call AUTOTARGETS,package/x11r7,xdriver_xf86-video-xgi))