core/linux-3-CHAKRA-LTS/gen_kernel_prepatch
2012-02-20 17:10:33 +01:00

23 lines
394 B
Bash
Executable File

#!/bin/bash
source PATCHCFG
if [ -d stable-queue ] ;
then
cd stable-queue
git pull
cd ..
else
git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git
fi
if [ -d stable-queue/queue-$_queue ] ;
then
cd stable-queue/queue-$_queue
for i in $(cat ./series);
do
cat $i >> ../../$_prepatch.patch;
done
else
echo "There is no patch-set this time"
fi