On Fri, Jan 07, 2005 at 03:12:22PM +0000, Keith Whitwell wrote:
> There has just been an update to xorg which includes DRI suspend/resume 
> support for i915.  Hopefully this will be of some help to you.

Thanks. It works perfectly! Needed a couple of patches to get it
happy however:
 - my `install` on Debian doesn't know about -C - from googling I
   gather it means --owner=root --group=root (no idea what's
   standard though).
 - I was getting unresolved symbol errors in i915_drv.so for
   _tnl_vertex_cull_stage until I added t_vb_cull.c to sources.

Bernard.

-- 
 Bernard Blackham <bernard at blackham dot com dot au>
Index: drivers/dri/Makefile.template
===================================================================
RCS file: /cvs/mesa/Mesa/src/mesa/drivers/dri/Makefile.template,v
retrieving revision 1.17
diff -u -3 -p -r1.17 Makefile.template
--- drivers/dri/Makefile.template       7 Jan 2005 10:35:23 -0000       1.17
+++ drivers/dri/Makefile.template       7 Jan 2005 18:23:38 -0000
@@ -78,7 +78,7 @@ $(LIBNAME):  $(OBJECTS) $(MESA_MODULES) 
 
 
 $(LIB_DIR)/$(LIBNAME): $(LIBNAME)
-       install -C $(LIBNAME) $(LIB_DIR) 
+       install --owner=root --group=root $(LIBNAME) $(LIB_DIR) 
 
 
 
Index: sources
===================================================================
RCS file: /cvs/mesa/Mesa/src/mesa/sources,v
retrieving revision 1.17
diff -u -3 -p -r1.17 sources
--- sources     19 Dec 2004 03:06:59 -0000      1.17
+++ sources     7 Jan 2005 18:23:38 -0000
@@ -116,6 +116,7 @@ TNL_SOURCES = \
        tnl/t_save_api.c \
        tnl/t_save_loopback.c \
        tnl/t_save_playback.c \
+       tnl/t_vb_cull.c \
        tnl/t_vb_fog.c \
        tnl/t_vb_light.c \
        tnl/t_vb_normals.c \

Reply via email to