2005-04-12 10:40:20 +02:00
|
|
|
#!/bin/sh
|
|
|
|
##
|
|
|
|
## "dotest" is my stupid name for my patch-application script, which
|
|
|
|
## I never got around to renaming after I tested it. We're now on the
|
|
|
|
## second generation of scripts, still called "dotest".
|
|
|
|
##
|
|
|
|
## You give it a mbox-format collection of emails, and it will try to
|
|
|
|
## apply them to the kernel using "applypatch"
|
|
|
|
##
|
2005-04-20 17:23:00 +02:00
|
|
|
## dotest [ -q ] mail_archive [Signoff_file]
|
|
|
|
##
|
2005-04-12 10:40:20 +02:00
|
|
|
rm -rf .dotest
|
|
|
|
mkdir .dotest
|
2005-04-20 17:23:00 +02:00
|
|
|
case $1 in
|
|
|
|
|
|
|
|
-q) touch .dotest/.query_apply
|
|
|
|
shift;;
|
|
|
|
esac
|
2005-04-12 10:40:20 +02:00
|
|
|
mailsplit $1 .dotest || exit 1
|
|
|
|
for i in .dotest/*
|
|
|
|
do
|
|
|
|
mailinfo .dotest/msg .dotest/patch .dotest/file < $i > .dotest/info || exit 1
|
2005-04-30 19:58:41 +02:00
|
|
|
stripspace < .dotest/msg > .dotest/msg-clean
|
|
|
|
applypatch .dotest/msg-clean .dotest/patch .dotest/file .dotest/info "$2"
|
2005-04-20 17:23:00 +02:00
|
|
|
ret=$?
|
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
# 2 is a special exit code from applypatch to indicate that
|
|
|
|
# the patch wasn't applied, but continue anyway
|
|
|
|
[ $ret -ne 2 ] && exit $ret
|
|
|
|
fi
|
2005-04-12 10:40:20 +02:00
|
|
|
done
|
2005-04-20 17:23:00 +02:00
|
|
|
# return to pristine
|
|
|
|
rm -fr .dotest
|