Hi,

The current create_lk_drm.sh script does not pass the kernel source dir
to make. If you are trying to install the DRM to a kernel source that
is not running the kernel this fails.
I enclose a patch that fixes this.

Terry
--
Dr Terry Barnaby                     BEAM Ltd
Phone: +44 1454 324512               Northavon Business Center, Dean Rd
Fax:   +44 1454 313172               Yate, Bristol, BS37 5NH, UK
Email: [EMAIL PROTECTED]             Web: www.beam.ltd.uk
BEAM for: Visually Impaired X-Terminals, Parallel Processing, Software
                      "Tandems are twice the fun !"
? linux/drm_pciids.h
Index: scripts/create_lk_drm.sh
===================================================================
RCS file: /cvs/dri/drm/scripts/create_lk_drm.sh,v
retrieving revision 1.4
diff -u -r1.4 create_lk_drm.sh
--- scripts/create_lk_drm.sh	9 May 2004 06:36:55 -0000	1.4
+++ scripts/create_lk_drm.sh	27 Oct 2004 09:14:46 -0000
@@ -20,7 +20,7 @@
 echo "Copying kernel independent files"
 mkdir -p $OUTDIR
 
-( cd linux/ ; make drm_pciids.h )
+( cd linux/ ; make LINUXDIR=$OUTDIR drm_pciids.h )
 cp shared/*.[ch] $OUTDIR
 cp linux/*.[ch] $OUTDIR
 cp linux/Makefile.kernel $OUTDIR/Makefile

Reply via email to