Whamcloud - gitweb
020501bdb1806e570ade9ed7c66527a10be8df15
[fs/lustre-release.git] / build / lbuild
1 #!/bin/bash
2
3 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
4
5 #set -x
6
7 TOPDIR=$PWD
8
9 # CVSROOT is inherited from the environment
10 KERNELDIR=
11 LINUX=
12 LUSTRE=
13 RELEASE=false
14 DO_SRC=0
15 DOWNLOAD=1
16 TAG=
17 CANONICAL_TARGET=
18 TARGET=
19 TARGET_ARCH=$(uname -m)
20 TARGET_ARCHS=
21 TARGET_ARCHS_ALL=$TARGET_ARCH
22 [ "$TARGET_ARCH" = "i686" ] && TARGET_ARCHS_ALL="i686 i586 i386"
23 CONFIGURE_FLAGS=
24 EXTERNAL_PATCHES=
25 EXTRA_VERSION=
26 LUSTRE_EXTRA_VERSION=
27 STAGEDIR=
28 TMPDIR=${TMPDIR:-"/var/tmp"}
29 TIMESTAMP=
30 REUSERPM=
31 REUSEBUILD=
32 NORPM=false
33 LDISKFSRPM=true
34 SKIPLDISKFSRPM="v1_4_* b1_4"
35 SMPTYPES="smp bigsmp default ''"
36 KERNCONFSMPTYPE=
37 PATCHLESS=false
38 LINUXOBJ=
39 REUSEDKERNELMASK=
40 DISTRO=
41 KERNELTREE=
42
43 # patchless build
44 KERNELRPMSBASE=
45 KERNELRPM=
46 KERNELSOURCERPM=
47 RPMSMPTYPE=
48 KERNELRPMCONFIG=
49 KERNELRPMRELEASE=
50 KERNELCOMPILEDIR=
51
52 # from target file
53 KERNEL=
54 SERIES=
55 CONFIG=
56 VERSION=
57
58 RHBUILD=0
59 SUSEBUILD=0
60 LINUX26=0
61 SUSEBUILD=0
62
63 BASE_ARCHS=
64 BIGMEM_ARCHS=
65 BOOT_ARCHS=
66 JENSEN_ARCHS=
67 SMP_ARCHS=
68 BIGSMP_ARCHS=
69 PSERIES64_ARCHS=
70 UP_ARCHS=
71
72 DATE=$(date)
73
74 USE_DATESTAMP=1
75 RPMBUILD=
76
77 export CC=${CC:-gcc}
78
79 # Readlink is not present on some older distributions: emulate it.
80 readlink() {
81     local path=$1 ll
82
83     if [ -L "$path" ]; then
84         ll="$(LC_ALL=C ls -l "$path" 2> /dev/null)" &&
85         echo "${ll/* -> }"
86     else
87         return 1
88     fi
89 }
90
91 cleanup()
92 {
93     true
94 }
95
96 error()
97 {
98     [ "$1" ] && echo -e "\n${0##*/}: $1"
99 }
100
101 fatal()
102 {
103     cleanup
104     error "$2"
105     exit $1
106 }
107
108 list_targets()
109 {
110     echo -n "Available targets:"
111     for target in $TOPDIR/lustre/lustre/kernel_patches/targets/*.target ; do
112         target_file=${target##*/}
113         echo -n " ${target_file%%.target}"
114     done
115     echo
116 }
117
118 usage()
119 {
120     cat <<EOF
121 Usage: ${0##*/} [OPTION]... [-- <lustre configure options>]
122
123   -d CVSROOT
124     Specifies the CVS Root to use when pulling files from CVS.  The
125     environment variable \$CVSROOT is used if this option is not
126     present.
127
128   --external-patches=EXTERNAL_PATCHES
129     Directory similar to lustre/lustre/kernel_patches/ that lbuild should
130     look for seres and config files in before looking in the lustre
131     tree.
132
133   --extraversion=EXTRAVERSION
134     Text to use for the rpm release and kernel extraversion.
135
136   --kerneldir=KERNELDIR
137     Directory containing Linux source tarballs referenced by target
138     files.
139
140   --timestamp=TIMESTAMP
141     Date of building lustre in format YYYYMMDDhhmmss
142
143   --reuserpm=DIR
144     Try to reuse old kernel RPMs from DIR
145
146   --reusebuild=DIR
147     Try to reuse old kernel builds from DIR
148
149   --kernelrpm=DIR
150     Path to distro kernel RPM collection
151
152   --ccache
153     Use ccache
154
155   --norpm
156     Do not build RPMs (compile only mode)
157
158   --patchless
159     Build lustre client only
160
161   --distro=DISTRO
162     Which distro using. Autodetect by default
163
164   --kerneltree=KERNELTREE
165     Directory containing dirs with Linux source tarballs referenced by target
166     files. Dir names in format kernel version ('2.6.9', etc.)
167
168   --linux=LINUX
169     Directory of Linux kernel sources.  When this option is used, only
170     Lustre modules and userspace are built.
171
172   --lustre=LUSTRE
173     Path to an existing lustre source tarball to use instead of
174     pulling from CVS.
175
176   --nodownload
177     Do not try to download a kernel from downloads.lustre.org
178
179   --nosrc
180     Do not build a .src.rpm, a full kernel patch, or a patched kernel
181     tarball.
182
183   --ldiskfs
184     Do ldiskfs RPM. Now true by default
185
186   --publish
187     Unused.
188
189   --release
190     Specifies that the files generated do not include timestamps, and
191     that this is an official release.
192
193   --src
194     Build a .src.rpm, a full kernel patch, and a patched kernel tarball.
195
196   --stage=DIR
197     Directory used to stage packages for release.  RPMs will be placed
198     more or less in DIR/<target>-<arch>, and the tarball will be
199     placed in DIR.
200
201   --tag=TAG
202     A CVS branch/tag name to build from when pulling from CVS.
203
204   --target=TARGET
205     The name of the target to build.  The available targets are listed
206     below.
207
208   --target-archs=TARGET_ARCHS
209     A (space delimited) list of architectures to build.  By default,
210     all of the archs supported by the TARGET will be built, in
211     addition to a .src.rpm.  This option can limit those, for machines
212     that can only build certain archs or if you only want a certain
213     arch built (for testing, or a one-off kernel).
214
215     Also note that by using a non-"base" arch (eg, i386) only kernels
216     will be built - there will be no lustre-lite-utils package.
217
218   --disable-datestamp
219     Prevents the datestamp flag (-D) from being passed to cvs for 
220     checkouts. This is a workaround for a problem encountered when 
221     using lbuild with tinderbox.
222
223 EOF
224
225 #   list_targets
226
227     fatal "$1" "$2"
228 }
229
230 check_options()
231 {
232     if [ "$LUSTRE" ] ; then
233         [ -r "$LUSTRE" ] || \
234             usage 1 "Could not find Lustre source tarball '$LUSTRE'."
235     else
236         [ "$CVSROOT" ] || \
237             usage 1 "Either specify a CVS Root with -d, or a Lustre source tarball with --lustre."
238         [ "$TAG" ] || \
239             usage 1 "A branch/tag name must be specified with --tag when not building from a tarball."
240     fi
241
242     if [ -z "$LINUX" ] ; then
243         [ "$KERNELDIR" -o "$KERNELTREE" ] || \
244             usage 1 "A kernel directory must be specified with --kerneldir or --kerneltree."
245
246         [ -d "$KERNELDIR" -o -d "$KERNELTREE" ] || \
247             usage 1 "$KERNELDIR and $KERNELTREE are not a directory."
248
249         if ! $RELEASE; then
250             [ "$TAG" ] || \
251                 usage 1 "When building a snapshot, a tag name must be used."
252         fi
253
254         [ "$TARGET" ] || usage 1 "A target must be specified with --target."
255 #       TARGET_FILE="$TOPDIR/lustre/kernel_patches/targets/$TARGET.target"
256 #       [ -r "$TARGET_FILE" ] || \
257 #               usage 1 "Target '$TARGET' was not found."
258     fi
259
260     case $TARGET in
261         2.6-rhel5)
262             CANONICAL_TARGET="rhel5"
263             ;;
264         2.6-rhel4)
265             CANONICAL_TARGET="rhel-2.6"
266             ;;
267         2.6-suse)
268             CANONICAL_TARGET="sles-2.6"
269             ;;
270         2.6-sles10)
271             CANONICAL_TARGET="sles10-2.6"
272             ;;
273         hp_pnnl-2.4)
274             CANONICAL_TARGET="hp-pnnl-2.4"
275             ;;
276         2.6-vanilla \
277             | suse-2.4.21-2 \
278             | rh-2.4 \
279             | rhel-2.4 \
280             | sles-2.4 \
281             | 2.6-patchless)
282                 CANONICAL_TARGET="$TARGET"
283                 ;;
284     esac
285
286     local timestampnodig=$(echo $TIMESTAMP | sed -e s/[0-9]*//g)
287     [ "$timestampnodig" = "" ] || TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
288     local timestamplength="${#TIMESTAMP}"
289     if [ $timestamplength -eq 12 ]; then
290         TIMESTAMP="${TIMESTAMP}00"
291     elif [ $timestamplength -ne 14 ]; then
292         TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
293     fi
294
295     RPMBUILD=$(which rpmbuild 2>/dev/null | head -1)
296     if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
297         RPMBUILD=$(which rpm 2>/dev/null | head -1)
298         if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
299             usage 1 "Could not find binary for making rpms (tried rpmbuild and rpm)."
300         fi
301     fi
302     
303     if [ -n "$CCACHE" ]; then 
304         which "$CCACHE" 2>/dev/null && export CCACHE && export CC="ccache gcc"
305         which "$DISTCC" 2>/dev/null && export DISTCC RPM_BUILD_NCPUS
306         local bindir="/cache/build/bin"
307         [ -d $bindir ] || mkdir -p $bindir
308         [ -d $bindir ] && rm ${bindir}/* > /dev/null 2>&1
309         which "$CCACHE" 2>/dev/null && [ -d $bindir ] && ln -s `which "$CCACHE"` ${bindir}/ccache
310         which "$CCACHE" 2>/dev/null && [ -d $bindir ] && ln -s `which "$CCACHE"` ${bindir}/cc
311         which "$CCACHE" 2>/dev/null && [ -d $bindir ] && ln -s `which "$CCACHE"` ${bindir}/gcc
312         [ -d $bindir ] && export PATH=$bindir:$PATH
313     fi
314
315     [ -z "$DISTRO" ] && autodetect_distro
316 }
317
318 #autodetect used Distro
319 autodetect_distro()
320 {
321     if [ -f /etc/SuSE-release ]; then
322         DISTRO=sles10
323     elif [ -f /etc/redhat-release ]; then
324         local distroname=$(head -1 /etc/redhat-release | grep -e "CentOS\|Red")
325         if [ ! "$distroname" = "" ]; then
326             local version=$(echo "$distroname" | sed -e s/[^0-9.]*//g | sed -e s/\\..*// )
327             distroname="rhel"
328             [ "$version" = "" ] || DISTRO="${distroname}${version}"
329         fi
330     fi
331     [ "$DISTRO" = "" ] && DISTRO="sles9" #default distro
332 }
333
334 uniqify()
335 {
336     echo $(echo "$*" | xargs -n 1 | sort -u)
337 }
338
339 build_tarball() {
340     local TARGET=$1
341     local SRPM=$2
342
343     if [ "$TARGET" = "rhel-2.6" -o "$TARGET" = "rhel-2.4" ]; then
344         local SPEC=""
345         if [ "$TARGET" = "rhel-2.6" ]; then
346             SPEC=kernel-2.6.spec
347             OLDCONFIG=nonint_oldconfig
348         elif [ "$TARGET" = "rhel-2.4" ]; then
349             SPEC=kernel-2.4.spec
350             OLDCONFIG=oldconfig
351         fi
352
353         RPMTOPDIR=$(mktemp -d $KERNELDIR/rpm_XXXXXX)
354         mkdir $RPMTOPDIR/BUILD/
355         rpm -ivh $KERNELDIR/$SRPM --define "_topdir $RPMTOPDIR" || \
356             { rm -rf $RPMTOPDIR; fatal 1 "Error installing kernel SRPM."; }
357         $RPMBUILD -bp --nodeps --target i686 $RPMTOPDIR/SPECS/$SPEC --define "_topdir $RPMTOPDIR"
358         pushd $RPMTOPDIR/BUILD/kernel-${lnxmaj}/linux-${lnxmaj} && {
359             make mrproper
360             cp configs/kernel-${lnxmaj}-i686-smp.config .config
361             if ! make $OLDCONFIG > /dev/null; then
362                 fatal 1 "error trying to make $OLDCONFIG while building a tarball from SRPM."
363             fi
364             make include/linux/version.h 
365             rm -f .config
366             cd ..
367             tar cjf $KERNEL_FILE linux-${lnxmaj}
368         }
369         popd
370         rm -rf $RPMTOPDIR
371     fi
372 }
373
374 download_and_build_tarball() {
375     local target=$1
376     local kernel_file=$2
377
378     local srpm=kernel-${lnxmaj}-${lnxrel}.src.rpm
379
380     echo "Downloading http://downloads.lustre.org/public/kernels/$target/old/$srpm..."
381     if ! wget -nv "http://downloads.lustre.org/public/kernels/$target/old/$srpm" \
382         -O "$KERNELDIR/$srpm" ; then
383         fatal 1 "Could not download target $kernel_file's kernel SRPM $srpm from downloads.lustre.org."
384     fi
385     [ -s "$KERNELDIR/$srpm" ] || {
386         rm -rf $KERNELDIR/$srpm
387         fatal 1 "Could not download target $kernel_file's kernel SRPM $srpm from downloads.lustre.org."
388     }
389
390     build_tarball $target $srpm
391 }
392
393 load_target()
394 {
395     EXTRA_VERSION_save="$EXTRA_VERSION"
396     for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches" ; do
397         TARGET_FILE="$patchesdir/targets/$TARGET.target"
398         [ -r "$TARGET_FILE" ] && break
399     done
400     [ -r "$TARGET_FILE" ] || \
401         fatal 1 "Target $TARGET was not found."
402
403     echo "Loading target config file $TARGET.target..."        
404
405     . "$TARGET_FILE"
406
407     [ "$KERNEL"  ] || fatal 1 "Target $TARGET did not specify a kernel."
408     [ "$VERSION" ] || fatal 1 "Target $TARGET did not specify a kernel version."
409
410     #CC was overwriten in TARGET_FILE
411     which "$CCACHE" 2>/dev/null && export CCACHE && export CC="ccache gcc"
412
413     if [ ! "$KERNELTREE" = "" ] && [ -d "$KERNELTREE" ]; then
414         KERNELDIR="$KERNELTREE/${lnxmaj}"
415         [ -d "$KERNELDIR" ] || mkdir "$KERNELDIR"
416     fi
417
418     if [ "$KERNELDIR" ] ; then
419         KERNEL_FILE="$KERNELDIR/$KERNEL"
420         if [ ! -r "$KERNEL_FILE" ] ; then
421             # see if we have an SRPM we can build a tarball for
422             KERNEL_SRPM=kernel-${lnxmaj}-${lnxrel}.src.rpm
423             if [ -r "$KERNELDIR/$KERNEL_SRPM" ] ; then
424                 build_tarball $CANONICAL_TARGET $KERNEL_SRPM
425             else
426                 if (( $DOWNLOAD )) ; then
427                     echo "Downloading http://downloads.lustre.org/public/kernels/$DISTRO/old/$KERNEL..."
428                     if ! wget -nv "http://downloads.lustre.org/public/kernels/$DISTRO/old/$KERNEL" -O "$KERNELDIR/$KERNEL" ; then
429                         # see if we can do it with an SRPM from the download site
430                         download_and_build_tarball $CANONICAL_TARGET $KERNEL_FILE
431                     else
432                         [ -s "$KERNELDIR/$KERNEL" ] || {
433                             rm -rf "$KERNELDIR/$KERNEL"
434                             fatal 1 "Target $TARGET's kernel $KERNEL not found in directory $KERNELDIR."
435                         }
436                     fi
437                 else
438                     fatal 1 "Target $TARGET's kernel file $KERNEL not found in kernel directory $KERNELDIR."
439                 fi
440             fi
441         fi
442         if [ -n "$OFED_VERSION" ] && \
443            [ ! -r "$KERNELTREE/../OFED-${OFED_VERSION}.tgz" ] ; then
444             if (( $DOWNLOAD )) ; then
445                 local location="http://downloads.lustre.org/public/OFED/"
446                 echo "Downloading $location/OFED-${OFED_VERSION}.tgz..."
447                 if ! wget -nv "$location/OFED-${OFED_VERSION}.tgz" \
448                     -O "$KERNELTREE/../OFED-${OFED_VERSION}.tgz" ; then
449                     fatal 1 "Could not download OFED-${OFED_VERSION}.tgz from downloads.lustre.org."
450                 fi
451             else
452                 fatal 1 "OFED-${OFED_VERSION}.tgz not found in kernel directory $KERNELDIR."
453             fi
454         fi
455     fi
456
457     if [ "$SERIES" ] ; then
458         for series in $SERIES ; do
459             for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches" ; do
460                 [ -r "$patchesdir/series/$series" ] && continue 2
461             done
462             fatal 1 "Target $TARGET's series $SERIES could not be found.\nSearched:\n\t$EXTERNAL_PATCHES/series\n\t$TOPDIR/lustre/lustre/kernel_patches/series."
463         done
464     fi
465
466     if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH.config ]; then
467         CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH.config"
468     fi
469     local smptype
470     for smptype in $SMPTYPES; do
471         [ "$smptype" = "''" ] && smptype=
472         if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH-${smptype}.config ]; then
473         CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH-${smptype}.config"
474         KERNCONFSMPTYPE=$smptype
475     fi
476     done
477
478     local lnxrelnew=${lnxrel//-/_}
479
480     if ! $PATCHLESS && [ ! -f "$CONFIG_FILE" ]; then
481         fatal 1 "Config file for target $TARGET missing from $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/."
482     fi
483
484     if [ "$EXTRA_VERSION_save" ] ; then
485         EXTRA_VERSION="$EXTRA_VERSION_save"
486     elif ! $RELEASE; then
487         # if there is no patch series, then this is not a lustre specific
488         # kernel.  don't make it look like one
489         if [ -n "$SERIES" ]; then
490             #remove the @VERSION@ (lustre version)
491 #            EXTRA_VERSION=$(echo $EXTRA_VERSION | sed -e "s/\(.*_lustre\)\..*/\1/")
492 #            EXTRA_VERSION="${EXTRA_VERSION}-${TAG}.${TIMESTAMP}"
493             ! ( $PATCHLESS ) && EXTRA_VERSION="${EXTRA_VERSION}.${TIMESTAMP}"
494         fi
495     fi
496     # EXTRA_VERSION=${EXTRA_VERSION//-/_}
497
498     [ -z $REUSEDKERNELMASK ] && \
499         # create mask for kernel RPM/builddir which could be reused
500         if $NORPM; then
501             REUSEDKERNELMASK=${KERNCONFSMPTYPE}-${lnxmaj}-${lnxrelnew}_lustre.${LUSTRE_VERSION}.*${TARGET_ARCH}
502         elif $RELEASE; then
503             REUSEDKERNELMASK=${KERNCONFSMPTYPE}-${lnxmaj}-${lnxrelnew}_lustre.${LUSTRE_VERSION}.${TARGET_ARCH}
504         else
505             REUSEDKERNELMASK=${KERNCONFSMPTYPE}-${lnxmaj}-${lnxrelnew}_lustre.${LUSTRE_VERSION}.${TIMESTAMP}.${TARGET_ARCH}
506         fi
507         # kernel-lustre-smp-2.6.9-55.0.2.EL_lustre.1.6.1.i686.rpm 
508
509     ALL_ARCHS="$BASE_ARCHS $BIGMEM_ARCHS $BOOT_ARCHS $JENSEN_ARCHS $SMP_ARCHS $BIGSMP_ARCHS $PSERIES64_ARCHS $UP_ARCHS"
510
511     BUILD_ARCHS=
512     for arch in $(uniqify "$ALL_ARCHS") ; do
513         if [ -z "$TARGET_ARCHS" ] || echo "$TARGET_ARCHS" | grep "$arch" >/dev/null 2>/dev/null ; then
514             BUILD_ARCHS="$BUILD_ARCHS $arch"
515         fi
516     done
517     [ "$BUILD_ARCHS" ] || usage 1 "No available target archs to build."
518     echo "Building for: $BUILD_ARCHS"
519 }
520
521 tarflags()
522 {
523     case "$1" in
524         '')
525             fatal 1 "tarflags(): File name argument missing."
526             ;;
527         *.tar.gz | *.tgz)
528             echo 'zxf'
529             ;;
530         *.tar.bz2)
531             echo 'jxf'
532             ;;
533         *.tar)
534             echo 'xf'
535             ;;
536         *)
537             fatal 1 "tarflags(): Unrecognized tar extension in file: $1"
538             ;;
539     esac
540 }
541
542 untar()
543 {
544     echo "Untarring ${1##*/}..."
545     tar $(tarflags "$1") "$1"
546 }
547
548 unpack_ofed()
549 {
550     untar "$KERNELTREE/../OFED-${OFED_VERSION}.tgz"
551     [ -d OFED ] || ln -sf OFED-[0-9].[0-9]* OFED
552     pwd
553     ls -ld OFED OFED-[0-9].[0-9]*
554     ls -l OFED OFED-[0-9].[0-9]*
555 }
556
557 unpack_lustre()
558 {
559     DIRNAME="lustre-$TAG-$TIMESTAMP"
560     if [ "$LUSTRE" ] ; then
561         untar "$LUSTRE"
562         [ -d lustre ] || ln -sf lustre-[0-9].[0-9]* lustre
563     else
564         if [ "$USE_DATESTAMP" ]; then
565             DATESTAMP="-D '$DATE'"
566         else
567             DATESTAMP=""
568         fi            
569
570         cvs -d "$CVSROOT" -qz3 co $DATESTAMP -d "$DIRNAME" lustre || \
571             fatal 1 "There was an error checking out toplevel Lustre from CVS."
572         pushd "$DIRNAME" > /dev/null
573         ./lustrecvs "$TAG" || \
574             fatal 1 "There was an error checking out Lustre/Portals/Build from CVS."
575         echo "Creating lustre tarball..."
576         sh autogen.sh || fatal 1 "There was an error running autogen.sh."
577         ./configure --disable-{modules,utils,liblustre,tests,doc} || \
578             fatal 1 "There was an error running ./configure to create makefiles."
579         make dist || fatal 1 "There was an error running 'make dist'."
580         popd > /dev/null
581         fname=$(basename $DIRNAME/lustre-*.tar.gz)
582         cp $DIRNAME/$fname . || fatal 1 "There was an error copying lustre tarball."
583         LUSTRE="$PWD/$fname"
584         ln -sf "$DIRNAME" lustre
585     fi
586 }
587
588 unpack_linux()
589 {
590     untar "$KERNEL_FILE"
591     [ -d linux ] || ln -sf linux* linux
592 }
593
594 patch_linux()
595 {
596     [ "$SERIES" ] || return 0
597     FULL_PATCH="$PWD/lustre-kernel-${TARGET}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}.patch"
598     [ -f "$FULL_PATCH" ] && rm -f "$FULL_PATCH"
599     pushd linux >/dev/null
600     for series in $SERIES ; do
601         echo -n "Applying series $series:"
602         for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches" ; do
603             [ -r "$patchesdir/series/$series" ] || continue
604             SERIES_FILE="$patchesdir/series/$series"
605             for patch in $(<"$SERIES_FILE") ; do
606                 echo -n " $patch"
607                 PATCH_FILE="$patchesdir/patches/$patch"
608                 [ -r "$PATCH_FILE" ] || \
609                     fatal 1 "Patch $patch does not exist in Lustre tree."
610                 cat "$PATCH_FILE" >> "$FULL_PATCH" || \
611                     fatal 1 "Error adding patch $patch to full patch."
612                 patch -s -p1 < "$PATCH_FILE" || fatal 1 "Error applying patch $patch."
613             done
614             break
615         done
616         echo
617     done
618     popd >/dev/null
619     echo "Full patch has been saved in ${FULL_PATCH##*/}."
620     echo "Replacing .config files..."
621     [ -d linux/configs ] || mkdir linux/configs || \
622         fatal 1 "Error creating configs directory."
623     rm -f linux/configs/*
624     copysuccess=0
625     for patchesdir in "$EXTERNAL_PATCHES" "lustre/lustre/kernel_patches" ; do
626         [ "$patchesdir" ] && \
627             cp -v $patchesdir/kernel_configs/kernel-${VERSION}-${TARGET}*.config linux/configs/ >/dev/null && copysuccess=1
628     done
629     [ "$copysuccess" = "1" ] || \
630         fatal 1 "Error copying in kernel configs."
631 }
632
633 pack_linux()
634 {
635     TARBALL="$(readlink linux)-$EXTRA_VERSION.tar.gz"
636     echo "Creating patched linux tarball $TARBALL..."
637     tar zcf "$TARBALL" "$(readlink linux)" \
638         --exclude "CVS" --exclude ".cvsignore" || \
639         --exclude "*.orig" --exclude "*~" --exclude "*.rej" || \
640         fatal 1 "Error creating patched Linux tarball."
641 }
642
643 clean_linux()
644 {
645     [ -d linux ] || return 0
646     echo "Cleaning linux..."
647     [ -L linux ] && rm -rf $(readlink linux)
648     rm -rf linux
649 }
650
651 prep_kernel_build()
652 {
653     # make .spec file
654     ENABLE_INIT_SCRIPTS=""
655     sed \
656         -e "s^@BASE_ARCHS@^$BASE_ARCHS^g" \
657         -e "s^@BIGMEM_ARCHS@^$BIGMEM_ARCHS^g" \
658         -e "s^@BIGSMP_ARCHS@^$BIGSMP_ARCHS^g" \
659         -e "s^@BOOT_ARCHS@^$BOOT_ARCHS^g" \
660         -e "s^@CONFIGURE_FLAGS@^$CONFIGURE_FLAGS^g" \
661         -e "s^@ENABLE_INIT_SCRIPTS@^$ENABLE_INIT_SCRIPTS^g" \
662         -e "s^@JENSEN_ARCHS@^$BOOT_ARCHS^g" \
663         -e "s^@KERNEL_EXTRA_VERSION@^$EXTRA_VERSION^g" \
664         -e "s^@KERNEL_EXTRA_VERSION_DELIMITER@^$EXTRA_VERSION_DELIMITER^g" \
665         -e "s^@KERNEL_TARGET_DELIMITER@^$TARGET_DELIMITER^g" \
666         -e "s^@KERNEL_RELEASE@^${EXTRA_VERSION//-/_}^g" \
667         -e "s^@KERNEL_SOURCE@^$KERNEL^g" \
668         -e "s^@KERNEL_VERSION@^$VERSION^g" \
669         -e "s^@LINUX26@^$LINUX26^g" \
670         -e "s^@LUSTRE_SOURCE@^${LUSTRE##*/}^g" \
671         -e "s^@LUSTRE_TARGET@^$TARGET^g" \
672         -e "s^@PSERIES64_ARCHS@^$PSERIES64_ARCHS^g" \
673         -e "s^@RHBUILD@^$RHBUILD^g" \
674         -e "s^@SMP_ARCHS@^$SMP_ARCHS^g" \
675         -e "s^@SUSEBUILD@^$SUSEBUILD^g" \
676         -e "s^@UP_ARCHS@^$UP_ARCHS^g" \
677         < $TOPDIR/lustre/build/lustre-kernel-2.4.spec.in \
678         > lustre-kernel-2.4.spec
679     [ -d SRPMS ] || mkdir SRPMS
680     [ -d RPMS ] || mkdir RPMS
681     [ -d BUILD ] || mkdir BUILD
682     [ -d SOURCES ] || mkdir SOURCES
683     for script in linux-{rhconfig.h,merge-config.awk,merge-modules.awk} \
684         suse-{functions.sh,post.sh,postun.sh,trigger-script.sh.in} \
685         sles8-{pre,post,postun,update_{INITRD_MODULES,rcfile_setting}}.sh ; do
686         cp $TOPDIR/lustre/build/$script SOURCES
687     done
688     cp "$LUSTRE" "$KERNEL_FILE" SOURCES
689     if [ "$EXTERNAL_PATCHES" -a -d "$EXTERNAL_PATCHES" ] ; then
690         tar zcf SOURCES/external-patches.tar.gz -C "$EXTERNAL_PATCHES" series targets patches kernel_configs
691     else
692         touch SOURCES/external-patches.tar.gz
693     fi
694 }
695
696 clean_lustre()
697 {
698     [ -d lustre ] || return 0
699     echo "Cleaning Lustre..."
700     [ -L lustre ] && rm -rf $(readlink lustre)
701     rm -rf lustre
702 }
703
704 build_kernel()
705 {
706     echo "Building kernel + Lustre RPMs for: $BUILD_ARCHS..."
707     targets=
708     for arch in $BUILD_ARCHS ; do
709         targets="--target $arch $targets"
710     done
711
712     local rpmbuildopt='-bb'
713 #    if $NORPM; then
714 #        rpmbuildopt='-bc'
715 #        echo NORPM mode. Only compiling.
716 #        echo "XXX: need to fix lmake - add options to do rpmbuild -bc instead of -bb"
717 #    fi
718
719     $RPMBUILD $targets $rpmbuildopt lustre-kernel-2.4.spec \
720         --define "_tmppath $TMPDIR" \
721         --define "_topdir $TOPDIR" || \
722         fatal 1 "Error building rpms for $BUILD_ARCHS."
723
724     if (( $DO_SRC )) ; then
725         $RPMBUILD -bs lustre-kernel-2.4.spec \
726             --define "_tmppath $TMPDIR" \
727             --define "_topdir $TOPDIR" || \
728             fatal 1 "Error building .src.rpm."
729     fi
730
731     ( $(skeep_ldiskfs_rpm $TAG) ) && return
732
733     pushd $TOPDIR/BUILD/lustre*/ldiskfs || return 255
734     make dist
735     if [ "$?" != "0" ] ; then
736         popd
737         return 255
738     fi
739     cp lustre-ldiskfs*.tar.gz $TOPDIR/SOURCES
740
741     gen_lustre_version
742
743     local ldiskfs_spec=lustre-ldiskfs.spec
744     [ -f "$ldiskfs_spec" ] && sed \
745     -e "s^Release: .*$^Release: $LUSTRE_EXTRA_VERSION^" \
746     < $ldiskfs_spec \
747     > ../lustre-ldiskfs.spec
748
749     $RPMBUILD $targets $rpmbuildopt ../lustre-ldiskfs.spec \
750         --define "_tmppath /var/tmp" \
751         --define "_topdir $TOPDIR"
752     if [ "$?" != "0" ] ; then
753         popd
754         return 255
755     fi
756
757     if (( $DO_SRC )) ; then
758             $RPMBUILD -bs ../lustre-ldiskfs.spec \
759             --define "_tmppath /var/tmp" \
760             --define "_topdir $TOPDIR"
761         if [ "$?" != "0" ] ; then
762             popd
763             return 255
764         fi
765     fi
766     popd
767 }
768
769 build_lustre()
770 {
771     [ -d SRPMS ] || mkdir SRPMS
772     [ -d RPMS ] || mkdir RPMS
773     [ -d BUILD ] || mkdir BUILD
774     [ -d SOURCES ] || mkdir SOURCES
775
776     cp "$LUSTRE" SOURCES
777
778     pushd lustre >/dev/null
779
780     echo "Building Lustre RPMs for: $BUILD_ARCHS..."
781     targets=
782     for arch in $BUILD_ARCHS ; do
783         targets="--target $arch $targets"
784     done
785
786     local confoptions="--with-linux=${LINUX}"
787     if $PATCHLESS; then
788         confoptions="--with-linux=${LINUX} --disable-server"
789     fi
790     if [ ! "$LINUXOBJ" = "" ]; then
791         confoptions="$confoptions --with-linux-obj=${LINUXOBJ}" 
792     fi
793     
794     ./configure $confoptions ${CONFIGURE_FLAGS}
795     if [ "$?" != "0" ] ; then
796         local saved_config="../config.log.$(date +%s)"
797         cp config.log $saved_config
798         chmod a+r $saved_config
799         echo "Saved config.log is at $saved_config"
800         popd
801         return 255
802     fi
803
804     gen_lustre_version
805
806     # hack. Somebody move build/lustre.spec to lustre.spec for b1_6
807     local lustre_spec=
808     [ -f lustre.spec ] && lustre_spec=lustre.spec
809     [ -f build/lustre.spec ] && lustre_spec=build/lustre.spec
810
811     [ -f "$lustre_spec" ] && sed \
812         -e "s^Release: .*$^Release: $LUSTRE_EXTRA_VERSION^" \
813         < $lustre_spec \
814         > ../lustre.spec
815
816     local rpmbuildopt='-bb'
817     if $NORPM; then
818         rpmbuildopt='-bc'
819         echo NORPM mode. Only compiling.
820     fi
821
822     $RPMBUILD $targets $rpmbuildopt ../lustre.spec \
823         --define "_tmppath $TMPDIR" \
824         --define "_topdir $TOPDIR" || \
825         fatal 1 "Error building rpms for $BUILD_ARCHS."
826
827     popd >/dev/null
828     ( $(skeep_ldiskfs_rpm $TAG) ) && return
829
830     pushd lustre/ldiskfs || return 255
831     make dist
832     if [ "$?" != "0" ] ; then
833         popd
834         return 255
835     fi
836     cp lustre-ldiskfs*.tar.gz $TOPDIR/SOURCES
837
838     gen_lustre_version
839
840     local ldiskfs_spec=lustre-ldiskfs.spec
841     [ -f "$ldiskfs_spec" ] && sed \
842     -e "s^Release: .*$^Release: $LUSTRE_EXTRA_VERSION^" \
843     < $ldiskfs_spec \
844     > ../lustre-ldiskfs.spec
845
846     $RPMBUILD $targets $rpmbuildopt ../lustre-ldiskfs.spec \
847         --define "_tmppath /var/tmp" \
848         --define "_topdir $TOPDIR"
849     if [ "$?" != "0" ] ; then
850         popd
851         return 255
852     fi
853
854     if (( $DO_SRC )) ; then
855             $RPMBUILD -bs ../lustre-ldiskfs.spec \
856             --define "_tmppath /var/tmp" \
857             --define "_topdir $TOPDIR"
858         if [ "$?" != "0" ] ; then
859             popd
860             return 255
861         fi
862     fi
863     popd
864 }
865
866 stage()
867 {
868     [ "$STAGEDIR" ] || return 0
869
870     for arch in $BUILD_ARCHS ; do
871         rpmdir="${STAGEDIR}/${CANONICAL_TARGET}-${arch}"
872         echo "${0##*/}: Copying RPMs into ${rpmdir}"
873         mkdir -p "${rpmdir}"
874         cp -v RPMS/${arch}/*.rpm "${rpmdir}"
875         if [ -d RPMS/noarch ] ; then
876             cp -v RPMS/noarch/*.rpm "${rpmdir}"
877         fi
878     done
879
880     cp -v "$LUSTRE" "$STAGEDIR"
881 }
882
883 #check if we need to build separate ldiskfs RPM
884 skeep_ldiskfs_rpm()
885 {
886         local tag=$1
887         local skip=false
888         if ! $LDISKFSRPM; then
889             skip=true
890         elif $PATCHLESS; then
891             skip=true
892         else
893             for skiptag in $SKIPLDISKFSRPM; do
894                 [[ $tag == $skiptag ]] && skip=true && break
895             done
896         fi
897         echo $skip
898 }
899
900 #get date of last changed target/config/series/patches
901 get_last_source_date()
902 {
903     local filelist="${TOPDIR}/lustre/lustre/kernel_patches/series/${SERIES} \
904         $CONFIG_FILE"
905     local TOPDIRnew=$(echo ${TOPDIR} | sed -e s/\\//\\\\\\//g)
906     filelist="$filelist $( \
907         cat ${TOPDIR}/lustre/lustre/kernel_patches/series/${SERIES} | \
908         sed -e s/^/${TOPDIRnew}\\/lustre\\/lustre\\/kernel_patches\\/patches\\// 2>&1)"
909     local sourcelastdate=$( find ${filelist} -name CVS -prune -o \
910                 -type f -printf "%T@\n" 2>&1 | sort | tail -1 )
911     is_integer $sourcelastdate && echo $sourcelastdate
912 }
913
914 #check if variable is integer
915 is_integer()
916 {
917     local invariable=$1
918     [ "$invariable" = "" ] && return 255
919     local invariableint=$( echo $invariable | sed -e s/[^0-9]//g )
920     [ "$invariable" = "$invariableint" ] || return 255
921 }
922
923 #generate LUSTRE_EXTRA_VERSION from EXTRA_VERSION
924 gen_lustre_version()
925 {
926     local smptype=smp
927     [ "$KERNCONFSMPTYPE" = "" ] || smptype=$KERNCONFSMPTYPE
928     [ "$RPMSMPTYPE" = "" ] || smptype=$RPMSMPTYPE
929
930     LUSTRE_EXTRA_VERSION="${lnxmaj}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}${TARGET_DELIMITER}${smptype}"
931     LUSTRE_EXTRA_VERSION=${LUSTRE_EXTRA_VERSION//-/_}
932 }
933
934 #store RPMs and/or BUILD dir for future reuse
935 store_for_reuse()
936 {
937     local rpmonly=$1
938     if [ ! "$REUSEBUILD" = "" ] && [ -d  "/$REUSEBUILD/" ] ; then
939         [ -d "${REUSEBUILD}/${TIMESTAMP}" ] || mkdir "${REUSEBUILD}/${TIMESTAMP}"
940         [ -d "${REUSEBUILD}/${TIMESTAMP}" ] || return 255
941     else
942         return 255
943     fi
944
945     local lnxrelnew=${lnxrel//-/_}
946     local EXTRA_VERSIONnew=${EXTRA_VERSION//-/_}
947     local KERNELRPMnew=$(basename "$KERNELRPM")
948     if [ ! "$rpmonly" = "rpmonly" ]; then
949             local builddir=
950         if [ ! "$KERNELCOMPILEDIR" = "" ]; then
951             builddir="$KERNELCOMPILEDIR"
952         else
953             builddir="BUILD/lustre-kernel-${lnxmaj}/lustre/linux-${lnxmaj}"
954             [ "$KERNELCOMPILEDIR" = "" ] || builddir="$KERNELCOMPILEDIR"
955             [ -d "$builddir" ] || builddir="BUILD/lustre-kernel-${lnxmaj}/lustre/linux-${lnxmaj}.${lnxrel}"
956             [ -d "$builddir" ] || builddir="BUILD/lustre-kernel-${lnxmaj}/lustre/linux-${lnxmaj}-${lnxrel}"
957             if [ ! -d "$builddir" ]; then
958                 pushd "BUILD/lustre-kernel-${lnxmaj}/lustre/" || return 255
959                 local basebuilddir=$(ls -d linux-${lnxmaj}* | head -1)
960                 [ "$basebuilddir" = "" ] || builddir="BUILD/lustre-kernel-${lnxmaj}/lustre/${basebuilddir}"
961                 popd
962             fi
963         fi
964         [ -d "$builddir" ] || return 255
965         local dstdir="${REUSEBUILD}/${TIMESTAMP}/linux-${KERNCONFSMPTYPE}-${lnxmaj}-${EXTRA_VERSIONnew}.${TARGET_ARCH}"
966         ( $PATCHLESS ) && dstdir="${REUSEBUILD}/${TIMESTAMP}/linux-$KERNELRPMnew" && \
967                 dstdir="${dstdir%.rpm}"
968         [ -d "$dstdir" ] && rm -rf "$dstdir"
969         mv "${builddir}" "$dstdir" || return 255
970         if [ -n "$OFED_VERSION" ]; then
971             # move the OFED kernel-ib-devel tree as well
972             mv "${builddir%/*}/kernel-ib-devel/usr/src/ofa_kernel" "${dstdir%/*}" || return 255
973         fi
974     fi
975     #store kernel rpm
976     local kernelrpmname="kernel-lustre-${KERNCONFSMPTYPE}-${lnxmaj}-${EXTRA_VERSIONnew}.${TARGET_ARCH}.rpm"
977     [ -f "RPMS/${TARGET_ARCH}/${kernelrpmname}" ] || kernelrpmname="kernel-${KERNCONFSMPTYPE}-${lnxmaj}-${EXTRA_VERSNnew}.${TARGET_ARCH}.rpm"
978     ( $PATCHLESS ) && [ -f "$KERNELRPM" ] && kernelrpmname="$KERNELRPMnew"
979     if [ "$rpmonly" = "rpmonly" ] && [ -f "${REUSEBUILD}/${TIMESTAMP}/${kernelrpmname}" ]; then
980         echo "RPM already exist in store directory tree"
981     else
982         [ -f "RPMS/${TARGET_ARCH}/${kernelrpmname}" ] && cp -f "RPMS/${TARGET_ARCH}/${kernelrpmname}" "${REUSEBUILD}/${TIMESTAMP}/"
983     fi
984     #store kernel source rpm
985     kernelrpmname="kernel-lustre-source-${lnxmaj}-${EXTRA_VERSIONnew}.${TARGET_ARCH}.rpm"
986     [ -f "RPMS/${TARGET_ARCH}/${kernelrpmname}" ] || kernelrpmname="kernel-source-${lnxmaj}-${EXTRA_VERSIONnew}.${TARGET_ARCH}.rpm"
987     ( $PATCHLESS ) && [ -f "$KERNELSOURCERPM" ] && kernelrpmname=$(basename "$KERNELSOURCERPM")
988     if [ "$rpmonly" = "rpmonly" ] && [ -f "${REUSEBUILD}/${TIMESTAMP}/${kernelrpmname}" ]; then
989         echo "RPM already exist in store directory tree"
990     else
991             [ -f "RPMS/${TARGET_ARCH}/${kernelrpmname}" ] && cp -f "RPMS/${TARGET_ARCH}/${kernelrpmname}" "${REUSEBUILD}/${TIMESTAMP}/"
992     fi
993     if [ -n "$OFED_VERSION" ]; then
994         # store kernel-ib RPMs
995         local rpmname
996         for rpmname in "kernel-ib" "kernel-ib-devel"; do
997             rpmname="${rpmname}-${OFED_VERSION}"
998             if $PATCHLESS; then
999                 rpmname="${rpmname}-${LINUXRELEASE//-/_}"
1000             else
1001                 rpmname="${rpmname}-${lnxmaj}${EXTRA_VERSION_DELIMITER//-/_}${EXTRA_VERSIONnew}${TARGET_DELIMITER//-/_}${KERNCONFSMPTYPE}"
1002             fi
1003             rpmname="${rpmname}.${TARGET_ARCH}.rpm"
1004             if [ "$rpmonly" = "rpmonly" ] && [ -f "${REUSEBUILD}/${TIMESTAMP}/${rpmname}" ]; then
1005                 echo "RPM already exist in store directory tree"
1006             else
1007                 [ -f "RPMS/${TARGET_ARCH}/${rpmname}" ] && cp -f "RPMS/${TARGET_ARCH}/${rpmname}" "${REUSEBUILD}/${TIMESTAMP}/"
1008             fi
1009         done
1010     fi
1011 }
1012
1013 set_rpm_smp_type()
1014 {
1015     local infact_arch=${TARGET_ARCH}
1016     RPMSMPTYPE=default
1017     [ "$infact_arch" == "i586" ] && infact_arch="i686"
1018     for smp_type in $SMP_ARCHS; do
1019         [ $infact_arch == $smp_type ] && RPMSMPTYPE=smp && break
1020     done
1021     for smp_type in $BIGSMP_ARCHS; do
1022         [ $infact_arch == $smp_type ] && RPMSMPTYPE=bigsmp && break
1023     done
1024 }
1025
1026 #unpack kernel(/source/devel) RPM
1027 unpack_linux_rpm()
1028 {
1029     local prefix=$1
1030     local delimiter=${2:-"-"}
1031     local pathtorpms="${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
1032     local kernelbinaryrpm=
1033     [ -d $pathtorpms ] || return 255
1034     local rpmfile=
1035     local wanted_kernel="${lnxmaj}${delimiter}${lnxrel}"
1036     for arch in $TARGET_ARCHS_ALL; do
1037         for rpm in ${pathtorpms}/${arch}/*.rpm; do
1038             local provides=$(rpm -q --provides -p $rpm)
1039             if (echo $provides | grep -q "kernel${prefix} = $wanted_kernel"); then
1040                 KERNELRPM=$rpm
1041             fi
1042         done
1043         [ -f "$KERNELRPM" ] && TARGET_ARCH="$arch" && BUILD_ARCHS="$arch" && break
1044     done
1045
1046     # bleah
1047     set_rpm_smp_type
1048
1049     [ -f "$KERNELRPM" ] || return 255
1050     [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused
1051     pushd $TOPDIR/reused || return 255
1052     RC=0
1053     rpm2cpio < "$KERNELRPM" | cpio -idc > /dev/null 2>&1
1054     if [ ${PIPESTATUS[0]} -eq 0 ]; then
1055         # RHEL-style and SLES-style rpms
1056         local paths="kernels/${lnxmaj}${delimiter}${lnxrel}-${TARGET_ARCH} linux-${lnxmaj}${delimiter}${lnxrel}"
1057
1058         for path in $paths; do
1059             local src='usr/src'
1060
1061             if [ -d "$src/$path/" ]; then
1062                 LINUX="$(pwd)/$src/$path"
1063             fi
1064             # SLES has a separate -obj tree
1065             if [ -d "$src/${path}-obj" ]; then
1066                 src="$src/${path}-obj"
1067                 local objects="$TARGET_ARCH/$RPMSMPTYPE"
1068
1069                 # Novell, are you *TRYING* to make life hard for me?
1070                 if [ -d "$src/powerpc" ]; then
1071                     objects="powerpc/$TARGET_ARCH"
1072                 elif [ $TARGET_ARCH == 'i686' ]; then
1073                     objects="i386/$RPMSMPTYPE"
1074                 fi
1075
1076                 LINUXOBJ="$(pwd)/$src/$objects"
1077             fi
1078         done
1079         if [ -z "$LINUX" ]; then
1080             RC=255
1081         else
1082             # dig out the release version
1083             local LINUXRELEASEHEADER=version.h
1084             if test -s ${LINUXOBJ:-$LINUX}/include/linux/utsrelease.h ; then
1085                 LINUXRELEASEHEADER=utsrelease.h
1086             fi
1087             LINUXRELEASE=$(sed -ne 's/#define UTS_RELEASE "\(.*\)"$/\1/p' ${LINUXOBJ:-$LINUX}/include/linux/$LINUXRELEASEHEADER)
1088             if [ -z "$LINUXRELEASE" ]; then
1089                 echo "Failed to find linux release in ${LINUXOBJ:-$LINUX}/include/linux/$LINUXRELEASEHEADER"
1090                 RC=255
1091             fi
1092         fi
1093     else
1094         RC=255
1095     fi
1096     popd
1097     return $RC
1098 }
1099
1100 #look for kernel source RPM
1101 find_linux_source_rpm()
1102 {
1103     local rpmfile=
1104     local findarch=true
1105     local arch=
1106     local pathtorpms=
1107     [ ! "$TARGET_ARCH" = "" ] && arch=$TARGET_ARCH && findarch=false
1108     
1109     if ! $findarch; then
1110         pathtorpms="${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}/${arch}"
1111         [ -d $pathtorpms ] || return 255
1112         case "$DISTRO" in
1113             rhel4)
1114                 rpmfile="kernel-${lnxmaj}-${lnxrel}.src.rpm"
1115             ;;
1116             sles10)
1117                 rpmfile="kernel-source-${lnxmaj}.${lnxrel}.${arch}.rpm"
1118             ;;
1119             *)
1120                 rpmfile="kernel-source-${lnxmaj}-${lnxrel}.${arch}.rpm"
1121             ;;
1122         esac
1123         [ -f "${pathtorpms}/${rpmfile}" ] || return 255
1124         KERNELSOURCERPM="${pathtorpms}/${rpmfile}"
1125     else
1126         for arch in $TARGET_ARCHS_ALL; do
1127         pathtorpms="${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}/${arch}"
1128         [ -d $pathtorpms ] || continue
1129         case "$DISTRO" in
1130             rhel4)
1131                 rpmfile="kernel-${lnxmaj}-${lnxrel}.src.rpm"
1132             ;;
1133             sles10)
1134                 rpmfile="kernel-source-${lnxmaj}.${lnxrel}.${arch}.rpm"
1135             ;;
1136             *)
1137                 rpmfile="kernel-source-${lnxmaj}-${lnxrel}.${arch}.rpm"
1138             ;;
1139         esac
1140         [ -f "${pathtorpms}/${rpmfile}" ] || continue
1141         KERNELSOURCERPM="${pathtorpms}/${rpmfile}"
1142         TARGET_ARCH=${arch}
1143         break
1144         done
1145     fi
1146     [ -f "${KERNELSOURCERPM}" ] || return 255
1147 }
1148
1149 #unpack and make symlinks for reusing kernel RPM
1150 reuse_kernel_rpm()
1151 {
1152     local pathtorpm=$1
1153     local pathtokernelibrpm=$2
1154     [ "$pathtorpm" = "" ] && return 255
1155     [ -f "$pathtorpm" ] || return 255
1156     [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused
1157     pushd $TOPDIR/reused || return 255
1158
1159     rpm2cpio < $pathtorpm | cpio -idc
1160     [ ${PIPESTATUS[0]} -eq 0 ] || return 255
1161
1162     if [ -n "$pathtokernelibrpm" ] && [ -f "$pathtokernelibrpm" ]; then
1163         rpm2cpio < $pathtokernelibrpm | cpio -idc
1164         [ ${PIPESTATUS[0]} -eq 0 -o ${PIPESTATUS[1]} -eq 0 ] || return 255
1165         CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/ofa_kernel ${CONFIGURE_FLAGS}"
1166     fi
1167
1168     local smptype=
1169     if pushd usr/src/linux-*-obj/${TARGET_ARCH}; then
1170         local smptypes="$SMPTYPES"
1171         [ "$RPMSMPTYPE" = "" ] || smptypes=$RPMSMPTYPE
1172         ( ! $PATCHLESS ) && [ ! "$KERNCONFSMPTYPE" = "" ] && smptypes="$KERNCONFSMPTYPE"
1173         local cursmptype=
1174         for cursmptype in $smptypes; do
1175             [ "$cursmptype" = "''" ] && continue
1176             [ -d $cursmptype ] && smptype=$cursmptype
1177             [ -d $smptype ] && break
1178         done
1179         popd
1180     fi
1181     if [ "${smptype}" = "" ]; then
1182         popd
1183         return 255 # cannot detect smp type
1184     fi
1185     if pushd usr/src/linux-*-obj/${TARGET_ARCH}/$smptype/include2; then
1186         local base=$(readlink asm)
1187         if [ ! -d "/${base}/" ]; then
1188             rm -f asm
1189             base=$(basename "$base")
1190             if pushd ../../../../linux-*/include; then
1191                 local lsrc=$(pwd)
1192                 popd
1193                 [ -d "$lsrc/${base}" ] && ln -s $lsrc/${base} asm
1194             fi
1195         fi
1196         popd
1197         read a b < <(echo $(pwd)/usr/src/linux-*)
1198         if [[ $a == $(pwd)/* && $b = $(pwd)/* ]]; then
1199             cp -f $a/include/linux/config.h $b/${TARGET_ARCH}/$smptype/include/linux/
1200             cp $b/${TARGET_ARCH}/$smptype/.config $a/
1201             [ -f "$b/${TARGET_ARCH}/$smptype/.config" ] && KERNELRPMCONFIG="$b/${TARGET_ARCH}/$smptype/.config"
1202             cp $b/${TARGET_ARCH}/$smptype/.kernelrelease $a/
1203             [ -f "$b/${TARGET_ARCH}/$smptype/.kernelrelease" ] && KERNELRPMRELEASE="$b/${TARGET_ARCH}/$smptype/.kernelrelease"
1204             LINUX=$a
1205             LINUXOBJ=$b/${TARGET_ARCH}/$smptype
1206 #            local fname=$(basename $kernel_rpm)
1207 #            KERNELRPMSDIR=${kernel_rpm%$fname}
1208         fi
1209     fi
1210     popd
1211     [ "$LINUX" = "" ] && return 255
1212     [ -d "$LINUX" ] || return 255
1213 }
1214
1215 #build linux kernel rpm
1216 build_linux_rpm()
1217 {
1218     pushd $LINUX || return 255
1219     make binrpm-pkg || ( popd ; return 255 )
1220     local addlnxrel=
1221     [ -f ".version" ] && addlnxrel="-$(cat .version)"
1222     popd
1223     local arch=
1224     for arch in $TARGET_ARCHS_ALL; do
1225         [ -f "/usr/src/rpm/RPMS/$arch/kernel-$lnxmaj.${lnxrel}${addlnxrel}.$arch.rpm" ] && \
1226             KERNELRPM="/usr/src/rpm/RPMS/$arch/kernel-$lnxmaj.${lnxrel}${addlnxrel}.$arch.rpm" && \
1227             TARGET_ARCH="$arch"
1228         [ -f "/usr/src/packages/RPMS/$arch/kernel-$lnxmaj.${lnxrel}${addlnxrel}.$arch.rpm" ] && \
1229             KERNELRPM="/usr/src/packages/RPMS/$arch/kernel-$lnxmaj.${lnxrel}${addlnxrel}.$arch.rpm" && \
1230             TARGET_ARCH="$arch"
1231     done
1232     [ "$KERNELRPM" = "" ] || return
1233     return 255
1234 }
1235
1236 #build linux kernel
1237 build_linux()
1238 {
1239     local nofullmake=$1
1240     local nocopykernel=$2
1241     pushd $LINUX || fatal 1 "Kernel source not found"
1242     [ "$nofullmake" = "nofullmake" ] || make mrproper
1243     [ "$nofullmake" = "nofullmake" ] || rm -f rpm-release
1244 #    [ "$nocopykernel" = "copyrpmkernel" ] || rm -f localversion-*
1245     [ "$nocopykernel" = "copykernel" ] && [ -f "$CONFIG_FILE" ] && cp $CONFIG_FILE .config
1246     if [ "$nocopykernel" = "copyrpmkernel" ]; then
1247         [ -f "$KERNELRPMCONFIG" ] && cp $KERNELRPMCONFIG .config
1248         if [ -f "$KERNELRPMRELEASE" ]; then
1249             cp $KERNELRPMRELEASE .
1250         else
1251             sed -e "s/^EXTRAVERSION\s\+=\s\+.*$/EXTRAVERSION = -${lnxrel}/" < Makefile > Makefile.new
1252             [ -f "Makefile.new" ] && mv Makefile.new Makefile
1253         fi
1254     fi
1255     [ -f ".config" ] || ( popd ; echo "Cannot find .config file"; return 255 )
1256     make oldconfig || ( popd ; return 255 )
1257     make include/linux/version.h
1258     if [ ! "$nofullmake" = "nofullmake" ]; then
1259         make || ( popd ; return 255 )
1260     fi
1261     popd
1262     return
1263 }
1264
1265 build_kernel_ib()
1266 {
1267     # build kernel-ib{,-devel}
1268     # some I/B drivers are architecture dependent and kernel-ib's configure
1269     # does not figure it out for us ~sigh~
1270     local configure_options=""
1271     case "$TARGET_ARCH" in
1272         x86_64 | ia64)
1273             configure_options="--with-ipath_inf-mod"
1274             ;;
1275         ppc64)
1276             configure_options="--with-ipath_inf-mod --with-ehca-mod"
1277             ;;
1278     esac
1279     $RPMBUILD --rebuild --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
1280               --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1281               --define "KVERSION ${LINUXRELEASE}" \
1282               --define "KSRC ${LINUXOBJ:-${LINUX}}" \
1283               --define "LIB_MOD_DIR /lib/modules/${LINUXRELEASE}/updates" \
1284               --define "configure_options --without-quilt --with-core-mod --with-user_mad-mod --with-user_access-mod --with-addr_trans-mod --with-srp-target-mod --with-core-mod --with-mthca-mod --with-mlx4-mod --with-cxgb3-mod --with-nes-mod --with-ipoib-mod --with-sdp-mod --with-srp-mod --without-srp-target-mod --with-rds-mod --with-iser-mod --with-qlgc_vnic-mod --with-madeye-mod $configure_options" ${TOPDIR}/OFED/SRPMS/ofa_kernel-${OFED_VERSION}-ofed${OFED_VERSION}.src.rpm
1285
1286     if [ ${PIPESTATUS[0]} != 0 ]; then
1287         fatal 1 "Error building kernel-ib"
1288     fi
1289
1290     pushd "$TOPDIR" >/dev/null
1291     rm -rf kernel-ib-devel
1292     mkdir kernel-ib-devel
1293     cd kernel-ib-devel
1294     local rpm=$(ls $TOPDIR/RPMS/*/kernel-ib-devel-${OFED_VERSION}-${LINUXRELEASE//-/_}.*.rpm)
1295     rpm2cpio -itv < $rpm | cpio -id
1296     CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/ofa_kernel ${CONFIGURE_FLAGS}"
1297     popd >/dev/null
1298 }
1299
1300 #build patchless lustre
1301 patchless_build_sequence()
1302 {
1303     #try to build from kernel-devel RPM (RHEL)
1304     LINUX=
1305     TARGET_ARCH=
1306     local rpmfound=false
1307     local buildsuccess=false
1308     local storeforreuse=false
1309     if [ "$KERNELRPMSBASE" = "" ] || [ ! -d "$KERNELRPMSBASE" ]; then
1310         return 255
1311     fi
1312     [ -d $TOPDIR/reused ] && rm -rf $TOPDIR/reused
1313
1314     local delimiter=${EXTRA_VERSION_DELIMITER:-"-"}
1315     # default to source type -source and special case below
1316     local type=-source
1317     case "$DISTRO" in
1318         rhel*)
1319             type=-devel
1320             ;;
1321     esac
1322
1323     unpack_linux_rpm $type $delimiter && rpmfound=true
1324
1325     [ -d SRPMS ] || mkdir SRPMS
1326     [ -d RPMS ] || mkdir RPMS
1327     [ -d BUILD ] || mkdir BUILD
1328     [ -d SOURCES ] || mkdir SOURCES
1329
1330     # first build kernel-ib
1331     if [ -n "$OFED_VERSION" ]; then
1332         $rpmfound && build_kernel_ib
1333     fi
1334     ( $rpmfound ) && build_lustre && buildsuccess=true && find_linux_source_rpm
1335
1336     if $buildsuccess; then
1337         [ -d "RPMS/${TARGET_ARCH}" ] && [ -f "$KERNELRPM" ] && \
1338             cp "$KERNELRPM" RPMS/${TARGET_ARCH}/
1339         [ -d "RPMS/${TARGET_ARCH}" ] && [ -f "$KERNELSOURCERPM" ] && \
1340             cp "$KERNELSOURCERPM" RPMS/${TARGET_ARCH}/
1341         KERNELCOMPILEDIR="$LINUX"
1342         if $storeforreuse; then
1343             store_for_reuse || echo "Cannot store for future reuse"
1344         fi
1345
1346         return
1347     elif ! $rpmfound; then
1348         echo "COULD NOT FIND VENDOR -devel or -source RPM for $DISTRO/$TARGET_ARCH: $lnxmaj-$lnxrel in $KERNELRPMSBASE"
1349         return 255
1350     else
1351         echo "Patchless build failed."
1352         return 255
1353     fi
1354 }
1355
1356 #check timestamp value. should bi 14-digits string
1357 check_timestamp()
1358 {
1359     local invalue=$1
1360     local timestampnodig=$(echo $invalue | sed -e s/[0-9]*//g)
1361     [ "$timestampnodig" = "" ] || return 255
1362     local timestamplength="${#invalue}"
1363     [ $timestamplength -eq 14 ] || return 255
1364 }
1365
1366 # get list of suitable directories with potential reused staff
1367 get_reuse_dir_list()
1368 {
1369     local rpmonly=$1
1370     local reusedkernelmasknew=$2
1371     local buildtimestamp=
1372     local dirsforreuse=
1373     local sourcelastdate=$(get_last_source_date)
1374     for buildtimestamp in $(ls "$REUSEBUILD/" 2>&1); do
1375         [ -d "$REUSEBUILD/$buildtimestamp" ] || continue
1376         check_timestamp "$buildtimestamp" || continue
1377         local buildtimestampstr=$(echo $buildtimestamp | \
1378             sed -e "s^\(....\)\(..\)\(..\)\(..\)\(..\)\(..\)^\1-\2-\3 \4:\5:\6 GMT^g")
1379         local buildtimestampepoch=$(date --date="$buildtimestampstr"  +%s )
1380         #check for suitable date
1381             if ! $PATCHLESS; then
1382             [ $buildtimestampepoch -ge $sourcelastdate ] || continue
1383             fi
1384         #check for suitable version
1385         if [ "$rpmonly" = "rpmonly" ]; then
1386             local reusedkernelprefix="kernel-lustre-"
1387             ( $PATCHLESS ) && reusedkernelprefix=
1388             local rpmmask="${reusedkernelprefix}${REUSEDKERNELMASK}"
1389             [ "$reusedkernelmasknew" = "" ] || rpmmask="$reusedkernelmasknew"
1390             [ -f $REUSEBUILD/$buildtimestamp/${rpmmask}.rpm ] && \
1391                 dirsforreuse="$dirsforreuse $REUSEBUILD/$buildtimestamp"
1392         else
1393             local rpmmask="$REUSEDKERNELMASK"
1394             [ "$reusedkernelmasknew" = "" ] || rpmmask="$reusedkernelmasknew"
1395             pushd $REUSEBUILD/$buildtimestamp/linux-${rpmmask} > /dev/null 2>&1 || continue
1396             local curdir=$(pwd)
1397             dirsforreuse="$dirsforreuse $curdir"
1398             popd
1399         fi
1400     done
1401     echo "$dirsforreuse"
1402 }
1403
1404 #try to reuse old RPM
1405 build_sequence_rpm_reuse()
1406 {
1407     local sourcerpm=$1
1408     [ "$REUSERPM" = "" ] && [ "$REUSEBUILD" = "" ] && return 255
1409     local dirsforreuse=
1410     if ! [ "$REUSEBUILD" = "" ] && [ -d "$REUSEBUILD" ]; then #try to reuse RPM
1411         local REUSEDKERNELMASKnew=$(echo $REUSEDKERNELMASK | sed -e "s/^[^0-9]*//")
1412         REUSEDKERNELMASKnew="kernel-lustre-source-${REUSEDKERNELMASKnew}"
1413         local dirsforreuse="$(get_reuse_dir_list rpmonly $REUSEDKERNELMASKnew)"
1414         local buildsuccess=false
1415         LINUXOBJ=
1416         for curdir in $(echo $dirsforreuse); do
1417             [ -d "$curdir" ] || continue
1418             local reusedkernelprefix="kernel-lustre-"
1419             local reusedkernelrpm=
1420             [ -f ${curdir}/${reusedkernelprefix}${REUSEDKERNELMASK}.rpm ] && \
1421                 reusedkernelrpm=$(ls ${curdir}/${reusedkernelprefix}${REUSEDKERNELMASK}.rpm | head -1 )
1422             [ -f "$reusedkernelrpm" ] || continue
1423
1424             local reusedkernelsourcerpm=
1425             [ -f ${curdir}/${REUSEDKERNELMASKnew}.rpm ] && \
1426                 reusedkernelsourcerpm=$(ls ${curdir}/${REUSEDKERNELMASKnew}.rpm | head -1 )
1427             [ -f "$reusedkernelsourcerpm" ] || continue
1428
1429             # don't need to check for kernel-ib RPM reuse here because sles9 is not supported
1430             # by OFED >= 1.3.0 and this function appears to only be used for sles9
1431
1432             [ -d $TOPDIR/reused ] && rm -rf $TOPDIR/reused
1433             reuse_kernel_rpm "$reusedkernelsourcerpm" "" && build_linux nofullmake copyrpmkernel && build_lustre && buildsuccess=true
1434             ( $buildsuccess ) || continue
1435             if ( ! $NORPM ) && ( ! $PATCHLESS ) ; then
1436                 [ -f "$reusedkernelrpm" ] && \
1437                     cp -f  "$reusedkernelrpm"  RPMS/${TARGET_ARCH}/ > /dev/null 2>&1
1438  
1439                 [ -f "$reusedkernelsourcerpm" ] && \
1440                     cp -f  "$reusedkernelsourcerpm"  RPMS/${TARGET_ARCH}/ > /dev/null 2>&1 && \
1441                     touch RPMS/${TARGET_ARCH}/kernel_was_reused
1442             fi
1443             return
1444         done
1445     fi
1446     return 255
1447 }
1448
1449 #try to reuse old BUILD dir
1450 build_sequence_reuse()
1451 {
1452     local sourcerpm=$1
1453     [ "$REUSERPM" = "" ] && [ "$REUSEBUILD" = "" ] && return 255
1454     local dirsforreuse=
1455     if [ ! "$REUSEBUILD" = "" ] && [ -d "$REUSEBUILD" ]; then #try to reuse old kernel build directory
1456         local dirsforreuse="$(get_reuse_dir_list)"
1457         local buildsuccess=false
1458         LINUXOBJ=
1459         local REUSEDKERNELMASKnew=$(echo $REUSEDKERNELMASK | sed -e "s/^[^0-9]*//")
1460         for curdir in $(echo $dirsforreuse); do
1461             local reusedkernelrpm=
1462             local reusedkernelsourcerpm=
1463             local reusedkernelibrpm=
1464             [ -d "$curdir" ] || continue
1465             [ -n "$OFED_VERSION" -a ! -d "${curdir%/*}/ofa_kernel" ] && continue
1466             local reusedkernelprefix="kernel-lustre-"
1467             ( $PATCHLESS ) && reusedkernelprefix=
1468             [ -f ${curdir}/../${reusedkernelprefix}${REUSEDKERNELMASK}.rpm ] && \
1469                 reusedkernelrpm=$(ls ${curdir}/../${reusedkernelprefix}${REUSEDKERNELMASK}.rpm | head -1 )
1470             reusedkernelprefix="kernel-lustre-source-"
1471             [ -f ${curdir}/../${reusedkernelprefix}${REUSEDKERNELMASKnew}.rpm ] && \
1472                 reusedkernelsourcerpm=$(ls ${curdir}/../${reusedkernelprefix}${REUSEDKERNELMASKnew}.rpm | head -1 ) 
1473             if [ -n "$OFED_VERSION" ]; then
1474                 gen_lustre_version
1475                 reusedkernelprefix="kernel-ib-"
1476                 [ -f ${curdir}/../${reusedkernelprefix}${OFED_VERSION}-${LUSTRE_EXTRA_VERSION}.${TARGET_ARCH}.rpm ] && \
1477                     reusedkernelibrpm=$(ls ${curdir}/../${reusedkernelprefix}${OFED_VERSION}-${LUSTRE_EXTRA_VERSION}.${TARGET_ARCH}.rpm | head -1 ) 
1478                     reusedkernelibdevelrpm=$(ls ${curdir}/../${reusedkernelprefix}devel-${OFED_VERSION}-${LUSTRE_EXTRA_VERSION}.${TARGET_ARCH}.rpm | head -1 ) 
1479             fi
1480             if ! ( $NORPM ) && ! [ -f "$reusedkernelrpm" ]; then #kernel rpm not found. Build all
1481                 continue
1482             fi
1483             if ! ( $NORPM ) && ! [ -f "$reusedkernelsourcerpm" ]; then #kernel source rpm not found. Build all
1484                 continue
1485             fi
1486             if [ -n "$OFED_VERSION" ]; then
1487                 if ! ( $NORPM ) && [ ! -f "$reusedkernelibrpm" -o ! -f "$reusedkernelibdevelrpm"]; then #kernel-ib{,-devel} rpm not found. Build all
1488                     continue
1489                 fi
1490                 CONFIGURE_FLAGS="--with-o2ib=${curdir%/*}/ofa_kernel ${CONFIGURE_FLAGS}"
1491             fi
1492             LINUX="$curdir"
1493             build_lustre || continue
1494             touch "$curdir/../"
1495             buildsuccess=true
1496             if ( ! $NORPM ) && ( ! $PATCHLESS ) ; then
1497                 [ -f "$reusedkernelrpm" ] && \
1498                     cp -f  "$reusedkernelrpm"  RPMS/${TARGET_ARCH}/ > /dev/null 2>&1 && \
1499                     touch RPMS/${TARGET_ARCH}/kernel_was_reused
1500                 [ -f "$reusedkernelsourcerpm" ] && \
1501                     cp -f  "$reusedkernelsourcerpm"  RPMS/${TARGET_ARCH}/ > /dev/null 2>&1
1502                 [ -f "$reusedkernelibrpm" ] && \
1503                     cp -f  "$reusedkernelibrpm"  RPMS/${TARGET_ARCH}/ > /dev/null 2>&1
1504                     cp -f  "$reusedkernelibdevelrpm"  RPMS/${TARGET_ARCH}/ > /dev/null 2>&1
1505             fi
1506             return
1507         done
1508     fi
1509     return 255
1510 }
1511
1512
1513 build_sequence()
1514 {
1515     if (( $DO_SRC )) ; then
1516         unpack_linux
1517         patch_linux
1518         pack_linux
1519         clean_linux
1520     fi
1521     prep_kernel_build || return 255
1522     clean_lustre || return 255
1523
1524     build_kernel || return 255
1525 }
1526
1527 [ -r ~/.lbuildrc ] && . ~/.lbuildrc
1528
1529 options=$(getopt -o d:D:h -l kerneltree:,distro:,kernelrpm:,reusebuild:,patchless,ldiskfs,ccache,reuse:,norpm,disable-datestamp,external-patches:,timestamp:,extraversion:,kerneldir:,linux:,lustre:,nodownload,nosrc,publish,release,src,stage:,tag:,target:,target-archs:,with-linux: -- "$@")
1530
1531 if [ $? != 0 ] ; then
1532     usage 1
1533 fi
1534
1535 eval set -- "$options"
1536     
1537 while [ "$1" ] ; do
1538     case "$1" in
1539         '')
1540             usage 1
1541             ;;
1542         --ccache)
1543             CCACHE='ccache'
1544             shift
1545             ;;
1546         -d)
1547             CVSROOT=$2
1548             shift 2
1549             ;;
1550         -D)
1551             DATE=$2
1552             shift 2
1553             ;;
1554         --external-patches)
1555             EXTERNAL_PATCHES=$2
1556             shift 2
1557             ;;
1558         --extraversion)
1559             EXTRA_VERSION=$2
1560             shift 2
1561             ;;
1562         --help | -h)
1563             usage 0
1564             ;;
1565         --kerneldir)
1566             KERNELDIR=$2
1567             shift 2
1568             ;;
1569         --kerneltree)
1570             KERNELTREE=$2
1571             shift 2
1572             ;;
1573         --linux | --with-linux)
1574             LINUX=$2
1575             shift 2
1576             ;;
1577         --distro)
1578             DISTRO=$2
1579             shift 2
1580             ;;
1581         --reuserpm)
1582             REUSERPM=$2
1583             shift 2
1584             ;;
1585         --reusebuild)
1586             REUSEBUILD=$2
1587             shift 2
1588             ;;
1589         --norpm)
1590             NORPM=true
1591             shift
1592             ;;
1593         --ldiskfs)
1594             LDISKFSRPM=true
1595             shift
1596             ;;
1597         --patchless)
1598             PATCHLESS=true
1599             shift
1600             ;;
1601         --kernelrpm)
1602             KERNELRPMSBASE=$2
1603             shift 2
1604             ;;
1605         --timestamp)
1606             TIMESTAMP=$2
1607             shift 2
1608             ;;
1609         --lustre)
1610             LUSTRE=$2
1611             shift 2
1612             ;;
1613         --nodownload)
1614             DOWNLOAD=0
1615             shift 1
1616             ;;
1617         --nosrc)
1618             DO_SRC=0
1619             shift 1
1620             ;;
1621         --publish)
1622             shift
1623             ;;
1624         --release)
1625             RELEASE=true
1626             shift
1627             ;;
1628         --src)
1629             DO_SRC=1
1630             shift 1
1631             ;;
1632         --stage)
1633             STAGEDIR=$2
1634             shift 2
1635             ;;
1636         --tag)
1637             TAG=$2
1638             shift 2
1639             ;;
1640         --target)
1641             TARGET=$2
1642             shift 2
1643             ;;
1644         --target-archs)
1645             TARGET_ARCHS=$2
1646             shift 2
1647             ;;
1648         --disable-datestamp)
1649             USE_DATESTAMP=
1650             shift
1651             ;;
1652         --)
1653             shift
1654             CONFIGURE_FLAGS=$@
1655             CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-liblustre --enable-liblustre-tests"
1656             break
1657             ;; 
1658         *)
1659             usage 1 "Unrecognized option: $1"
1660             ;;
1661     esac
1662 done
1663
1664 check_options
1665
1666 unpack_lustre
1667
1668 load_target
1669 EXTRA_VERSION_DELIMITER=${EXTRA_VERSION_DELIMITER:-"-"}
1670
1671 if [ -n "$OFED_VERSION" ]; then
1672     unpack_ofed
1673 fi
1674
1675 build_success=false
1676 if $PATCHLESS; then
1677     patchless_build_sequence && build_success=true 
1678 elif [ -z "$LINUX" ] ; then
1679     [ "$DISTRO" = "sles9" ] && build_sequence_rpm_reuse && build_success=true
1680     if ! $build_success; then
1681         build_sequence_reuse && build_success=true
1682         if ! $build_success; then
1683             build_sequence && build_success=true
1684             if $build_success; then
1685                 store_for_reuse || echo "Cannot store for future reuse"
1686             fi
1687         fi
1688     fi
1689 else
1690     build_lustre && build_success=true
1691 fi
1692 ( $build_success ) || fatal 1 "Cannot build lustre"
1693
1694 stage