aboutsummaryrefslogtreecommitdiff
path: root/scripts/create_lk_drm.sh
blob: b18a951474ffdf67074eeb3c3f4e698dbbef74a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#! /bin/bash
# script to create a Linux Kernel tree from the DRM tree for diffing etc..
#
# Original author - Dave Airlie (C) 2004 - airlied@linux.ie
# kernel_version to remove below (e.g. 2.6.24)

if [ $# -lt 2 ] ;then
	echo usage: $0 output_dir kernel_version
	exit 1
fi

if [ ! -d shared-core -o ! -d linux-core ]  ;then
	echo not in DRM toplevel
	exit 1
fi

OUTDIR=$1/drivers/char/drm/
KERNEL_VERS=$2
echo "Copying kernel independent files"
mkdir -p $OUTDIR/.tmp

( cd linux-core/ ; make drm_pciids.h )
cp shared-core/*.[ch] $OUTDIR/.tmp
cp linux-core/*.[ch] $OUTDIR/.tmp
cp linux-core/Makefile.kernel $OUTDIR/.tmp/Makefile

echo "Copying 2.6 Kernel files"
cp linux-core/Kconfig $OUTDIR/.tmp

./scripts/drm-scripts-gentree.pl $KERNEL_VERS $OUTDIR/.tmp $OUTDIR
cd $OUTDIR

rm -rf .tmp
rm via_ds.[ch]
rm sis_ds.[ch]

cd -