summaryrefslogtreecommitdiffstats
path: root/scripts/combine.sh
diff options
context:
space:
mode:
authorLaura Abbott <labbott@redhat.com>2019-12-02 13:10:41 -0500
committerLaura Abbott <labbott@redhat.com>2019-12-02 13:59:05 -0500
commit9f6ee1011cd7cef63aa62c710601fbe03488cd8c (patch)
treeb0b2678951e994de2e693964023a4bf93007af2b /scripts/combine.sh
parentabd6b9505d178a5acc8147b7bd67043f876ab2ff (diff)
downloadkernel-9f6ee1011cd7cef63aa62c710601fbe03488cd8c.tar.gz
kernel-9f6ee1011cd7cef63aa62c710601fbe03488cd8c.tar.xz
kernel-9f6ee1011cd7cef63aa62c710601fbe03488cd8c.zip
Remove some dead files
These have either not been heavily used or not updated in a very long time. Just remove them. It's cheap to bring these back if someone actually wants them.
Diffstat (limited to 'scripts/combine.sh')
-rwxr-xr-xscripts/combine.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/scripts/combine.sh b/scripts/combine.sh
deleted file mode 100755
index 86a68d302..000000000
--- a/scripts/combine.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#! /bin/sh
-
-# combine a set of quilt patches
-
-# $1 : base dir (source tree)
-# $2 : quilt dir (patches to apply)
-# $3 : pre-patch to apply first (optional)
-
-# e.g.:
-# combine.sh /home/user/fedora/trunk/kernel/F-11/kernel-2.6.30/vanilla-2.6.30 \
-# /home/user/git/stable-queue/queue-2.6.30 \
-# /home/user/fedora/trunk/kernel/F-11/patch-2.6.30.5.bz2
-
-if [ $# -lt 2 ] ; then
- exit 1
-fi
-
-TD="combine_temp.d"
-
-cd $1 || exit 1
-cd ..
-[ -d $TD ] && rm -Rf $TD
-mkdir $TD || exit 1
-cd $TD
-
-cp -al ../$(basename $1) work.d
-cd work.d
-[ "$3" ] && bzcat $3 | patch -p1 -s
-ln -s $2 patches
-[ -h patches ] || exit 1
-quilt snapshot
-quilt upgrade
-quilt push -a -q
-quilt diff --snapshot >../combined.patch