Whamcloud - gitweb
2babed67da537c3129b77f47e60da098c33f4d75
[fs/lustre-release.git] / build / lbuild
1 #!/bin/bash
2
3 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
4
5 # this is an alternative FD for stdout, to be used especially when we are
6 # taking stdout from a function as it's return value.  i.e. foo=$(bar)
7 # this is a workaround until a version of bash where we can put xtrace
8 # on a specific FD
9 exec 3>&1; STDOUT=3
10
11 #set -x
12 xtrace="+x"
13 if [[ $SHELLOPTS = *xtrace* ]]; then
14     xtrace="-x"
15 fi
16 shopt -s extdebug
17
18 # include the exit_traps library
19 . ${0%/lbuild}/exit_traps.sh
20
21 # our children should die when we do
22 push_exit_trap "kill -INT -$$ || true" kill_children
23
24 TOPDIR=$PWD
25
26 # CVSROOT is inherited from the environment
27 KERNELDIR=
28 LINUX=
29 LUSTRE=
30 RELEASE=false
31 # XXX - some recent hacking has pretty much neutered this option.
32 #       search through this file (and lbuild.old_school -- but that will
33 #       be going away soon) for "-bb" and see how many places
34 #       simply don't account for this option
35 DO_SRC=true
36 DOWNLOAD=true
37 TAG=
38 CANONICAL_TARGET=
39 TARGET=
40 TARGET_ARCH=$(uname -m)
41 TARGET_ARCHS=
42 TARGET_ARCHS_ALL=$TARGET_ARCH
43 [ "$TARGET_ARCH" = "i686" ] && TARGET_ARCHS_ALL="i686 i586 i386"
44 CONFIGURE_FLAGS=
45 EXTERNAL_PATCHES=
46 EXTRA_VERSION=
47 LUSTRE_EXTRA_VERSION=
48 STAGEDIR=
49 TMPDIR=${TMPDIR:-"/var/tmp"}
50 TIMESTAMP=
51 # this is a dir to try reuse old kernel RPMs in (although, it seems to be
52 # unused in any real manner
53 REUSERPM=
54 # this is the dir that should be used to store reuse products
55 REUSEBUILD=
56 # should cached products be used or force rebuilding?
57 USE_BUILD_CACHE=true
58 # what does this do exactly?  does it imply no kernel build?
59 NORPM=false
60 LDISKFSRPM=true
61 SKIPLDISKFSRPM="v1_4_* b1_4"
62 SMPTYPES="smp bigsmp default ''"
63 PATCHLESS=false
64 XEN=false
65 LINUXOBJ=
66 DISTRO=
67 KERNELTREE=
68 # default to not adding -lustre- into the kernel RPM package names
69 KERNEL_LUSTRE_NAMING=false
70
71 # patchless build
72 KERNELRPMSBASE=
73 RPMSMPTYPE=
74
75 # from target file
76 SERIES=
77 BASE_ARCHS=
78 BIGMEM_ARCHS=
79 BOOT_ARCHS=
80 JENSEN_ARCHS=
81 SMP_ARCHS=
82 BIGSMP_ARCHS=
83 PSERIES64_ARCHS=
84 UP_ARCHS=
85
86 # not in the target file any more
87 CONFIG=
88
89 # build the lustre-tests rpm?
90 LUSTRE_TESTS=true
91
92 # these are disabled by default, enabled with command line switches or by
93 # the calling environment
94 BUILD_MPTLINUX=${BUILD_MPTLINUX:-false}
95 BUILD_RDAC=${BUILD_RDAC:-false}
96
97 DATE=$(date)
98
99 USE_DATESTAMP=1
100 RPMBUILD=
101
102 OLD_SCHOOL=false
103
104 export CC=${CC:-gcc}
105
106 # Readlink is not present on some older distributions: emulate it.
107 readlink() {
108     local path=$1 ll
109
110     if [ -L "$path" ]; then
111         ll="$(LC_ALL=C ls -l "$path" 2> /dev/null)" &&
112         echo "${ll/* -> }"
113     else
114         return 1
115     fi
116 }
117
118 cleanup() {
119
120     true
121 }
122
123 error() {
124     local msg="$1"
125
126     [ -n "$msg" ] && echo -e "\n${0##*/}: $msg" >&3
127
128 }
129
130 fatal() {
131
132     cleanup
133     error "$2"
134     exit $1
135
136 }
137
138 usage() {
139     cat <<EOF
140 Usage: ${0##*/} [OPTION]... [-- <lustre configure options>]
141
142   -d CVSROOT
143     Specifies the CVS Root to use when pulling files from CVS.  The
144     environment variable \$CVSROOT is used if this option is not
145     present.
146
147   --external-patches=EXTERNAL_PATCHES
148     Directory similar to lustre/lustre/kernel_patches/ that lbuild should
149     look for seres and config files in before looking in the lustre
150     tree.
151
152   --extraversion=EXTRAVERSION
153     Text to use for the rpm release and kernel extraversion.
154
155   --timestamp=TIMESTAMP
156     Date of building lustre in format YYYYMMDDhhmmss
157
158   --reuserpm=DIR
159     Try to reuse old kernel RPMs from DIR
160
161   --reusebuild=DIR
162     Try to reuse old kernel builds from DIR
163
164   --kernelrpm=DIR
165     Path to distro kernel RPM collection
166
167   --ccache
168     Use ccache
169
170   --norpm
171     Do not build RPMs (compile only mode)
172
173   --patchless
174     Build lustre client only
175
176   --distro=DISTRO
177     Which distro using. Autodetect by default
178
179   --kerneldir=KERNELDIR
180     Directory containing Linux source tarballs referenced by target
181     files.
182
183   --kerneltree=KERNELTREE
184     Directory containing dirs with Linux source tarballs referenced by target
185     files. Dir names in format kernel version ('2.6.9', etc.)
186
187   --linux=LINUX --with-linux=LINUX
188     Directory of Linux kernel sources.  When this option is used, only
189     Lustre modules and userspace are built.
190
191   --lustre=LUSTRE
192     Path to an existing lustre source tarball to use instead of
193     pulling from CVS.
194
195   --nodownload
196     Do not try to download a kernel from downloads.lustre.org
197
198   --nosrc
199     Do not build a .src.rpm, a full kernel patch, or a patched kernel
200     tarball.
201
202   --ldiskfs
203     Do ldiskfs RPM. Now true by default
204
205   --publish
206     Unused.
207
208   --release
209     Specifies that the files generated do not include timestamps, and
210     that this is an official release.
211
212   --src
213     Build a .src.rpm, a full kernel patch, and a patched kernel tarball.
214
215   --stage=DIR
216     Directory used to stage packages for release.  RPMs will be placed
217     more or less in DIR/<target>-<arch>, and the tarball will be
218     placed in DIR.
219
220   --tag=TAG
221     A CVS branch/tag name to build from when pulling from CVS.
222
223   --target=TARGET
224     The name of the target to build.  The available targets are listed
225     below.
226
227   --target-archs=TARGET_ARCHS
228     A (space delimited) list of architectures to build.  By default,
229     all of the archs supported by the TARGET will be built, in
230     addition to a .src.rpm.  This option can limit those, for machines
231     that can only build certain archs or if you only want a certain
232     arch built (for testing, or a one-off kernel).
233
234     Also note that by using a non-"base" arch (eg, i386) only kernels
235     will be built - there will be no lustre-lite-utils package.
236
237   --disable-datestamp
238     Prevents the datestamp flag (-D) from being passed to cvs for
239     checkouts. This is a workaround for a problem encountered when
240     using lbuild with tinderbox.
241
242   --xen
243     Builds a Xen domX kernel.
244
245   --enable-mptlinux
246     Enables the building of MPTLINUX with the same kernel Lustre is
247     built with.
248
249   --enable-rdac
250     Enables the building of MPTLINUX with the same kernel Lustre is
251     built with.
252
253   --set-value
254     Set's a variable to a given value.
255
256 EOF
257
258 #   list_targets
259
260     fatal "$1" "$2"
261 }
262
263 # canonicalize a relative path
264 canon_path() {
265     local PATH="$1"
266
267     if [ ! -d "$PATH" ]; then
268         return 1
269     fi
270
271     pushd "$PATH" >/dev/null || return 1
272     local CANONPATH=$PWD
273     popd >/dev/null
274
275     echo "$CANONPATH"
276     return 0
277 }
278
279 check_options() {
280
281     if [ "$LUSTRE" ]; then
282         [ -r "$LUSTRE" ] || \
283             usage 1 "Could not find Lustre source tarball '$LUSTRE'."
284     else
285         [ "$CVSROOT" ] || \
286             usage 1 "Either specify a CVS Root with -d, or a Lustre source tarball with --lustre."
287         [ "$TAG" ] || \
288             usage 1 "A branch/tag name must be specified with --tag when not building from a tarball."
289     fi
290
291     if [ -z "$LINUX" ]; then
292         [ "$KERNELDIR" -o "$KERNELTREE" ] || \
293             usage 1 "A kernel directory must be specified with --kerneldir or --kerneltree."
294
295         [ -d "$KERNELDIR" -o -d "$KERNELTREE" ] || \
296             usage 1 "$KERNELDIR and $KERNELTREE are not a directory."
297
298         if ! $RELEASE; then
299             [ "$TAG" ] || \
300                 usage 1 "When building a snapshot, a tag name must be used."
301         fi
302
303         [ "$TARGET" ] || usage 1 "A target must be specified with --target."
304 #       TARGET_FILE="$TOPDIR/lustre/kernel_patches/targets/$TARGET.target"
305 #       [ -r "$TARGET_FILE" ] || \
306 #               usage 1 "Target '$TARGET' was not found."
307     fi
308
309     case $TARGET in
310         2.6-rhel5)
311             CANONICAL_TARGET="rhel5"
312             ;;
313         2.6-rhel4)
314             CANONICAL_TARGET="rhel-2.6"
315             ;;
316         2.6-suse)
317             CANONICAL_TARGET="sles-2.6"
318             ;;
319         2.6-sles10)
320             CANONICAL_TARGET="sles10-2.6"
321             ;;
322         2.6-sles11)
323             CANONICAL_TARGET="sles11"
324             ;;
325         2.6-oel5)
326             CANONICAL_TARGET="oel5"
327             ;;
328         hp_pnnl-2.4)
329             CANONICAL_TARGET="hp-pnnl-2.4"
330             ;;
331         2.6-vanilla \
332             | suse-2.4.21-2 \
333             | rh-2.4 \
334             | rhel-2.4 \
335             | sles-2.4 \
336             | 2.6-patchless)
337                 CANONICAL_TARGET="$TARGET"
338                 ;;
339     esac
340
341     local timestampnodig=$(echo $TIMESTAMP | sed -e s/[0-9]*//g)
342     [ "$timestampnodig" = "" ] || TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
343     local timestamplength="${#TIMESTAMP}"
344     if [ $timestamplength -eq 12 ]; then
345         TIMESTAMP="${TIMESTAMP}00"
346     elif [ $timestamplength -ne 14 ]; then
347         TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
348     fi
349
350     RPMBUILD=$(which rpmbuild 2>/dev/null | head -1)
351     if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
352         RPMBUILD=$(which rpm 2>/dev/null | head -1)
353         if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
354             usage 1 "Could not find binary for making rpms (tried rpmbuild and rpm)."
355         fi
356     fi
357
358     if [ -n "$CCACHE" ]; then
359         which "$DISTCC" &>/dev/null && export DISTCC RPM_BUILD_NCPUS
360
361         if which "$CCACHE" &>/dev/null; then
362             local ccache=$(which "$CCACHE")
363             local bindir="$TOPDIR/bin"
364
365             if [ ! -d $bindir ]; then
366                 mkdir -p $bindir || fatal 1 "error trying to create $bindir"
367             else
368                 rm ${bindir}/* > /dev/null 2>&1 || true
369             fi
370             ln -s "$ccache" ${bindir}/ccache
371             ln -s "$ccache" ${bindir}/cc
372             ln -s "$ccache" ${bindir}/$CC
373             export PATH=$bindir:$PATH
374             export CCACHE && export CC="ccache $CC"
375             # zero the cache so we can see how effective we are being with it
376             echo -n "ccache "
377             ccache -z
378
379             # get some ccache stats when we are done
380             push_exit_trap '[ -n "$CCACHE" ] && ccache -s' "ccache_summary"
381             # should remove the ccache trap if lbuild is interrupted
382             trap 'echo "Received an INT TERM or HUP signal, terminating."; delete_exit_trap "ccache_summary"; exit 1' INT TERM HUP
383         fi
384     fi
385
386     [ -z "$DISTRO" ] && DISTRO=$(autodetect_distro)
387
388     return 0
389
390 }
391
392 # autodetect used Distro
393 autodetect_distro() {
394
395     local name
396     local version
397
398     if [ -f /etc/SuSE-release ]; then
399         name=sles
400         version=$(grep ^VERSION /etc/SuSE-release)
401         version=${version#*= }
402     elif [ -f /etc/redhat-release ]; then
403         name=$(head -1 /etc/redhat-release)
404         version=$(echo "$distroname" |
405                   sed -e 's/^[^0-9.]*//g' | sed -e 's/[ \.].*//')
406     fi
407     if [ -z "$name" -o -z "$version" ]; then
408         fatal 1 "I don't know how to determine distro type/version.\nEither update autodetect_distro() or use the --distro argument"
409     fi
410
411     echo ${name}${version}
412     return 0
413
414 }
415
416 uniqify() {
417
418     echo $(echo "$*" | xargs -n 1 | sort -u)
419
420 }
421
422 download_srpm() {
423     local target=$1
424     local srpm=$2
425     local force="${3:-false}"
426
427     if $force || [ ! -r "$KERNELDIR/$srpm" ] ||
428        [ ! -s "$KERNELDIR/$srpm" ]; then
429         if $DOWNLOAD; then
430             local location="http://downloads.lustre.org/public/kernels/$target/old"
431             echo "Downloading $location/$srpm..."
432             if ! wget -nv "$location/$srpm" -O "$KERNELDIR/$srpm" 2>&1 ||
433                [ ! -s "$KERNELDIR/$srpm" ]; then
434                 rm -f $KERNELDIR/$srpm
435                 fatal 1 "Could not download target $target's kernel SRPM $srpm from $location."
436             fi
437         else
438             fatal 1 "$srpm not found in directory $KERNELDIR."
439         fi
440     fi
441
442 }
443
444 download_file() {
445     local from="$1"
446     local to="$2"
447     local force="$3"
448
449     local file=${from##*/}
450
451     if [ -d $to ]; then
452         to="$to/$file"
453     fi
454
455     local semaphore="$to-downloading"
456
457     is_downloading() {
458         if [ ! -f $semaphore ]; then
459             return 1
460         fi
461
462         # make sure the download has not been aborted
463         local now=$(date +%s)
464         local file_mtime=$(stat -c %Y "$to")
465         local staleness=$((now - file_mtime))
466         # let's assume an active download will write at least once a minute
467         if [ $staleness -gt 60 ]; then
468             return 1
469         fi
470
471         return 0
472     }
473
474     is_downloaded() {
475         # if the semaphore file exists, the file is either still downloading
476         # or a download was aborted and we cannot trust the target file
477         if [ -f $semaphore ]; then
478             return 1
479         fi
480
481         if ! is_downloading && [ -r "$to" ] && [ -s "$to" ]; then
482             return 0
483         fi
484
485         return 1
486     }
487
488     if $force || ! is_downloaded; then
489         if is_downloading; then
490             echo "Somebody else is downloading $from..."
491             while is_downloading; do
492                 echo "Waiting for $to to finish downloading"
493                 sleep 60
494             done
495             if is_downloaded; then
496                 return 0
497             else
498                 echo "The download we were waiting for seems to have been aborted"
499             fi
500
501         fi
502
503         if $DOWNLOAD; then
504             echo "Downloading $from..."
505             # flag others so they don't try to download also
506             push_exit_trap "rm -f $to $semaphore" "download"
507             touch $semaphore
508             if ! wget -nv "$from" -O "$to" || [ ! -s "$to" ]; then
509                 # the trap will remove the files via the fatal below
510                 fatal 1 "Could not download ${to##*/} from ${from%/*}/."
511             fi
512             rm -f $semaphore
513             delete_exit_trap "download"
514         else
515             fatal 1 "${to##*/} not found in directory ${to%/*}."
516         fi
517     fi
518
519     return 0
520
521 }
522
523 download_ofed() {
524     local force="${1:-false}"
525
526     local location="http://downloads.lustre.org/public/OFED/"
527
528     local Mmv daily
529     if [[ $OFED_VERSION = daily-* ]]; then
530         OFED_VERSION=${OFED_VERSION/daily-/}
531         Mmv=${OFED_VERSION%%-*}
532         daily=${OFED_VERSION##$Mmv-}
533         location="http://www.openfabrics.org/downloads/OFED/ofed-${Mmv}-daily/"
534         # find the filename for the version for the date specified
535         OFED_VERSION=$(curl -s "$location" | sed -nre "/${daily}-/s/.*href=\"OFED-(${Mmv//./\\.}-${daily}-[0-9]{4,4}).tgz.*$/\1/p" | tail -1)
536         if [ -z "$OFED_VERSION" ]; then
537             fatal 1 "Could not determine the filename of the OFED snapshot for ${daily}"
538         fi
539     fi
540
541     if [ -z "$OFED_VERSION" -o "$OFED_VERSION" = "inkernel" ]; then
542         return 0
543     fi
544
545     local file="OFED-${OFED_VERSION}.tgz"
546     download_file "$location/$file" "$KERNELTREE" "$force"
547
548 }
549
550 load_target() {
551
552     EXTRA_VERSION_save="$EXTRA_VERSION"
553     for patchesdir in "$EXTERNAL_PATCHES" \
554                       "$TOPDIR/lustre/lustre/kernel_patches"; do
555         TARGET_FILE="$patchesdir/targets/$TARGET.target"
556         [ -r "$TARGET_FILE" ] && break
557     done
558     [ -r "$TARGET_FILE" ] || fatal 1 "Target $TARGET was not found."
559
560     echo "Loading target config file $TARGET.target..."
561
562     # if the caller specified an OFED_VERSION it should override whatever
563     # the target file specifies
564     local env_OFED_VERSION="$OFED_VERSION"
565
566     . "$TARGET_FILE"
567
568     if [ -n "$env_OFED_VERSION" ]; then
569         OFED_VERSION="$env_OFED_VERSION"
570     fi
571
572     # doesn't make any sense to build OFED for xen domX's
573     if $XEN; then
574         OFED_VERSION=""
575     fi
576
577     # XXX - set_rpm_smp_type is an ugly undeterministic hack.  it needs to
578     #       go away and the target just specify the $RPMSMPTYPE
579     [ -z "$RPMSMPTYPE" ] && set_rpm_smp_type
580
581     # CC might have been overwriten in TARGET_FILE
582     if [[ $CC != ccache\ * ]] && which "$CCACHE" &>/dev/null; then
583         export CCACHE && export CC="ccache $CC"
584     fi
585
586     if [ ! "$KERNELTREE" = "" ] && [ -d "$KERNELTREE" ]; then
587         KERNELDIR="$KERNELTREE/${lnxmaj}"
588         [ -d "$KERNELDIR" ] || mkdir "$KERNELDIR"
589     fi
590
591     # verify the series is available
592     if [ "$SERIES" ]; then
593         for series in $SERIES; do
594             for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
595                 [ -r "$patchesdir/series/$series" ] && continue 2
596             done
597             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."
598         done
599     fi
600
601     # set the location of the .config file
602     local XENPOSTFIX=""
603     if $XEN; then
604         XENPOSTFIX="-xen"
605     fi
606
607     if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH.config ]; then
608         CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET$XENPOSTFIX-$TARGET_ARCH${RPMSMPTYPE:+-}${RPMSMPTYPE}.config"
609     fi
610
611     local lnxrelnew=${lnxrel//-/_}
612
613     # remember the EXTRA_VERSION before we diddle it here
614     # XXX - we really should not diddle with any values read in from the
615     #       target file.  if we want to modify a value, we should create
616     #       a new variable.
617     PRISTINE_EXTRA_VERSION=$EXTRA_VERSION
618
619     if ! $PATCHLESS && [ ! -f "$CONFIG_FILE" ]; then
620         fatal 1 "Config file for target $TARGET missing from $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/."
621     fi
622
623     if [ "$EXTRA_VERSION_save" ]; then
624         EXTRA_VERSION="$EXTRA_VERSION_save"
625     elif ! $RELEASE; then
626         # if there is no patch series, then this is not a lustre specific
627         # kernel.  don't make it look like one
628         if $PATCHLESS || [ -n "$SERIES" ]; then
629             EXTRA_VERSION=$(echo $EXTRA_VERSION | sed -e "s/\(.*_lustre\)\..*/\1/")
630 #            EXTRA_VERSION="${EXTRA_VERSION}-${TAG}.${TIMESTAMP}"
631             EXTRA_VERSION="${EXTRA_VERSION}.${TIMESTAMP}"
632         fi
633     fi
634     # EXTRA_VERSION=${EXTRA_VERSION//-/_}
635
636     ALL_ARCHS="$BASE_ARCHS $BIGMEM_ARCHS $BOOT_ARCHS $JENSEN_ARCHS $SMP_ARCHS $BIGSMP_ARCHS $PSERIES64_ARCHS $UP_ARCHS"
637
638     BUILD_ARCHS=
639     for arch in $(uniqify "$ALL_ARCHS"); do
640         if [ -z "$TARGET_ARCHS" ] ||
641            [[ \ $TARGET_ARCHS\  = *\ $arch\ * ]]; then
642             BUILD_ARCHS="$BUILD_ARCHS $arch"
643         fi
644     done
645     [ "$BUILD_ARCHS" ] || usage 1 "No available target archs to build."
646     echo "Building for: $BUILD_ARCHS"
647 }
648
649 tarflags() {
650     local file="$1"
651
652     case "$file" in
653         '')
654             fatal 1 "tarflags(): File name argument missing."
655             ;;
656         *.tar.gz | *.tgz)
657             echo 'zxf'
658             ;;
659         *.tar.bz2)
660             echo 'jxf'
661             ;;
662         *.tar)
663             echo 'xf'
664             ;;
665         *)
666             fatal 1 "tarflags(): Unrecognized tar extension in file: $1"
667             ;;
668     esac
669
670 }
671
672 untar() {
673     local tarfile="$1"
674     shift
675     local extractfile="$@"
676
677     echo "Untarring ${tarfile##*/}..."
678     tar $(tarflags "$tarfile") "$tarfile" $extractfile
679
680 }
681
682 unpack_ofed() {
683
684     if ! untar "$KERNELTREE/OFED-${OFED_VERSION}.tgz"; then
685         return 1
686     fi
687     [ -d OFED ] || ln -sf OFED-[0-9].[0-9]* OFED
688
689 }
690
691 unpack_rdac() {
692
693     if ! untar "$KERNELTREE/rdac-LINUX-${RDAC_VERSION}-source.tar.gz"; then
694         return 1
695     fi
696     [ -d rdac-LINUX ] || ln -sf rdac-LINUX-[0-9][0-9].* rdac-LINUX
697
698 }
699
700 unpack_mptlinux() {
701
702     if ! untar $KERNELTREE/SUN_MPTLINUX_RHEL5_PH16-${MPTLINUX_VERSION}.tar.gz pkg1-rhel5/srpms-1/mptlinux-${MPTLINUX_VERSION}-1.src.rpm; then
703         return 1
704     fi
705     mv pkg1-rhel5/srpms-1/mptlinux-${MPTLINUX_VERSION}-1.src.rpm .
706
707 }
708
709 unpack_lustre() {
710
711     if [ -z "$LUSTRE" ]; then
712         local DATESTAMP=""
713
714         if [ -n "$USE_DATESTAMP" ]; then
715             DATESTAMP="-D '$DATE'"
716         fi
717
718         local DIRNAME="lustre-$TAG-$TIMESTAMP"
719
720         cvs -d "$CVSROOT" -qz3 co $DATESTAMP -d "$DIRNAME" lustre || \
721             fatal 1 "There was an error checking out toplevel Lustre from CVS."
722         pushd "$DIRNAME" > /dev/null
723         ./lustrecvs "$TAG" || \
724             fatal 1 "There was an error checking out Lustre/Portals/Build from CVS."
725         echo "Creating lustre tarball..."
726         sh autogen.sh || fatal 1 "There was an error running autogen.sh."
727         ./configure --disable-{modules,utils,liblustre,tests,doc} || \
728             fatal 1 "There was an error running ./configure to create makefiles."
729         make dist || fatal 1 "There was an error running 'make dist'."
730         LUSTRE=$PWD/lustre-*.tar.gz
731         popd > /dev/null
732     fi
733
734     untar "$LUSTRE" || fatal 1 "Error unpacking Lustre tarball"
735     [ -d lustre ] || ln -sf lustre-[0-9].[0-9]* lustre
736
737 }
738
739 do_patch_linux() {
740
741     local do_patch=${1:-true}
742
743     FULL_PATCH="$PWD/lustre-kernel-${TARGET}-${EXTRA_VERSION}.patch"
744     [ -f "$FULL_PATCH" ] && rm -f "$FULL_PATCH"
745     $do_patch && pushd linux >/dev/null
746     for series in $SERIES; do
747         echo -n "Applying series $series:"
748         for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
749             [ -r "$patchesdir/series/$series" ] || continue
750             SERIES_FILE="$patchesdir/series/$series"
751             for patch in $(<"$SERIES_FILE"); do
752                 echo -n " $patch"
753                 PATCH_FILE="$patchesdir/patches/$patch"
754                 [ -r "$PATCH_FILE" ] || \
755                     fatal 1 "Patch $patch does not exist in Lustre tree."
756                 cat "$PATCH_FILE" >> "$FULL_PATCH" || {
757                     rm -f $FULL_PATCH
758                     fatal 1 "Error adding patch $patch to full patch."
759                 }
760                 if $do_patch; then
761                     patch -s -p1 < "$PATCH_FILE" 2>&1 || {
762                         rm -f $FULL_PATCH
763                         fatal 1 "Error applying patch $patch."
764                     }
765                 fi
766             done
767             break
768         done
769         echo
770     done
771     $do_patch && popd >/dev/null
772     echo "Full patch has been saved in ${FULL_PATCH##*/}."
773
774 }
775
776 build_lustre() {
777     local linux="$1"
778     local linuxobj="$2"
779
780     cp "$LUSTRE" SOURCES
781
782     pushd lustre >/dev/null
783
784     echo "Building Lustre RPMs for: $BUILD_ARCHS..."
785     local targets arch
786     for arch in $BUILD_ARCHS; do
787         targets="--target $arch $targets"
788     done
789
790     local confoptions="--with-linux=${linux}"
791     if $PATCHLESS; then
792         confoptions="--with-linux=${linux} --disable-server"
793     fi
794     if [ "$linuxobj" != "" ]; then
795         confoptions="$confoptions --with-linux-obj=${linuxobj}"
796     fi
797
798     ./configure $confoptions ${CONFIGURE_FLAGS} 2>&1
799     if [ "$?" != "0" ]; then
800         local saved_config="../config.log.$(date +%s)"
801         cp config.log $saved_config
802         chmod a+r $saved_config
803         echo "Saved config.log is at $saved_config"
804         cat /proc/mounts
805         ls -l /proc/$$
806         pwd
807         echo "config.log contents:"
808         cat config.log
809         popd
810         return 255
811     fi
812
813     gen_lustre_version
814
815     # hack. Somebody move build/lustre.spec to lustre.spec for b1_6
816     local lustre_spec
817     [ -f lustre.spec ] && lustre_spec=lustre.spec
818     [ -f build/lustre.spec ] && lustre_spec=build/lustre.spec
819
820     [ -f "$lustre_spec" ] && sed \
821         -e "s^Release: .*$^Release: $LUSTRE_EXTRA_VERSION^" \
822         < $lustre_spec \
823         > ../lustre.spec
824
825     local rpmbuildopt='-bb'
826     if $NORPM; then
827         rpmbuildopt='-bc'
828         echo NORPM mode. Only compiling.
829     fi
830
831     # convert the $PATCHLESS boolean to an empty/not-empty boolean
832     # as silly as this seems, it makes the syntax of the rpmbuild command
833     # simpler and not need an eval to deal with the quotes in the quotes
834     local is_patchless=""
835     if $PATCHLESS; then
836         is_patchless="yes"
837     fi
838
839     # ditto for the lustre-tests boolean
840     local lustre_tests=""
841     if ! $LUSTRE_TESTS; then
842         lustre_tests="no"
843     fi
844
845     $RPMBUILD $targets $rpmbuildopt ../lustre.spec \
846         ${is_patchless:+--define "lustre_name lustre-client"} \
847         ${lustre_tests:+--define "build_lustre_tests 0"} \
848         ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
849         --define "configure_args $confoptions ${CONFIGURE_FLAGS}" \
850         --define "_tmppath $TMPDIR" \
851         --define "_topdir $TOPDIR" 2>&1 || \
852         fatal 1 "Error building rpms for $BUILD_ARCHS."
853
854     popd >/dev/null
855     ( $(skeep_ldiskfs_rpm $TAG) ) && return
856
857     pushd lustre/ldiskfs || return 255
858     make dist 2>&1
859     if [ "$?" != "0" ]; then
860         popd
861         return 255
862     fi
863     cp lustre-ldiskfs*.tar.gz $TOPDIR/SOURCES
864
865     gen_lustre_version
866
867     local ldiskfs_spec=lustre-ldiskfs.spec
868     [ -f "$ldiskfs_spec" ] && sed \
869     -e "s^Release: .*$^Release: $LUSTRE_EXTRA_VERSION^" \
870     < $ldiskfs_spec \
871     > ../lustre-ldiskfs.spec
872
873     if ! $RPMBUILD $targets $rpmbuildopt ../lustre-ldiskfs.spec \
874         --define "_tmppath /var/tmp" \
875         --define "_topdir $TOPDIR" 2>&1; then
876         popd
877         return 255
878     fi
879
880     if $DO_SRC; then
881         if ! $RPMBUILD -bs ../lustre-ldiskfs.spec \
882             --define "_tmppath /var/tmp" \
883             --define "_topdir $TOPDIR" 2>&1; then
884             popd
885             return 255
886         fi
887     fi
888     popd
889
890 }
891
892 stage() {
893
894     [ "$STAGEDIR" ] || return 0
895
896     for arch in $BUILD_ARCHS; do
897         rpmdir="${STAGEDIR}/${CANONICAL_TARGET}-${arch}"
898         echo "${0##*/}: Copying RPMs into ${rpmdir}"
899         mkdir -p "${rpmdir}"
900         cp -v RPMS/${arch}/*.rpm "${rpmdir}"
901         if [ -d RPMS/noarch ]; then
902             cp -v RPMS/noarch/*.rpm "${rpmdir}"
903         fi
904     done
905
906     cp -v "$LUSTRE" "$STAGEDIR"
907
908 }
909
910 #check if we need to build separate ldiskfs RPM
911 skeep_ldiskfs_rpm() {
912         local tag="$1"
913
914         local skip=false
915
916         if ! $LDISKFSRPM; then
917             skip=true
918         elif $PATCHLESS; then
919             skip=true
920         else
921             for skiptag in $SKIPLDISKFSRPM; do
922                 [[ $tag == $skiptag ]] && skip=true && break
923             done
924         fi
925
926         pushd $TOPDIR/BUILD/lustre-[1-9]* >/dev/null
927         grep -q '^SERVER_TRUE[ \t]=[ \t]#$' autoMakefile && skip=true
928         popd >/dev/null
929
930         echo $skip
931
932 }
933
934 #generate LUSTRE_EXTRA_VERSION from EXTRA_VERSION
935 gen_lustre_version() {
936
937     LUSTRE_EXTRA_VERSION="${lnxmaj}-${EXTRA_VERSION}${FLAVOR_DELIMITER}${RPMSMPTYPE}"
938     LUSTRE_EXTRA_VERSION=${LUSTRE_EXTRA_VERSION//-/_}
939
940 }
941
942 set_rpm_smp_type() {
943
944     local infact_arch="${TARGET_ARCH}"
945
946     RPMSMPTYPE=""
947     [ "$infact_arch" == "i586" ] && infact_arch="i686"
948
949     local smp_type
950     for smp_type in $SMP_ARCHS; do
951         [ $infact_arch == $smp_type ] && RPMSMPTYPE=smp && break
952     done
953
954     for smp_type in $BIGSMP_ARCHS; do
955         [ $infact_arch == $smp_type ] && RPMSMPTYPE=bigsmp && break
956     done
957
958     for smp_type in $PPC64_ARCHS; do
959         [ $infact_arch == $smp_type ] && RPMSMPTYPE=ppc64 && break
960     done
961
962     for smp_type in $DEFAULT_ARCHS; do
963         [ $infact_arch == $smp_type ] && RPMSMPTYPE=default && break
964     done
965
966 }
967
968 # This function takes a linux source pool and digs out the linux release
969 # from it
970 find_linux_release() {
971     local SRCDIR="$1"
972
973     local LINUXRELEASEHEADER=$SRCDIR/include/linux/version.h
974     if [ -s $SRCDIR/include/linux/utsrelease.h ]; then
975         LINUXRELEASEHEADER=$SRCDIR/include/linux/utsrelease.h
976     fi
977
978     sed -ne 's/#define UTS_RELEASE "\(.*\)"$/\1/p' $LINUXRELEASEHEADER
979
980 }
981
982 # XXX this needs to be re-written as a wrapper around find_rpm
983 #     or just gotten rid of.  :-)
984 find_linux_rpm() {
985     local prefix="$1"
986
987     local pathtorpms="${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
988     [ -d $pathtorpms ] || return 255
989
990     local kernelbinaryrpm rpmfile
991     local wanted_kernel="${lnxmaj}${lnxmin}-${lnxrel}"
992
993     local arch ret=1
994     for arch in $TARGET_ARCHS_ALL; do
995         local found_rpm="" rpm
996         for rpm in ${pathtorpms}/${arch}/*.rpm; do
997             if rpm -q --provides -p "$rpm" 2>&3 | grep -q "kernel${prefix} = $wanted_kernel" 2>&3; then
998
999                 found_rpm="$rpm"
1000                 ret=0
1001                 break
1002             fi
1003         done
1004         [ -f "$found_rpm" ] && break
1005     done
1006
1007     echo "$found_rpm"
1008     return $ret
1009
1010 }
1011
1012 # unpack kernel(/source/devel) RPM
1013 #
1014 # This function and it's setting of $LINUX and $LINUXOBJ is a total hack that
1015 # needs to completely refactored.  It completely ingores that $BUILD_ARCHS may
1016 # contain a list of arches for which rpmbuild commands (including the one for
1017 # lustre itself)
1018 unpack_linux_devel_rpm() {
1019     local kernelrpm="${1}"
1020
1021     [ -f "$kernelrpm" ] || return 255
1022     [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused || return 255
1023
1024     pushd $TOPDIR/reused &>/dev/null || return 255
1025
1026     if ! rpm2cpio < "$kernelrpm" | cpio -id > /dev/null 2>&1; then
1027         return 255
1028     fi
1029
1030     # call a distro specific hook, if available
1031     if type -p unpack_linux_devel_rpm-$DISTRO; then
1032         if ! unpack_linux_devel_rpm-$DISTRO "$kernelrpm"; then
1033             return 255
1034         fi
1035     fi
1036
1037     popd &>/dev/null
1038
1039     find_linux_devel_paths $TOPDIR/reused
1040
1041     return 0
1042
1043 }
1044
1045 build_kernel_ib() {
1046     local linux="$1"
1047
1048     # build kernel-ib{,-devel}
1049     local K_SRC="K_SRC"
1050     # ofed 1.3 had a bug in the rpm spec
1051     if [ "$OFED_VERSION" = "1.3" ]; then
1052         K_SRC="KSRC"
1053     fi
1054
1055     local OFED_CORE="--with-core-mod --with-ipoib-mod --with-sdp-mod --with-user_mad-mod --with-user_access-mod --with-addr_trans-mod --with-rds-mod --with-qlgc_vnic-mod --with-madeye-mod"
1056     local OFED_HARDWARE="--with-mthca-mod --with-mlx4-mod --with-mlx4_en-mod --with-cxgb3-mod --with-nes-mod"
1057     # some I/B drivers are architecture dependent and kernel-ib's configure
1058     # does not figure it out for us ~sigh~
1059     case "$TARGET_ARCH" in
1060         ppc64)
1061             OFED_HARDWARE="$OFED_HARDWARE --with-ehca-mod"
1062             ;;
1063     esac
1064     # we're no longer shipping the OFED iSCSI
1065     #OFED_ISCSI="--with-srp-mod --with-srp-target-mod"
1066     ## ISER module has no backport support as of OFED 1.5 (i.e. only builds on
1067     ##kernels >= 2.6.30)
1068     #if [[ $OFED_VERSION = 1.[0-4]* ]]; then
1069     #   OFED_ISCSI="$OFED_ISCSI --with-iser-mod"
1070     #fi
1071
1072     # assume we are just rebuilding the SRPM
1073     local BUILD_TYPE=${BUILD_TYPE:-"--rebuild"}
1074     local SOURCE="${TOPDIR}/OFED/SRPMS/ofa_kernel-*.src.rpm"
1075
1076     # but switch to building from the SPEC if we need to apply patches
1077     if ls ${TOPDIR}/lustre/build/patches/ofed/* >/dev/null; then
1078         BUILD_TYPE="-bb"
1079         rpm --define "_topdir ${TOPDIR}" -ivh $SOURCE
1080         SOURCE="${TOPDIR}/SPECS/ofa_kernel.spec"
1081         local file ed_fragment1 ed_fragment2 n=1
1082         for file in $(ls ${TOPDIR}/lustre/build/patches/ofed/*); do
1083             ed_fragment1="$ed_fragment1
1084 Patch$n: ${file%%*/}"
1085             ed_fragment2="$ed_fragment2
1086 %patch$n -p0"
1087             cp $file ${TOPDIR}/SOURCES
1088             let n=$n+1
1089         done
1090
1091         if [ $n -gt 1 ]; then
1092             ed $SOURCE <<EOF
1093 /^Source: /a
1094 $ed_fragment1
1095 .
1096 /^%setup /a
1097 $ed_fragment2
1098 .
1099 wq
1100 EOF
1101         fi
1102     fi
1103
1104     local linuxrelease=$(find_linux_release "$linux")
1105     if ! $RPMBUILD $BUILD_TYPE --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
1106                   ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1107                   --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1108                   --define "KVERSION ${linuxrelease}" \
1109                   --define "$K_SRC ${linux}" \
1110                   --define "LIB_MOD_DIR /lib/modules/${linuxrelease}/updates" \
1111                   ${OFA_KERNEL_RELEASE:+--define "_release $OFA_KERNEL_RELEASE"} \
1112                   --define "configure_options --without-quilt $OFED_CORE $OFED_HARDWARE $OFED_ISCSI" \
1113                   ${SOURCE} 2>&1; then
1114         fatal 1 "Error building kernel-ib"
1115     fi
1116
1117 }
1118
1119 store_for_reuse() {
1120         local articles="$1"
1121         local module="$2"
1122         local location="$3"
1123         local signature="$4"
1124         local use_links="$5"
1125
1126         local linkflag=""
1127         if $use_links; then
1128             linkflag="l"
1129         fi
1130
1131         location="$location"/"$signature"/"$module"
1132         mkdir -p "$location"
1133         # the cleanup script removes any directory that doesn't have a
1134         # .lastused, so let's try to prevent that as soon as we can
1135         # this solution still slightly racy with the cleanup script
1136         # but the race is a lot tighter now
1137         touch -t 197001010000 "$location/.lastused"
1138         ## use eval/echo here to make sure shell expansions are performed
1139         #if ! cp -a${linkflag} $(eval echo $articles) "$location"; then
1140         local article
1141         for article in $(eval echo $articles); do
1142             if ! cp -a${linkflag} "$article" "$location"; then
1143                 error "Failed to copy \"$article\" to \"$location\" in store_for_reuse()"
1144                 # rename the cache location so that it's not cached
1145                 # product, but is around for analysis
1146                 mv "$location"{,-bad-$(date +%s)} ||
1147                     error "failed to clean up a failed cache attempt" \
1148                           "in \"$location\" -- manual cleanup will be" \
1149                           "necessary"
1150                 return 1
1151             fi
1152         done
1153
1154         # flag the cache as complete (i.e. in case lbuild was previously
1155         # interrupted while caching)
1156         touch "$location/.lastused"
1157
1158         return 0
1159
1160 }
1161
1162 reuse() {
1163     local module="$1"
1164     local dest="$2"
1165     local use_links="${3:-false}"
1166     local signature="$4"
1167
1168     if [ -n "$REUSEBUILD" ] && [ -d "$REUSEBUILD/$signature/$module" ]; then
1169         if [ ! -f "$REUSEBUILD/$signature/$module/.lastused" ]; then
1170             # the .lastused flag is populated at the end of the caching to
1171             # signal that the caching was completed.  if that flag is not
1172             # there, then the cache is invalid (and should be removed in fact)
1173             mv "$REUSEBUILD/$signature/$module"{,-bad-$(date +%s)} ||
1174                 fatal 1 "failed to clean up a bad cache in location $REUSEBUILD/$signature/$module\" -- manual cleanup will be necessary"
1175             return 1
1176         fi
1177
1178         # so that we know how stale this entry is
1179         touch $REUSEBUILD/$signature/$module/.lastused
1180
1181         if $use_links; then
1182             if ls $REUSEBUILD/$signature/$module/* >/dev/null 2>&1; then
1183                 cp -al $REUSEBUILD/$signature/$module/* $dest/
1184             fi
1185         else
1186             # copying is pretty heavy
1187             # cp -a $REUSEBUILD/$signature/$module/* $dest/
1188             # do some creative symlinking instead
1189             local dir
1190             for dir in BUILD SRPMS SPECS; do
1191                 if ls $REUSEBUILD/$signature/$module/$dir/* >/dev/null 2>&1; then
1192                     ln -s $REUSEBUILD/$signature/$module/$dir/* $dest/$dir
1193                 fi
1194             done
1195             # sources have to be copied by file because we need SOURCES to
1196             # be a dir we can write into
1197 # could overrun ls's arg list here
1198             #ls $REUSEBUILD/$signature/$module/SOURCES/* |
1199             find $REUSEBUILD/$signature/$module/SOURCES/ -type f |
1200                 xargs ln -t $dest/SOURCES -s
1201
1202             # same for RPMS/* dirs
1203 # could overrun ls's arg list here
1204             #ls $REUSEBUILD/$signature/$module/RPMS/$TARGET_ARCH/* |
1205             local dir
1206             for dir in $REUSEBUILD/$signature/$module/RPMS/*; do
1207                 mkdir -p $dest/RPMS/${dir##*/}
1208                 find $dir -type f |
1209                   xargs ln -t $dest/RPMS/${dir##*/} -s
1210             done
1211
1212         fi
1213         return 0
1214     else
1215         return 1
1216     fi
1217 }
1218
1219 basearch() {
1220     local arch="$1"
1221
1222     if [[ $arch = i[3456]86 ]]; then
1223         echo "i386"
1224     else
1225         echo "$arch"
1226     fi
1227
1228 }
1229
1230 #
1231 # in a given directory, find the first rpm matching given requirements
1232 #
1233 find_rpm() {
1234     local dir="$1"
1235     local match_type="$2"
1236     local match="$3"
1237
1238     pushd "$dir" > /dev/null || \
1239         fatal 1 "Unable to chdir to directory \"$dir\" in find_rpm()"
1240
1241     local file
1242     for file in $(ls *.rpm); do
1243         if [ ! -f "$file" ]; then
1244             continue
1245         fi
1246         case "$match_type" in
1247             provides)
1248                 # match is any valid ERE (i.e. given to egrep) match
1249                 if rpm -q --provides -p "$file" 2>&3 | egrep -q "$match"; then
1250                     echo "$file"
1251                     popd >/dev/null
1252                     return 0
1253                 fi
1254                 ;;
1255             *)
1256                 popd >/dev/null
1257                 fatal 1 "Unknown match type \"$match_type\" given to find_rpm()"
1258                 ;;
1259         esac
1260     done
1261
1262     popd >/dev/null
1263     return 1
1264 }
1265
1266 build_kernel_with_srpm() {
1267     local outfd=$1
1268
1269     if [ -z "$outfd" ] || [ $outfd = 1 ]; then
1270         fatal 1 "You must supply a file descriptor to ${FUNCNAME[0]} and it cannot be 1"
1271     fi
1272
1273     # need to generate the patch for this target
1274     do_patch_linux false >&${outfd}    # sets global $FULL_PATCH (yeah, yuck)
1275
1276     # get an md5sum of the kernel patch + config for reuse check
1277     # XXX really, there needs to be a signature and a CONFIG_FILE per arch
1278     #     in BUILD_ARCHS
1279     local release_str
1280     if $RELEASE; then
1281         local release_str="RELEASE=$RELEASE\n"
1282     fi
1283
1284     if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1285         local REUSE_SIGNATURE=$({ echo -en $release_str;
1286                                   echo $BUILD_GEN;
1287                                   cat $CONFIG_FILE $TARGET_FILE $FULL_PATCH; } |
1288                                 md5sum | cut -d" " -f1)
1289         # see if we can link to the reuse pool
1290         # XXX - hrm.  i'm not convinced this doesn't belong in the reuse
1291         #       "library"
1292         local CAN_LINK_FOR_REUSE=false
1293         touch $REUSEBUILD/$$
1294         if cp -al $REUSEBUILD/$$ $TOPDIR/ 2>/dev/null; then
1295             CAN_LINK_FOR_REUSE=true
1296         fi
1297         rm $REUSEBUILD/$$
1298     fi
1299
1300     # the extra version string to use for the kernel (which might be a reused
1301     # kernel, remember)
1302     local kernel_extra_version=""
1303     if ! $USE_BUILD_CACHE || ! reuse kernel "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1304                                    "$REUSE_SIGNATURE"; then
1305         # nothing cached, build from scratch
1306         if [ ! -r "$KERNELDIR/$KERNEL_SRPM" ]; then
1307             echo "Downloading kernel SRPM"
1308             download_srpm "$CANONICAL_TARGET" "$KERNEL_SRPM" >&${outfd}
1309         fi
1310
1311         if ! rpm -ivh $KERNELDIR/$KERNEL_SRPM \
1312                   --define "_topdir $TOPDIR" >&${outfd} 2>&1; then
1313             # should we clean this up or leave it for analysis?
1314             #rm -rf $RPMTOPDIR
1315             fatal 1 "Error installing kernel SRPM."
1316         fi
1317
1318         # put the Lustre kernel patch into the RPM build tree
1319         cp $FULL_PATCH $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch
1320         prepare_and_build_srpm >&${outfd} ||
1321             fatal 1 "failed to prepare_and_build_srpm"
1322
1323         if [ -z "$REUSE_SIGNATURE" ]; then
1324             echo "No reuse signature was caculated so not storing the built kernel" >&${outfd}
1325         else
1326             # store the resulting kernel RPM build tree for future use
1327             echo "Storing the built kernel for future reuse" >&${outfd}
1328             if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1329                                  "kernel" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1330                                  "$CAN_LINK_FOR_REUSE"; then
1331                 error "Failed to store kernel RPMS for reuse"
1332                 echo "unknown"
1333                 return 1
1334             fi
1335         fi
1336     fi  # build reuse
1337
1338     # figure out the EXTRA_VERSION of the kernel we built or are re-using
1339     local KERNEL_RPM
1340     if ! KERNEL_RPM=$(find_rpm "$TOPDIR/RPMS/$TARGET_ARCH/" provides "^kernel ="); then
1341         fatal 1 "Failed to find a kernel RPM in $TOPDIR/RPMS/$TARGET_ARCH/"
1342     fi
1343     kernel_extra_version=$(rpm -q --queryformat "%{RELEASE}" -p $TOPDIR/RPMS/$TARGET_ARCH/$KERNEL_RPM)
1344
1345     # should now have the following RPMs
1346     # $TOPDIR/RPMS/$arch/kernel-lustre-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1347     # $TOPDIR/RPMS/$arch/kernel-lustre-devel-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1348     # $TOPDIR/RPMS/$arch/kernel-lustre-headers-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1349     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-common-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1350     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1351
1352     echo $kernel_extra_version
1353     return 0
1354
1355 }
1356
1357 build_mptlinux() {
1358     local linux="$1"
1359     local version="$2"
1360
1361     if ! $BUILD_RDAC || [ -z "$version" -o "$version" = "inkernel" ]; then
1362         return 0
1363     fi
1364
1365     local targets arch
1366     for arch in $BUILD_ARCHS; do
1367         targets="--target $arch $targets"
1368     done
1369
1370     local rpmbuildopt='-bb'
1371     if $NORPM; then
1372         rpmbuildopt='-bc'
1373         echo NORPM mode. Only compiling.
1374     fi
1375
1376     # if only we could just rebuild the src.rpm.  but the included spec
1377     # is a real pig's breakfast.  just check out the patch we need to
1378     # apply to it to make it useful.
1379     #$RPMBUILD --rebuild \
1380     #          --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1381     #          ${TOPDIR}/mptlinux-*.src.rpm
1382     rpm -ivh --define "_topdir ${TOPDIR}" ${TOPDIR}/mptlinux-*.src.rpm
1383
1384     # now the big honkin' patch to the spec file
1385     pushd ${TOPDIR}/SPECS
1386     # to regen this patch use:
1387     # !!cd ~/rpm/SPECS/ && diff -u mptlinux.spec{.dist,}
1388     patch -p0 < ${TOPDIR}/lustre/build/mptlinux.spec.patch || fatal 1 "failed to patch mptlinux.spec"
1389     popd
1390
1391     local targets arch
1392         for arch in $BUILD_ARCHS; do
1393         targets="--target $arch $targets"
1394     done
1395
1396     local rpmbuildopt='-bb'
1397     if $NORPM; then
1398         rpmbuildopt='-bc'
1399         echo NORPM mode. Only compiling.
1400     fi
1401
1402     if ! $RPMBUILD $targets $rpmbuildopt \
1403                   ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1404                   --define "_tmppath /var/tmp" \
1405                   --define "_topdir ${TOPDIR}" \
1406                   --define "kernel_obj $linux" \
1407                   ${TOPDIR}/SPECS/mptlinux.spec 2>&1; then
1408         return 1
1409     fi
1410     if $DO_SRC; then
1411         if ! $RPMBUILD -bs \
1412                       ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1413                       --define "_tmppath /var/tmp" \
1414                       --define "_topdir ${TOPDIR}" \
1415                       --define "kernel_obj $linux" \
1416                       ${TOPDIR}/SPECS/mptlinux.spec 2>&1; then
1417             return 1
1418         fi
1419     fi
1420
1421     return 0
1422
1423 }
1424
1425 # build RDAC
1426 build_rdac() {
1427     local linux="$1"
1428     local version="$2"
1429
1430     if ! $BUILD_MPTLINUX || [ -z "$version" -o "$version" = "inkernel" ]; then
1431         return 0
1432     fi
1433
1434     # note that we use an _, not a . before the spec on purpose.  we are not
1435     # allowed to have more than one file with a .spec trailer in a tarball
1436     # that is supposed to be usable with rpmbuild
1437     cp lustre/build/rdac_spec ${TOPDIR}/SPECS/rdac.spec || fatal 1 "Could not find rdac.spec in lustre/build" 
1438
1439     local targets arch
1440     for arch in $BUILD_ARCHS; do
1441         targets="--target $arch $targets"
1442     done
1443
1444     local rpmbuildopt='-bb'
1445     if $NORPM; then
1446         rpmbuildopt='-bc'
1447         echo NORPM mode. Only compiling.
1448     fi
1449
1450     local distro
1451     case $DISTRO in
1452      rhel5)     distro="REDHAT"
1453                 ;;
1454     sles1*)     distro="SUSE"
1455                 ;;
1456          *)     echo "$DISTRO not supported by RDAC, skipping"
1457                 return 0
1458                 ;;
1459     esac
1460     if ! $RPMBUILD $targets $rpmbuildopt --define "dist $distro" \
1461                   ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1462                   --define "_tmppath /var/tmp" \
1463                   --define "_topdir ${TOPDIR}" \
1464                   --define "kernel_obj $linux" \
1465                   ${TOPDIR}/SPECS/rdac.spec 2>&1; then
1466         return 1
1467     fi
1468     if $DO_SRC; then
1469         if ! $RPMBUILD -bs --define "dist $distro" \
1470                       ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1471                       --define "_tmppath /var/tmp" \
1472                       --define "_topdir ${TOPDIR}" \
1473                       --define "kernel_obj $linux" \
1474                       ${TOPDIR}/SPECS/rdac.spec 2>&1; then
1475             return 1
1476         fi
1477     fi
1478
1479     return 0
1480 }
1481
1482 # build OFED
1483 # globals used:
1484 #    TOPDIR
1485 #    REUSEBUILD, USE_BUILD_CACHE
1486 #    CONFIGURE_FLAGS
1487
1488 build_ofed() {
1489     local linux="$1"
1490     local ofed_version="$2"
1491
1492     # if an ofed version is given, then it means use OFED proper,
1493     # not any vendor specific "inkernel" version
1494     if [ -z "$ofed_version" -o "$ofed_version" = "inkernel" ]; then
1495         # first see if there is a distro specific override for this
1496         # XXX we need to better integrate an distro specific override with
1497         #     the rest of this function so that all of the reuse cache
1498         #     stuff is leveraged given that 80% of this function is reuse
1499         if type -p build_ofed-${DISTRO}; then
1500             local ofed_location
1501             ofed_location=$(build_ofed-${DISTRO} ${STDOUT})
1502             CONFIGURE_FLAGS="--with-o2ib=${ofed_location} ${CONFIGURE_FLAGS}"
1503             return ${PIPESTATUS[0]}
1504         fi
1505     else
1506         return 0
1507     fi
1508     
1509     # build kernel-ib
1510     if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1511         local REUSE_SIGNATURE=$({ echo "$ofed_version";
1512                                   echo "$(find_linux_release ${linux})";
1513                                   cat "${linux}/include/linux/autoconf.h"; } |
1514                                 md5sum | cut -d" " -f1)
1515         # see if we can link to the reuse pool
1516         # XXX - hrm.  i'm not convinced this doesn't belong in the reuse
1517         #       "library"
1518         local CAN_LINK_FOR_REUSE=false
1519         touch $REUSEBUILD/$$
1520         if cp -al $REUSEBUILD/$$ $TOPDIR/; then
1521             CAN_LINK_FOR_REUSE=true
1522         fi
1523         rm $REUSEBUILD/$$
1524     fi
1525
1526     if ! $USE_BUILD_CACHE || ! reuse ofed "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1527                                    "$REUSE_SIGNATURE"; then
1528         if [ -n "$REUSE_SIGNATURE" ]; then
1529             # stash away the existing built articles for a moment
1530             mkdir bak
1531             mv {BUILD,{S,}RPMS,S{OURCE,PEC}S} bak
1532             function mv_back {
1533                 pushd bak
1534                 find . | cpio -pudlm ..
1535                 popd
1536                 rm -rf bak
1537             }
1538             create_rpmbuild_dirs
1539         fi
1540         # build it
1541         build_kernel_ib "${linux}"
1542
1543         if [ -z "$REUSE_SIGNATURE" ]; then
1544             echo "No reuse signature was caculated so not storing the built ofed"
1545         else
1546             # store the resulting RPM build tree for future use
1547             echo "Storing the built ofed for future reuse"
1548             if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1549                                  "ofed" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1550                                  "$CAN_LINK_FOR_REUSE"; then
1551                 error "Failed to store OFED RPMS for reuse"
1552                 mv_back
1553                 return 1
1554             fi
1555             # put the stuff we stashed away back
1556             mv_back
1557         fi
1558     fi
1559
1560     pushd "$TOPDIR" >/dev/null
1561     rm -rf kernel-ib-devel
1562     mkdir kernel-ib-devel
1563     cd kernel-ib-devel
1564     # the actual ofed RPMs don't have the -rc$n or -$date string appened that
1565     # might be present on the file
1566     local linuxrelease=$(find_linux_release "$linux")
1567     ofed_version=$(echo $ofed_version |
1568                    sed -re 's/-(20[0-9]{6,6}-[0-9]{4,4}|rc[0-9]*)$//')
1569     local rpm=$(ls $TOPDIR/RPMS/*/kernel-ib-devel-${ofed_version}-${linuxrelease//-/_}.*.rpm)
1570     if ! rpm2cpio < $rpm | cpio -id; then
1571         fatal 1 "could not unpack the kernel-ib-devel rpm."
1572     fi
1573     CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/ofa_kernel ${CONFIGURE_FLAGS}"
1574     popd >/dev/null
1575
1576 }
1577
1578 build_with_srpm() {
1579
1580     if ! $PATCHLESS; then
1581         local kernel_extra_version
1582         if ! kernel_extra_version=$(build_kernel_with_srpm ${STDOUT}); then
1583             fatal 1 "Failed to build the kernel from it's SRPM"
1584         fi
1585
1586         for arch in $BUILD_ARCHS; do
1587             local kernel_devel_rpm
1588             if ! kernel_devel_rpm=$(find_rpm "$TOPDIR/RPMS/$arch/" provides "^$(devel_kernel_name $KERNEL_LUSTRE_NAMING) ="); then
1589                 fatal 1 "Failed to find a kernel development RPM in $TOPDIR/RPMS/$arch/"
1590             fi
1591
1592             # install the -devel RPM in preparation for modules builds
1593             if ! lnxrel="$kernel_extra_version" unpack_linux_devel_rpm \
1594                            "$TOPDIR/RPMS/$arch/$kernel_devel_rpm"; then
1595                 fatal 1 "Could not find the Linux tree in $TOPDIR/RPMS/$arch/$kernel_devel_rpm"
1596             fi
1597         done
1598     else
1599         # need to find and unpack the vendor's own kernel-devel for patchless
1600         # client build
1601         local kernelrpm
1602         if ! kernelrpm=$(find_linux_rpm "-$DEVEL_KERNEL_TYPE"); then
1603             fatal 1 "Could not find the kernel-$DEVEL_KERNEL_TYPE RPM in ${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
1604         fi
1605         if ! lnxrel="$lnxrel" unpack_linux_devel_rpm "$kernelrpm" "-"; then
1606             fatal 1 "Could not find the Linux tree in $kernelrpm"
1607         fi
1608     fi
1609
1610     # ~sigh~  have to make copies of and modify some of the rpm
1611     # infrastructure files so that find-requires can find our unpacked
1612     # kernel-devel artifacts
1613     cp $RPM_HELPERS_DIR/{symset-table,find-requires{,.ksyms}} .
1614     FIND_REQUIRES="$(pwd)/find-requires"
1615     chmod 755 {symset-table,find-requires{,.ksyms}}
1616     local tmp="$(pwd)"
1617     tmp="${tmp//\//\\/}"
1618     ed find-requires <<EOF
1619 1a
1620 set -x
1621 .
1622 /|.*find-requires.ksyms/s/|/| bash -x/
1623 g/ [^ ]*\/\(find-requires\.ksyms\)/s// $tmp\/\1/g
1624 wq
1625 EOF
1626     ed find-requires.ksyms <<EOF
1627 1a
1628 set -x
1629 .
1630 g/\/.*\/\(symset-table\)/s//$tmp\/\1/g
1631 wq
1632 EOF
1633     ed symset-table <<EOF
1634 1a
1635 set -x
1636 .
1637 g/\(\/boot\/\)/s//$tmp\/reused\1/g
1638 g/\(\/usr\/src\/kernels\/\)/s//$tmp\/reused\1/g
1639 wq
1640 EOF
1641
1642     build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
1643         fatal 1 "error building OFED"
1644
1645     if ! $PATCHLESS; then
1646         # only need RDAC for the server
1647         build_rdac "${LINUXOBJ:-$LINUX}" "$RDAC_VERSION" ||
1648             fatal 1 "error building RDAC"
1649     fi
1650
1651     build_mptlinux "${LINUXOBJ:-$LINUX}" "$MPTLINUX_VERSION" ||
1652         fatal 1 "error building mptlinux"
1653
1654     # now build Lustre
1655     if build_lustre "$LINUX" "$LINUXOBJ"; then
1656         # the build worked.  resolve any symlinked files (i.e. from reuse)
1657         # in RPMS/$arch to real files so that that that huge mess of
1658         # complication known as LTS can copy them yet somewhere else.
1659         # is it any wonder this whole process is so damn so?  anyone ever
1660         # heard of hardlinks?  it's this cool new thing that allows you save
1661         # tons of time and space by creating... well you can go read about
1662         # them if you have not heard about them yet.
1663         # can i say how much the implemenation of all of this really impedes
1664         # RPM reuse?
1665         local dir
1666         for dir in RPMS/*; do
1667             pushd $dir
1668                 for file in *; do
1669                     if [ -h $file ]; then
1670                         cp $file foo
1671                         mv foo $file
1672                     fi
1673                 done
1674             done
1675         popd
1676         # also, for i?86, make sure all of the RPMs are in RPMS/$TARGET_ARCH
1677         # as that's where LTS expects to find them
1678         for dir in RPMS/*; do
1679             if [ $dir = RPMS/$TARGET_ARCH ]; then
1680                 continue
1681             fi
1682             pushd $dir
1683             local files=$(ls)
1684             if [ -n "$files" ]; then
1685                 cp -al $files ../$TARGET_ARCH
1686             fi
1687             popd
1688         done
1689     else
1690         return 1
1691     fi
1692
1693 }
1694
1695 create_rpmbuild_dirs() {
1696
1697     [ -d RPMS ] || mkdir RPMS
1698     for arch in $BUILD_ARCHS; do
1699         if [[ $arch = i?86 ]]; then
1700             # some stupidity in the sles11 kernel spec requires an RPMS/i386
1701             # even if the target arch is i686
1702             [ -d RPMS/i386 ] || mkdir RPMS/i386
1703         fi
1704         [ -d RPMS/$arch ] || mkdir RPMS/$arch
1705     done
1706     [ -d BUILD ] || mkdir BUILD
1707     [ -d SOURCES ] || mkdir SOURCES
1708     [ -d SPECS ] || mkdir SPECS
1709     [ -d SRPMS ] || mkdir SRPMS
1710
1711 }
1712
1713 new_list() {
1714
1715     echo ""
1716
1717 }
1718
1719 add_list() {
1720     local list="$1"
1721     local item="$2"
1722
1723     echo "$list $item"
1724
1725 }
1726
1727 is_list_member() {
1728     local list="$1"
1729     local item="$2"
1730
1731     [[ $list\  == *\ $item\ * ]]
1732
1733 }
1734
1735 #########################################################################
1736 # Generate a backtrace through the call stack.
1737 #
1738 # Input: None
1739 # Output: None
1740 #########################################################################
1741 backtrace() {
1742     local strip=${1:-1}
1743
1744     local funcname="" sourcefile="" lineno="" n
1745
1746     echo "Call stack: (most recent first)"
1747     for (( n = $strip ; n < ${#FUNCNAME[@]} ; ++n )) ; do
1748         funcname=${FUNCNAME[$n - 1]}
1749         sourcefile=$(basename ${BASH_SOURCE[$n]})
1750         lineno=${BASH_LINENO[$n - 1]}
1751         if [ $n = 1 ]; then
1752             let lineno-=11
1753         fi
1754         # Display function arguments
1755         if [[ ! -z "${BASH_ARGV[@]}" ]]; then
1756             local args newarg j p=0
1757             for (( j = ${BASH_ARGC[$n - 1]}; j > 0; j-- )); do
1758                 newarg=${BASH_ARGV[$j + $p - 1]}
1759                 args="${args:+${args} }'${newarg}'"
1760             done
1761             let p+=${BASH_ARGC[$n - 1]}
1762         fi
1763         echo "  ${funcname} ${args:+${args} }at ${sourcefile}:${lineno}"
1764     done
1765
1766     echo
1767     echo "BEGIN BACKTRACE"
1768
1769     #echo ${BASH_LINENO[*]}
1770     #echo ${BASH_SOURCE[*]}
1771     #echo ${FUNCNAME[*]}
1772     local i=$((${#FUNCNAME[@]} - 1))
1773     while [ $i -ge 0 ]; do
1774         local lineno=${BASH_LINENO[$i]}
1775         if [ $i = 0 ]; then
1776             let lineno-=11
1777         fi
1778         local SOURCELINE="${BASH_SOURCE[$i + 1]}:${lineno}"
1779         # Can't figure out how to get function args from other frames...
1780         local FUNCTION="${FUNCNAME[$i]}()"
1781         echo "$SOURCELINE:$FUNCTION"
1782         i=$((i - 1))
1783     done
1784
1785     echo "END BACKTRACE"
1786
1787     echo $BACKTRACE
1788
1789 }
1790
1791 seen_list=$(new_list)
1792 trap 'set +x;
1793 echo "An unexpected error has occurred at ${BASH_SOURCE[0]##*/}:$((LINENO-1)).
1794 Unfortunately the above line number in the message may or may not be correct,
1795 but details have been send to the lbuild maintainer.  Attempting to continue."; (echo "Untrapped error"
1796 echo
1797 # have we seen this one
1798 echo "checking seen list for ${BASH_SOURCE[0]}:${BASH_LINENO[0]}"
1799
1800 if is_list_member "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}"; then
1801   echo "seen this one already"
1802 else
1803   seen_list=$(add_list "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}")
1804 fi
1805 backtrace
1806 echo
1807 echo "Environment:"
1808 set
1809 ) | mail -s "Untrapped error at ${BASH_SOURCE[0]##*/}:$((LINENO-15)) on $HOSTNAME" brian@sun.com >&2; set $xtrace' ERR
1810 set -E
1811
1812 [ -r ~/.lbuildrc ] && . ~/.lbuildrc
1813
1814 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,ofed-version:,publish,release,set-value:,src,stage:,tag:,target:,target-archs:,with-linux:,xen,enable-mptlinux,enable-rdac -- "$@")
1815
1816 if [ $? != 0 ]; then
1817     usage 1
1818 fi
1819
1820 eval set -- "$options"
1821
1822 while [ "$1" ]; do
1823     case "$1" in
1824         '')
1825             usage 1
1826             ;;
1827         --ccache)
1828             CCACHE='ccache'
1829             shift
1830             ;;
1831         -d)
1832             CVSROOT=$2
1833             shift 2
1834             ;;
1835         -D)
1836             DATE=$2
1837             shift 2
1838             ;;
1839         --external-patches)
1840             EXTERNAL_PATCHES=$2
1841             shift 2
1842             ;;
1843         --extraversion)
1844             EXTRA_VERSION=$2
1845             shift 2
1846             ;;
1847         --help | -h)
1848             usage 0
1849             ;;
1850         --kerneldir)
1851             KERNELDIR=$2
1852             shift 2
1853             ;;
1854         --kerneltree)
1855             if ! KERNELTREE=$(canon_path "$2"); then
1856                 fatal 1 "Could not determine the canonical location of $2"
1857             fi
1858             shift 2
1859             ;;
1860         --linux | --with-linux)
1861             if ! LINUX=$(canon_path "$2"); then
1862                 fatal 1 "Could not determine the canonical location of $2"
1863             fi
1864             shift 2
1865             ;;
1866         --distro)
1867             DISTRO=$2
1868             shift 2
1869             ;;
1870         --reuserpm)
1871             REUSERPM=$2
1872             shift 2
1873             ;;
1874         --reusebuild)
1875             if ! REUSEBUILD=$(canon_path "$2"); then
1876                 fatal 1 "Could not determine the canonical location of $2"
1877             fi
1878             shift 2
1879             ;;
1880         --norpm)
1881             NORPM=true
1882             shift
1883             ;;
1884         --ldiskfs)
1885             LDISKFSRPM=true
1886             shift
1887             ;;
1888         --patchless)
1889             PATCHLESS=true
1890             shift
1891             ;;
1892         --kernelrpm)
1893             if ! KERNELRPMSBASE=$(canon_path "$2"); then
1894                 fatal 1 "Could not determine the canonical location of $2"
1895             fi
1896             shift 2
1897             ;;
1898         --timestamp)
1899             TIMESTAMP=$2
1900             shift 2
1901             ;;
1902         --lustre)
1903             LUSTRE=$2
1904             shift 2
1905             ;;
1906         --nodownload)
1907             DOWNLOAD=false
1908             shift 1
1909             ;;
1910         --nosrc)
1911             DO_SRC=false
1912             shift 1
1913             ;;
1914         --ofed-version)
1915             OFED_VERSION="$2"
1916             shift 2
1917             ;;
1918         --publish)
1919             shift
1920             ;;
1921         --release)
1922             RELEASE=true
1923             shift
1924             ;;
1925         --src)
1926             DO_SRC=true
1927             shift 1
1928             ;;
1929         --stage)
1930             STAGEDIR=$2
1931             shift 2
1932             ;;
1933         --tag)
1934             TAG=$2
1935             shift 2
1936             ;;
1937         --target)
1938             TARGET=$2
1939             shift 2
1940             ;;
1941         --target-archs)
1942             TARGET_ARCHS=$2
1943             shift 2
1944             ;;
1945         --disable-datestamp)
1946             USE_DATESTAMP=
1947             shift
1948             ;;
1949         --xen)
1950             XEN=true
1951             shift
1952             ;;
1953         --set-value)
1954             eval $2
1955             shift 2
1956             ;;
1957         --enable-mptlinux)
1958             BUILD_MPTLINUX=true
1959             shift
1960             ;;
1961         --enable-rdac)
1962             BUILD_RDAC=true
1963             shift
1964             ;;
1965         --)
1966             shift
1967             # there are actually some lustre configure flags that we need to
1968             # handle ourselves (but we still give them to configure)
1969             if [[ \ $@\  == *\ --disable-tests\ * ]]; then
1970                 LUSTRE_TESTS=false
1971             fi
1972             CONFIGURE_FLAGS=$@
1973             CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-liblustre --enable-liblustre-tests"
1974             break
1975             ;;
1976         *)
1977             usage 1 "Unrecognized option: $1"
1978             ;;
1979     esac
1980 done
1981
1982 check_options
1983
1984 unpack_lustre
1985
1986 load_target
1987
1988 if [ -n "$OFED_VERSION" -a "$OFED_VERSION" != "inkernel" ]; then
1989     download_ofed
1990     unpack_ofed || fatal 1 "Error unpacking OFED tarball"
1991 fi
1992
1993 if $BUILD_MPTLINUX && [ -n "$MPTLINUX_VERSION" -a "$MPTLINUX_VERSION" != "inkernel" ]; then
1994     unpack_mptlinux || fatal 1 "Error unpacking MPTLINUX distribution"
1995 fi
1996
1997 # make sure the RPM build environment is set up
1998 create_rpmbuild_dirs
1999
2000 if $BUILD_RDAC && [ -n "$RDAC_VERSION" -a "$RDAC_VERSION" != "inkernel" ]; then
2001     # we don't actually need to unpack this.  just put it in the SOURCES dir
2002     #unpack_rdac || fatal 1 "Error unpacking RDAC tarball"
2003     cp "$KERNELTREE/rdac-LINUX-${RDAC_VERSION}-source.tar.gz" ${TOPDIR}/SOURCES/ ||
2004         fatal 1 "Error copying RDAC source tarball to RPM SOURCES dir"
2005 fi
2006
2007 # if an unpacked kernel source tree was given on the command line
2008 # just build lustre with it (nothing distro kernel specific here)
2009 if [ -n "$LINUX" ]; then
2010     build_mptlinux "${LINUXOBJ:-$LINUX}" "$MPTLINUX_VERSION" ||
2011         fatal 1 "error building mptlinux"
2012     build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
2013         fatal 1 "error building OFED"
2014     if ! $PATCHLESS; then
2015         build_rdac "${LINUXOBJ:-$LINUX}" "$RDAC_VERSION" ||
2016             fatal 1 "error building RDAC"
2017     fi
2018     build_lustre "$LINUX" "$LINUXOBJ"
2019 else
2020     if [ -f "${0%/*}/lbuild-$DISTRO" ]; then
2021         source ${0%/*}/lbuild-$DISTRO
2022
2023         build_with_srpm || fatal 1 "Failed to build_with_srpm"
2024     else
2025         EXTRA_VERSION_DELIMITER=${EXTRA_VERSION_DELIMITER:-"-"}
2026         source ${0%/*}/lbuild.old_school
2027
2028         old_school_download_kernel
2029
2030         build_success=false
2031         if $PATCHLESS; then
2032             patchless_build_sequence && build_success=true
2033         else
2034             [ "$DISTRO" = "sles9" ] && build_sequence_rpm_reuse && build_success=true
2035             if ! $build_success; then
2036                 build_sequence_reuse && build_success=true
2037                 if ! $build_success; then
2038                     build_sequence && build_success=true
2039                     if $build_success; then
2040                         store_for_reuse || echo "Cannot store for future reuse"
2041                     fi
2042                 fi
2043             fi
2044         fi
2045         ( $build_success ) || fatal 1 "Cannot build lustre"
2046     fi
2047 fi
2048
2049 stage