Home | History | Annotate | Line # | Download | only in scripts
      1 #! /bin/bash
      2 # script to create a Linux Kernel tree from the DRM tree for diffing etc..
      3 #
      4 # Original author - Dave Airlie (C) 2004 - airlied (at] linux.ie
      5 # kernel_version to remove below (e.g. 2.6.24)
      6 
      7 if [ $# -lt 2 ] ;then
      8 	echo usage: $0 output_dir kernel_version
      9 	exit 1
     10 fi
     11 
     12 if [ ! -d shared-core -o ! -d linux-core ]  ;then
     13 	echo not in DRM toplevel
     14 	exit 1
     15 fi
     16 
     17 OUTDIR=$1/drivers/char/drm/
     18 KERNEL_VERS=$2
     19 echo "Copying kernel independent files"
     20 mkdir -p $OUTDIR/.tmp
     21 
     22 ( cd linux-core/ ; make drm_pciids.h )
     23 cp shared-core/*.[ch] $OUTDIR/.tmp
     24 cp linux-core/*.[ch] $OUTDIR/.tmp
     25 cp linux-core/Makefile.kernel $OUTDIR/.tmp/Makefile
     26 
     27 echo "Copying 2.6 Kernel files"
     28 cp linux-core/Kconfig $OUTDIR/.tmp
     29 
     30 ./scripts/drm-scripts-gentree.pl $KERNEL_VERS $OUTDIR/.tmp $OUTDIR
     31 cd $OUTDIR
     32 
     33 rm -rf .tmp
     34 rm sis_ds.[ch]
     35 
     36 cd -
     37