mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-20 04:01:26 +00:00
Merge scripts and nightly directories from trunk up to and including r4355
git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/2.2.x@4358 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
@@ -51,11 +51,13 @@ usage () {
|
||||
|
||||
scst_svn_repo="https://scst.svn.sourceforge.net/svnroot/scst/trunk"
|
||||
sendmail_opts=""
|
||||
run_if_unchanged="false"
|
||||
|
||||
set -- $(/usr/bin/getopt "hr:" "$@")
|
||||
set -- $(/usr/bin/getopt "ahr:" "$@")
|
||||
while [ "$1" != "${1#-}" ]
|
||||
do
|
||||
case "$1" in
|
||||
'-a') run_if_unchanged=true; shift;;
|
||||
'-h') usage; exit 1;;
|
||||
'-r') sendmail_opts="$1 $2"; shift; shift;;
|
||||
'--') shift;;
|
||||
@@ -109,7 +111,7 @@ fi
|
||||
|
||||
svn_old_rev="`get_svn_revision ${svn_old_date}`"
|
||||
svn_new_rev="`get_svn_revision ${svn_new_date}`"
|
||||
if [ "${svn_old_rev}" = "${svn_new_rev}" ]; then
|
||||
if [ "${run_if_unchanged}" != "true" -a "${svn_old_rev}" = "${svn_new_rev}" ]; then
|
||||
echo "Both {$svn_old_date} and {$svn_new_date} correspond to r${svn_new_rev}"\
|
||||
"-- skipping nightly build." >unchanged.log
|
||||
exit 0
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
|
||||
# Specifics for the Cellbuzz system.
|
||||
|
||||
ABT_DETAILS="x86_64, Fedora 10"
|
||||
ABT_JOBS=3
|
||||
ABT_KERNELS="2.6.38.6 2.6.37.6 2.6.36.4 2.6.35.13 2.6.35.13-u-nc 2.6.34.9-nc 2.6.33.13-nc 2.6.32.40-nc 2.6.31.14-nc 2.6.30.10-nc 2.6.29.6-nc 2.6.28.10-nc 2.6.27.59-nc 2.6.26.8-nc 2.6.25.20-nc 2.6.24.7-nc 2.6.23.17-nc"
|
||||
24
nightly/conf/nightly.conf
Normal file
24
nightly/conf/nightly.conf
Normal file
@@ -0,0 +1,24 @@
|
||||
# Nightly build configuration.
|
||||
|
||||
ABT_DETAILS="x86_64"
|
||||
ABT_JOBS=5
|
||||
ABT_KERNELS=" \
|
||||
3.4.2 \
|
||||
3.3.8 \
|
||||
3.2.20 \
|
||||
3.1.10 \
|
||||
3.0.34-nc \
|
||||
2.6.39.4-nc \
|
||||
2.6.38.8-nc \
|
||||
2.6.37.6-nc \
|
||||
2.6.36.4-nc \
|
||||
2.6.35.14 \
|
||||
2.6.35.14-u-nc \
|
||||
2.6.34.12-nc \
|
||||
2.6.33.20-nc \
|
||||
2.6.32.59-nc \
|
||||
2.6.31.14-nc \
|
||||
2.6.30.10-nc \
|
||||
2.6.29.6-nc \
|
||||
2.6.27.62-nc \
|
||||
"
|
||||
@@ -7,6 +7,7 @@ usage() {
|
||||
}
|
||||
|
||||
recipients="scst-devel@lists.sourceforge.net"
|
||||
recipients="bvanassche@acm.org"
|
||||
|
||||
while [ "$1" != "${1#-}" ]
|
||||
do
|
||||
@@ -1,8 +0,0 @@
|
||||
|
||||
# Specifics for Bart Van Assche's PC.
|
||||
|
||||
ABT_DETAILS="x86_64, openSUSE 11.1"
|
||||
ABT_JOBS=3
|
||||
ABT_TMPDIR="$HOME/tmp-scst-${USER}-$$"
|
||||
#ABT_KERNELS="2.6.29.4 2.6.28.10 2.6.27.24 2.6.26.8 2.6.25.20 2.6.24.7 2.6.23.17"
|
||||
ABT_KERNELS="2.6.29.4 2.6.27.24 2.6.25.20 2.6.23.17"
|
||||
@@ -1,14 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# usage: $0 subject file-to-mail [file-to-attach]
|
||||
# Don't forget to set the variables 'from' and 'realname' in ~/.muttrc !!
|
||||
|
||||
recipients="scst-devel@lists.sourceforge.net"
|
||||
#recipients="bart.vanassche@gmail.com,bart"
|
||||
if [ $# -ge 3 ]; then
|
||||
gzip -9 <"$3" >"$3.gz"
|
||||
mutt -s "$1" -a "$3.gz" ${recipients} < "$2"
|
||||
rm -f "$3.gz"
|
||||
else
|
||||
mutt -s "$1" ${recipients} < "$2"
|
||||
fi
|
||||
@@ -259,7 +259,7 @@ diff -u SPECS/kernel.spec{.orig,}
|
||||
make ARCH=$Arch %{oldconfig_target} > /dev/null
|
||||
echo "# $Arch" > configs/$i
|
||||
EOF
|
||||
elif [ ${kver#2.6.32-131} != $kver ]; then
|
||||
elif [ ${kver#2.6.32-131} != $kver -o ${kver#2.6.32-220} != $kver ]; then
|
||||
# RHEL/CentOS/SL 6.1
|
||||
patch -p1 ${rpmbuild_dir}/SPECS/kernel.spec <<'EOF' || exit $?
|
||||
# RHEL/CentOS/SL 6.x
|
||||
|
||||
Reference in New Issue
Block a user