aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/drm/scripts
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-02 15:02:49 +0100
commitb16b9e4656e7199c2aec74a4c8ebc7a875d3ba73 (patch)
tree4361edef0d42d5bf5ac984ef72b4fac35426eae7 /nx-X11/extras/drm/scripts
parent0d5a83e986f39982c0924652a3662e60b1f23162 (diff)
downloadnx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.gz
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.tar.bz2
nx-libs-b16b9e4656e7199c2aec74a4c8ebc7a875d3ba73.zip
massive reduction of unneeded files
Diffstat (limited to 'nx-X11/extras/drm/scripts')
-rw-r--r--nx-X11/extras/drm/scripts/create_bsd_pci_lists.sh40
-rw-r--r--nx-X11/extras/drm/scripts/create_linux_pci_lists.sh40
-rwxr-xr-xnx-X11/extras/drm/scripts/create_lk_drm.sh35
3 files changed, 0 insertions, 115 deletions
diff --git a/nx-X11/extras/drm/scripts/create_bsd_pci_lists.sh b/nx-X11/extras/drm/scripts/create_bsd_pci_lists.sh
deleted file mode 100644
index 64a1fcb4f..000000000
--- a/nx-X11/extras/drm/scripts/create_bsd_pci_lists.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-#
-# Script to output BSD compatible pci ids file
-# - Copyright Dave Airlie 2004 (airlied@linux.ie)
-#
-OUTFILE=drm_pciids.h
-
-finished=0
-
-cat > $OUTFILE <<EOF
-/*
- This file is auto-generated from the drm_pciids.txt in the DRM CVS
- Please contact dri-devel@lists.sf.net to add new cards to this list
-*/
-EOF
-
-while read pcivend pcidev attribs pciname
-do
- if [ "x$pcivend" = "x" ]; then
- if [ "$finished" = "0" ]; then
- finished=1
- echo " {0, 0, 0, NULL}" >> $OUTFILE
- echo >> $OUTFILE
- fi
- else
-
- cardtype=`echo "$pcivend" | cut -s -f2 -d'[' | cut -s -f1 -d']'`
- if [ "x$cardtype" = "x" ];
- then
- echo " {$pcivend, $pcidev, $attribs, $pciname}, \\" >> $OUTFILE
- else
- echo "#define "$cardtype"_PCI_IDS \\" >> $OUTFILE
- finished=0
- fi
- fi
-done
-
-if [ "$finished" = "0" ]; then
- echo " {0, 0, 0, NULL}" >> $OUTFILE
-fi
diff --git a/nx-X11/extras/drm/scripts/create_linux_pci_lists.sh b/nx-X11/extras/drm/scripts/create_linux_pci_lists.sh
deleted file mode 100644
index bb0e68782..000000000
--- a/nx-X11/extras/drm/scripts/create_linux_pci_lists.sh
+++ /dev/null
@@ -1,40 +0,0 @@
-#! /bin/bash
-#
-# Script to output Linux compatible pci ids file
-# - Copyright Dave Airlie 2004 (airlied@linux.ie)
-#
-OUTFILE=drm_pciids.h
-
-finished=0
-
-cat > $OUTFILE <<EOF
-/*
- This file is auto-generated from the drm_pciids.txt in the DRM CVS
- Please contact dri-devel@lists.sf.net to add new cards to this list
-*/
-EOF
-
-while read pcivend pcidev attribs pciname
-do
- if [ "x$pcivend" = "x" ]; then
- if [ "$finished" = "0" ]; then
- finished=1
- echo " {0, 0, 0}" >> $OUTFILE
- echo >> $OUTFILE
- fi
- else
-
- cardtype=`echo "$pcivend" | cut -s -f2 -d'[' | cut -s -f1 -d']'`
- if [ "x$cardtype" = "x" ];
- then
- echo " {$pcivend, $pcidev, PCI_ANY_ID, PCI_ANY_ID, 0, 0, $attribs}, \\" >> $OUTFILE
- else
- echo "#define "$cardtype"_PCI_IDS \\" >> $OUTFILE
- finished=0
- fi
- fi
-done
-
-if [ "$finished" = "0" ]; then
- echo " {0, 0, 0}" >> $OUTFILE
-fi
diff --git a/nx-X11/extras/drm/scripts/create_lk_drm.sh b/nx-X11/extras/drm/scripts/create_lk_drm.sh
deleted file mode 100755
index 6939faae7..000000000
--- a/nx-X11/extras/drm/scripts/create_lk_drm.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#! /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
-#
-
-if [ $# -lt 2 ] ;then
- echo usage: $0 output_dir [2.4\|2.6]
- exit 1
-fi
-
-if [ ! -d shared -o ! -d linux ] ;then
- echo not in DRM toplevel
- exit 1
-fi
-
-OUTDIR=$1/drivers/char/drm/
-VERS=$2
-
-echo "Copying kernel independent files"
-mkdir -p $OUTDIR
-
-( cd linux/ ; make drm_pciids.h )
-cp shared-core/*.[ch] $OUTDIR
-cp linux-core/*.[ch] $OUTDIR
-cp linux-core/Makefile.kernel $OUTDIR/Makefile
-
-if [ $VERS = 2.4 ] ;then
- echo "Copying 2.4 Kernel files"
- cp linux/Config.in $OUTDIR/
-elif [ $VERS = 2.6 ] ;then
- echo "Copying 2.6 Kernel files"
- cp linux/Kconfig $OUTDIR/
-fi
-