Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / build / lbuild
1 #!/bin/bash
2
3 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
4
5 #set -x
6 shopt -s extdebug
7
8 TOPDIR=$PWD
9
10 # CVSROOT is inherited from the environment
11 KERNELDIR=
12 LINUX=
13 LUSTRE=
14 RELEASE=false
15 # XXX - some recent hacking has pretty much neutered this option.
16 #       search through this file (and lbuild.old_school -- but that will
17 #       be going away soon) for "-bb" and see how many places
18 #       simply don't account for this option
19 DO_SRC=false
20 DOWNLOAD=true
21 TAG=
22 CANONICAL_TARGET=
23 TARGET=
24 TARGET_ARCH=$(uname -m)
25 TARGET_ARCHS=
26 TARGET_ARCHS_ALL=$TARGET_ARCH
27 [ "$TARGET_ARCH" = "i686" ] && TARGET_ARCHS_ALL="i686 i586 i386"
28 CONFIGURE_FLAGS=
29 EXTERNAL_PATCHES=
30 EXTRA_VERSION=
31 LUSTRE_EXTRA_VERSION=
32 STAGEDIR=
33 TMPDIR=${TMPDIR:-"/var/tmp"}
34 TIMESTAMP=
35 # XXX - i think these two parameters/arguments/variables need to be
36 #       cleaned up and merged.  they effectively do the same thing
37 REUSERPM=
38 REUSEBUILD=
39 # what does this do exactly?  does it imply no kernel build?
40 NORPM=false
41 LDISKFSRPM=true
42 SKIPLDISKFSRPM="v1_4_* b1_4"
43 SMPTYPES="smp bigsmp default ''"
44 KERNCONFSMPTYPE=
45 PATCHLESS=false
46 XEN=false
47 LINUXOBJ=
48 DISTRO=
49 KERNELTREE=
50
51 # patchless build
52 KERNELRPMSBASE=
53 RPMSMPTYPE=
54
55 # from target file
56 SERIES=
57 BASE_ARCHS=
58 BIGMEM_ARCHS=
59 BOOT_ARCHS=
60 JENSEN_ARCHS=
61 SMP_ARCHS=
62 BIGSMP_ARCHS=
63 PSERIES64_ARCHS=
64 UP_ARCHS=
65
66 # not in the target file any more
67 CONFIG=
68
69 DATE=$(date)
70
71 USE_DATESTAMP=1
72 RPMBUILD=
73
74 OLD_SCHOOL=false
75
76 export CC=${CC:-gcc}
77
78 # Readlink is not present on some older distributions: emulate it.
79 readlink() {
80     local path=$1 ll
81
82     if [ -L "$path" ]; then
83         ll="$(LC_ALL=C ls -l "$path" 2> /dev/null)" &&
84         echo "${ll/* -> }"
85     else
86         return 1
87     fi
88 }
89
90 cleanup() {
91
92     true
93 }
94
95 error() {
96     local msg="$1"
97
98     [ -n "$msg" ] && echo -e "\n${0##*/}: $msg" >&2
99
100 }
101
102 fatal() {
103
104     cleanup
105     error "$2"
106     exit $1
107
108 }
109
110 usage() {
111     cat <<EOF
112 Usage: ${0##*/} [OPTION]... [-- <lustre configure options>]
113
114   -d CVSROOT
115     Specifies the CVS Root to use when pulling files from CVS.  The
116     environment variable \$CVSROOT is used if this option is not
117     present.
118
119   --external-patches=EXTERNAL_PATCHES
120     Directory similar to lustre/lustre/kernel_patches/ that lbuild should
121     look for seres and config files in before looking in the lustre
122     tree.
123
124   --extraversion=EXTRAVERSION
125     Text to use for the rpm release and kernel extraversion.
126
127   --timestamp=TIMESTAMP
128     Date of building lustre in format YYYYMMDDhhmmss
129
130   --reuserpm=DIR
131     Try to reuse old kernel RPMs from DIR
132
133   --reusebuild=DIR
134     Try to reuse old kernel builds from DIR
135
136   --kernelrpm=DIR
137     Path to distro kernel RPM collection
138
139   --ccache
140     Use ccache
141
142   --norpm
143     Do not build RPMs (compile only mode)
144
145   --patchless
146     Build lustre client only
147
148   --distro=DISTRO
149     Which distro using. Autodetect by default
150
151   --kerneldir=KERNELDIR
152     Directory containing Linux source tarballs referenced by target
153     files.
154
155   --kerneltree=KERNELTREE
156     Directory containing dirs with Linux source tarballs referenced by target
157     files. Dir names in format kernel version ('2.6.9', etc.)
158
159   --linux=LINUX --with-linux=LINUX
160     Directory of Linux kernel sources.  When this option is used, only
161     Lustre modules and userspace are built.
162
163   --lustre=LUSTRE
164     Path to an existing lustre source tarball to use instead of
165     pulling from CVS.
166
167   --nodownload
168     Do not try to download a kernel from downloads.lustre.org
169
170   --nosrc
171     Do not build a .src.rpm, a full kernel patch, or a patched kernel
172     tarball.
173
174   --ldiskfs
175     Do ldiskfs RPM. Now true by default
176
177   --publish
178     Unused.
179
180   --release
181     Specifies that the files generated do not include timestamps, and
182     that this is an official release.
183
184   --src
185     Build a .src.rpm, a full kernel patch, and a patched kernel tarball.
186
187   --stage=DIR
188     Directory used to stage packages for release.  RPMs will be placed
189     more or less in DIR/<target>-<arch>, and the tarball will be
190     placed in DIR.
191
192   --tag=TAG
193     A CVS branch/tag name to build from when pulling from CVS.
194
195   --target=TARGET
196     The name of the target to build.  The available targets are listed
197     below.
198
199   --target-archs=TARGET_ARCHS
200     A (space delimited) list of architectures to build.  By default,
201     all of the archs supported by the TARGET will be built, in
202     addition to a .src.rpm.  This option can limit those, for machines
203     that can only build certain archs or if you only want a certain
204     arch built (for testing, or a one-off kernel).
205
206     Also note that by using a non-"base" arch (eg, i386) only kernels
207     will be built - there will be no lustre-lite-utils package.
208
209   --disable-datestamp
210     Prevents the datestamp flag (-D) from being passed to cvs for
211     checkouts. This is a workaround for a problem encountered when
212     using lbuild with tinderbox.
213
214   --xen
215     Builds a Xen domX kernel.
216
217 EOF
218
219 #   list_targets
220
221     fatal "$1" "$2"
222 }
223
224 # canonicalize a relative path
225 canon_path() {
226     local PATH="$1"
227
228     if [ ! -d "$PATH" ]; then
229         return 1
230     fi
231
232     pushd "$PATH" >/dev/null || return 1
233     local CANONPATH=$PWD
234     popd >/dev/null
235
236     echo "$CANONPATH"
237     return 0
238 }
239
240 check_options() {
241
242     if [ "$LUSTRE" ]; then
243         [ -r "$LUSTRE" ] || \
244             usage 1 "Could not find Lustre source tarball '$LUSTRE'."
245     else
246         [ "$CVSROOT" ] || \
247             usage 1 "Either specify a CVS Root with -d, or a Lustre source tarball with --lustre."
248         [ "$TAG" ] || \
249             usage 1 "A branch/tag name must be specified with --tag when not building from a tarball."
250     fi
251
252     if [ -z "$LINUX" ]; then
253         [ "$KERNELDIR" -o "$KERNELTREE" ] || \
254             usage 1 "A kernel directory must be specified with --kerneldir or --kerneltree."
255
256         [ -d "$KERNELDIR" -o -d "$KERNELTREE" ] || \
257             usage 1 "$KERNELDIR and $KERNELTREE are not a directory."
258
259         if ! $RELEASE; then
260             [ "$TAG" ] || \
261                 usage 1 "When building a snapshot, a tag name must be used."
262         fi
263
264         [ "$TARGET" ] || usage 1 "A target must be specified with --target."
265 #       TARGET_FILE="$TOPDIR/lustre/kernel_patches/targets/$TARGET.target"
266 #       [ -r "$TARGET_FILE" ] || \
267 #               usage 1 "Target '$TARGET' was not found."
268     fi
269
270     case $TARGET in
271         2.6-rhel5)
272             CANONICAL_TARGET="rhel5"
273             ;;
274         2.6-rhel4)
275             CANONICAL_TARGET="rhel-2.6"
276             ;;
277         2.6-suse)
278             CANONICAL_TARGET="sles-2.6"
279             ;;
280         2.6-sles10)
281             CANONICAL_TARGET="sles10-2.6"
282             ;;
283         hp_pnnl-2.4)
284             CANONICAL_TARGET="hp-pnnl-2.4"
285             ;;
286         2.6-vanilla \
287             | suse-2.4.21-2 \
288             | rh-2.4 \
289             | rhel-2.4 \
290             | sles-2.4 \
291             | 2.6-patchless)
292                 CANONICAL_TARGET="$TARGET"
293                 ;;
294     esac
295
296     local timestampnodig=$(echo $TIMESTAMP | sed -e s/[0-9]*//g)
297     [ "$timestampnodig" = "" ] || TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
298     local timestamplength="${#TIMESTAMP}"
299     if [ $timestamplength -eq 12 ]; then
300         TIMESTAMP="${TIMESTAMP}00"
301     elif [ $timestamplength -ne 14 ]; then
302         TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
303     fi
304
305     RPMBUILD=$(which rpmbuild 2>/dev/null | head -1)
306     if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
307         RPMBUILD=$(which rpm 2>/dev/null | head -1)
308         if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
309             usage 1 "Could not find binary for making rpms (tried rpmbuild and rpm)."
310         fi
311     fi
312
313     if [ -n "$CCACHE" ]; then
314         which "$DISTCC" 2>/dev/null && export DISTCC RPM_BUILD_NCPUS
315
316         if which "$CCACHE" 2>/dev/null; then
317             local ccache=$(which "$CCACHE")
318             local bindir="$TOPDIR/bin"
319
320             [ -d $bindir ] || mkdir -p $bindir
321             if [ -d $bindir ]; then
322                 rm ${bindir}/* > /dev/null 2>&1
323                 ln -s "$ccache" ${bindir}/ccache
324                 ln -s "$ccache" ${bindir}/cc
325                 ln -s "$ccache" ${bindir}/$CC
326                 export PATH=$bindir:$PATH
327             fi
328             export CCACHE && export CC="ccache $CC"
329             # zero the cache so we can see how effective we are being with it
330             ccache -z
331         fi
332     fi
333
334     [ -z "$DISTRO" ] && DISTRO=$(autodetect_distro)
335 }
336
337 # autodetect used Distro
338 autodetect_distro() {
339
340     local name
341     local version
342
343     if [ -f /etc/SuSE-release ]; then
344         name=sles
345         version=$(grep ^VERSION /etc/SuSE-release)
346         version=${version#*= }
347     elif [ -f /etc/redhat-release ]; then
348         name=$(head -1 /etc/redhat-release)
349         version=$(echo "$distroname" |
350                   sed -e 's/^[^0-9.]*//g' | sed -e 's/[ \.].*//')
351     fi
352     if [ -z "$name" -o -z "$version" ]; then
353         fatal 1 "I don't know how to determine distro type/version.\n" \
354                 "Either update autodetect_distro() or use the --distro argument"
355     fi
356
357     echo ${name}${version}
358     return 0
359
360 }
361
362 uniqify() {
363
364     echo $(echo "$*" | xargs -n 1 | sort -u)
365
366 }
367
368 download_srpm() {
369     local target=$1
370     local srpm=$2
371
372     # ~sigh~  the download site doesn't actually have these kernels
373     echo "Downloading http://downloads.lustre.org/public/kernels/$target/old/$srpm..."
374     if ! wget -nv "http://downloads.lustre.org/public/kernels/$target/old/$srpm" \
375         -O "$KERNELDIR/$srpm"; then
376         fatal 1 "Could not download target $target's kernel SRPM $srpm from downloads.lustre.org."
377     fi
378     [ -s "$KERNELDIR/$srpm" ] || {
379         rm -rf $KERNELDIR/$srpm
380         fatal 1 "Could not download target $target's kernel SRPM $srpm from downloads.lustre.org."
381     }
382
383 }
384
385 download_ofed() {
386
387     if [ -n "$OFED_VERSION" -a "$OFED_VERSION" != "inkernel" ] && \
388        [ ! -r "$KERNELTREE/OFED-${OFED_VERSION}.tgz" ]; then
389         if $DOWNLOAD; then
390             local location="http://downloads.lustre.org/public/OFED/"
391             echo "Downloading $location/OFED-${OFED_VERSION}.tgz..."
392             if ! wget -nv "$location/OFED-${OFED_VERSION}.tgz" \
393                 -O "$KERNELTREE/OFED-${OFED_VERSION}.tgz"; then
394                 fatal 1 "Could not download OFED-${OFED_VERSION}.tgz" \
395                         "from downloads.lustre.org."
396             fi
397         else
398             fatal 1 "OFED-${OFED_VERSION}.tgz not found in kernel" \
399                     "directory $KERNELTREE."
400         fi
401     fi
402
403 }
404
405 load_target() {
406
407     EXTRA_VERSION_save="$EXTRA_VERSION"
408     for patchesdir in "$EXTERNAL_PATCHES" \
409                       "$TOPDIR/lustre/lustre/kernel_patches"; do
410         TARGET_FILE="$patchesdir/targets/$TARGET.target"
411         [ -r "$TARGET_FILE" ] && break
412     done
413     [ -r "$TARGET_FILE" ] || fatal 1 "Target $TARGET was not found."
414
415     echo "Loading target config file $TARGET.target..."
416
417     . "$TARGET_FILE"
418
419     # doesn't make any sense to build OFED for xen domX's
420     if $XEN; then
421         OFED_VERSION=""
422     fi
423
424     # XXX - set_rpm_smp_type is an ugly undeterministic hack.  it needs to
425     #       go away and the target just specify the $RPMSMPTYPE
426     [ -z "$RPMSMPTYPE" ] && set_rpm_smp_type
427
428     # CC might have been overwriten in TARGET_FILE
429     if [[ $CC != ccache\ * ]] && which "$CCACHE" 2>/dev/null; then
430         export CCACHE && export CC="ccache $CC"
431     fi
432
433     if [ ! "$KERNELTREE" = "" ] && [ -d "$KERNELTREE" ]; then
434         KERNELDIR="$KERNELTREE/${lnxmaj}"
435         [ -d "$KERNELDIR" ] || mkdir "$KERNELDIR"
436     fi
437
438     # verify the series is available
439     if [ "$SERIES" ]; then
440         for series in $SERIES; do
441             for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
442                 [ -r "$patchesdir/series/$series" ] && continue 2
443             done
444             fatal 1 "Target $TARGET's series $SERIES could not be" \
445                     "found.\nSearched:\n\t$EXTERNAL_PATCHES/series\n" \
446                     "\t$TOPDIR/lustre/lustre/kernel_patches/series."
447         done
448     fi
449
450     # set the location of the .config file
451     local XENPOSTFIX=""
452     if $XEN; then
453         XENPOSTFIX="-xen"
454     fi
455     if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH.config ]; then
456         CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET$XENPOSTFIX-$TARGET_ARCH.config"
457     fi
458
459     # figure out our smp kernel type and set the .config if we have one
460     local smptype
461     for smptype in $SMPTYPES; do
462         [ "$smptype" = "''" ] && smptype=
463         if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH-${smptype}.config ]; then
464             CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET$XENPOSTFIX-$TARGET_ARCH-${smptype}.config"
465             KERNCONFSMPTYPE=$smptype
466     fi
467     done
468
469     local lnxrelnew=${lnxrel//-/_}
470
471     # remember the EXTRA_VERSION before we diddle it here
472     # XXX - we really should not diddle with any values read in from the
473     #       target file.  if we want to modify a value, we should create
474     #       a new variable.
475     PRISTINE_EXTRA_VERSION=$EXTRA_VERSION
476
477     if ! $PATCHLESS && [ ! -f "$CONFIG_FILE" ]; then
478         fatal 1 "Config file for target $TARGET missing from" \
479                 "$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/."
480     fi
481
482     if [ "$EXTRA_VERSION_save" ]; then
483         EXTRA_VERSION="$EXTRA_VERSION_save"
484     elif ! $RELEASE; then
485         # if there is no patch series, then this is not a lustre specific
486         # kernel.  don't make it look like one
487         if [ -n "$SERIES" ]; then
488             #remove the @VERSION@ (lustre version)
489 #            EXTRA_VERSION=$(echo $EXTRA_VERSION | sed -e "s/\(.*_lustre\)\..*/\1/")
490 #            EXTRA_VERSION="${EXTRA_VERSION}-${TAG}.${TIMESTAMP}"
491             ! ( $PATCHLESS ) && EXTRA_VERSION="${EXTRA_VERSION}.${TIMESTAMP}"
492         fi
493     fi
494     # EXTRA_VERSION=${EXTRA_VERSION//-/_}
495
496     ALL_ARCHS="$BASE_ARCHS $BIGMEM_ARCHS $BOOT_ARCHS $JENSEN_ARCHS $SMP_ARCHS $BIGSMP_ARCHS $PSERIES64_ARCHS $UP_ARCHS"
497
498     BUILD_ARCHS=
499     for arch in $(uniqify "$ALL_ARCHS"); do
500         if [ -z "$TARGET_ARCHS" ] ||
501            [[ \ $TARGET_ARCHS\  = *\ $arch\ * ]]; then
502             BUILD_ARCHS="$BUILD_ARCHS $arch"
503         fi
504     done
505     [ "$BUILD_ARCHS" ] || usage 1 "No available target archs to build."
506     echo "Building for: $BUILD_ARCHS"
507 }
508
509 tarflags() {
510     local file="$1"
511
512     case "$file" in
513         '')
514             fatal 1 "tarflags(): File name argument missing."
515             ;;
516         *.tar.gz | *.tgz)
517             echo 'zxf'
518             ;;
519         *.tar.bz2)
520             echo 'jxf'
521             ;;
522         *.tar)
523             echo 'xf'
524             ;;
525         *)
526             fatal 1 "tarflags(): Unrecognized tar extension in file: $1"
527             ;;
528     esac
529
530 }
531
532 untar() {
533     local file="$1"
534
535     echo "Untarring ${file##*/}..."
536     tar $(tarflags "$file") "$file"
537
538 }
539
540 unpack_ofed() {
541
542     untar "$KERNELTREE/OFED-${OFED_VERSION}.tgz" || fatal 1 "Error unpacking OFED tarball"
543     [ -d OFED ] || ln -sf OFED-[0-9].[0-9]* OFED
544
545 }
546
547 unpack_lustre() {
548
549     if [ -z "$LUSTRE" ]; then
550         local DATESTAMP=""
551
552         if [ -n "$USE_DATESTAMP" ]; then
553             DATESTAMP="-D '$DATE'"
554         fi
555
556         local DIRNAME="lustre-$TAG-$TIMESTAMP"
557
558         cvs -d "$CVSROOT" -qz3 co $DATESTAMP -d "$DIRNAME" lustre || \
559             fatal 1 "There was an error checking out toplevel Lustre from CVS."
560         pushd "$DIRNAME" > /dev/null
561         ./lustrecvs "$TAG" || \
562             fatal 1 "There was an error checking out Lustre/Portals/Build from CVS."
563         echo "Creating lustre tarball..."
564         sh autogen.sh || fatal 1 "There was an error running autogen.sh."
565         ./configure --disable-{modules,utils,liblustre,tests,doc} || \
566             fatal 1 "There was an error running ./configure to create makefiles."
567         make dist || fatal 1 "There was an error running 'make dist'."
568         LUSTRE=$PWD/lustre-*.tar.gz
569         popd > /dev/null
570     fi
571
572     untar "$LUSTRE" || fatal 1 "Error unpacking Lustre tarball"
573     [ -d lustre ] || ln -sf lustre-[0-9].[0-9]* lustre
574
575 }
576
577 do_patch_linux() {
578
579     local do_patch=${1:-true}
580
581     FULL_PATCH="$PWD/lustre-kernel-${TARGET}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}.patch"
582     [ -f "$FULL_PATCH" ] && rm -f "$FULL_PATCH"
583     $do_patch && pushd linux >/dev/null
584     for series in $SERIES; do
585         echo -n "Applying series $series:"
586         for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
587             [ -r "$patchesdir/series/$series" ] || continue
588             SERIES_FILE="$patchesdir/series/$series"
589             for patch in $(<"$SERIES_FILE"); do
590                 echo -n " $patch"
591                 PATCH_FILE="$patchesdir/patches/$patch"
592                 [ -r "$PATCH_FILE" ] || \
593                     fatal 1 "Patch $patch does not exist in Lustre tree."
594                 cat "$PATCH_FILE" >> "$FULL_PATCH" || {
595                     rm -f $FULL_PATCH
596                     fatal 1 "Error adding patch $patch to full patch."
597                 }
598                 if $do_patch; then
599                     patch -s -p1 < "$PATCH_FILE" || {
600                         rm -f $FULL_PATCH
601                         fatal 1 "Error applying patch $patch."
602                     }
603                 fi
604             done
605             break
606         done
607         echo
608     done
609     $do_patch && popd >/dev/null
610     echo "Full patch has been saved in ${FULL_PATCH##*/}."
611
612 }
613
614 build_lustre() {
615
616     cp "$LUSTRE" SOURCES
617
618     pushd lustre >/dev/null
619
620     echo "Building Lustre RPMs for: $BUILD_ARCHS..."
621     targets=
622     for arch in $BUILD_ARCHS; do
623         targets="--target $arch $targets"
624     done
625
626     local confoptions="--with-linux=${LINUX}"
627     if $PATCHLESS; then
628         confoptions="--with-linux=${LINUX} --disable-server"
629     fi
630     if [ ! "$LINUXOBJ" = "" ]; then
631         confoptions="$confoptions --with-linux-obj=${LINUXOBJ}"
632     fi
633
634     ./configure $confoptions ${CONFIGURE_FLAGS}
635     if [ "$?" != "0" ]; then
636         local saved_config="../config.log.$(date +%s)"
637         cp config.log $saved_config
638         chmod a+r $saved_config
639         echo "Saved config.log is at $saved_config"
640         popd
641         return 255
642     fi
643
644     gen_lustre_version
645
646     # hack. Somebody move build/lustre.spec to lustre.spec for b1_6
647     local lustre_spec
648     [ -f lustre.spec ] && lustre_spec=lustre.spec
649     [ -f build/lustre.spec ] && lustre_spec=build/lustre.spec
650
651     [ -f "$lustre_spec" ] && sed \
652         -e "s^Release: .*$^Release: $LUSTRE_EXTRA_VERSION^" \
653         < $lustre_spec \
654         > ../lustre.spec
655
656     local rpmbuildopt='-bb'
657     if $NORPM; then
658         rpmbuildopt='-bc'
659         echo NORPM mode. Only compiling.
660     fi
661
662     $RPMBUILD $targets $rpmbuildopt ../lustre.spec \
663         ${PATCHLESS:+--define "lustre_name lustre-client"} \
664         --define "_tmppath $TMPDIR" \
665         --define "_topdir $TOPDIR" || \
666         fatal 1 "Error building rpms for $BUILD_ARCHS."
667
668     popd >/dev/null
669     ( $(skeep_ldiskfs_rpm $TAG) ) && return
670
671     pushd lustre/ldiskfs || return 255
672     make dist
673     if [ "$?" != "0" ]; then
674         popd
675         return 255
676     fi
677     cp lustre-ldiskfs*.tar.gz $TOPDIR/SOURCES
678
679     gen_lustre_version
680
681     local ldiskfs_spec=lustre-ldiskfs.spec
682     [ -f "$ldiskfs_spec" ] && sed \
683     -e "s^Release: .*$^Release: $LUSTRE_EXTRA_VERSION^" \
684     < $ldiskfs_spec \
685     > ../lustre-ldiskfs.spec
686
687     $RPMBUILD $targets $rpmbuildopt ../lustre-ldiskfs.spec \
688         --define "_tmppath /var/tmp" \
689         --define "_topdir $TOPDIR"
690     if [ "$?" != "0" ]; then
691         popd
692         return 255
693     fi
694
695     if $DO_SRC; then
696             $RPMBUILD -bs ../lustre-ldiskfs.spec \
697             --define "_tmppath /var/tmp" \
698             --define "_topdir $TOPDIR"
699         if [ "$?" != "0" ]; then
700             popd
701             return 255
702         fi
703     fi
704     popd
705
706 }
707
708 stage() {
709
710     [ "$STAGEDIR" ] || return 0
711
712     for arch in $BUILD_ARCHS; do
713         rpmdir="${STAGEDIR}/${CANONICAL_TARGET}-${arch}"
714         echo "${0##*/}: Copying RPMs into ${rpmdir}"
715         mkdir -p "${rpmdir}"
716         cp -v RPMS/${arch}/*.rpm "${rpmdir}"
717         if [ -d RPMS/noarch ]; then
718             cp -v RPMS/noarch/*.rpm "${rpmdir}"
719         fi
720     done
721
722     cp -v "$LUSTRE" "$STAGEDIR"
723 }
724
725 #check if we need to build separate ldiskfs RPM
726 skeep_ldiskfs_rpm() {
727         local tag="$1"
728
729         local skip=false
730
731         if ! $LDISKFSRPM; then
732             skip=true
733         elif $PATCHLESS; then
734             skip=true
735         else
736             for skiptag in $SKIPLDISKFSRPM; do
737                 [[ $tag == $skiptag ]] && skip=true && break
738             done
739         fi
740         echo $skip
741
742 }
743
744 #generate LUSTRE_EXTRA_VERSION from EXTRA_VERSION
745 gen_lustre_version() {
746
747     LUSTRE_EXTRA_VERSION="${lnxmaj}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}${TARGET_DELIMITER}${RPMSMPTYPE:-${KERNCONFSMPTYPE:-"smp"}}"
748     LUSTRE_EXTRA_VERSION=${LUSTRE_EXTRA_VERSION//-/_}
749
750 }
751
752 set_rpm_smp_type() {
753
754     local infact_arch="${TARGET_ARCH}"
755
756     RPMSMPTYPE=default
757     [ "$infact_arch" == "i586" ] && infact_arch="i686"
758
759     local smp_type
760     for smp_type in $SMP_ARCHS; do
761         [ $infact_arch == $smp_type ] && RPMSMPTYPE=smp && break
762     done
763
764     for smp_type in $BIGSMP_ARCHS; do
765         [ $infact_arch == $smp_type ] && RPMSMPTYPE=bigsmp && break
766     done
767
768 }
769
770 # This function takes a linux source pool and digs out the linux release
771 # from it
772 find_linux_release() {
773     local SRCDIR="$1"
774
775     local LINUXRELEASEHEADER=$SRCDIR/include/linux/version.h
776     if [ -s $SRCDIR/include/linux/utsrelease.h ]; then
777         LINUXRELEASEHEADER=$SRCDIR/include/linux/utsrelease.h
778     fi
779
780     sed -ne 's/#define UTS_RELEASE "\(.*\)"$/\1/p' $LINUXRELEASEHEADER
781
782 }
783
784 find_linux_rpm() {
785     local prefix="$1"
786     local delimiter=${2:-"-"}
787
788     local pathtorpms="${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
789     [ -d $pathtorpms ] || return 255
790
791     local kernelbinaryrpm rpmfile
792     local wanted_kernel="${lnxmaj}${delimiter}${lnxrel}"
793
794     local arch ret=1
795     for arch in $TARGET_ARCHS_ALL; do
796         local found_rpm="" rpm
797         for rpm in ${pathtorpms}/${arch}/*.rpm; do
798             if rpm -q --provides -p "$rpm" | grep -q "kernel${prefix} = $wanted_kernel"; then
799                 found_rpm="$rpm"
800                 ret=0
801                 break
802             fi
803         done
804         [ -f "$found_rpm" ] && TARGET_ARCH="$arch" && BUILD_ARCHS="$arch" && break
805     done
806
807     echo "$found_rpm"
808     return $ret
809
810 }
811
812 #unpack kernel(/source/devel) RPM
813 #
814 # This function and it's setting of $LINUX and $LINUXOBJ is a total hack that
815 # needs to completely refactored.  It completely ingores that $BUILD_ARCHS may
816 # contain a list of arches for which rpmbuild commands (including the one for
817 # lustre itself)
818 unpack_linux_rpm() {
819     local kernelrpm="${1}"
820     local delimiter=${2:-"-"}
821
822     [ -f "$kernelrpm" ] || return 255
823     [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused
824
825     pushd $TOPDIR/reused || return 255
826
827     local RC=0
828
829     rpm2cpio < "$kernelrpm" | cpio -id > /dev/null 2>&1
830     if [ ${PIPESTATUS[0]} -eq 0 ]; then
831         # RHEL-style and SLES-style rpms
832         local paths="kernels/${lnxmaj}${delimiter}${lnxrel}-${TARGET_ARCH} linux-${lnxmaj}${delimiter}${lnxrel}"
833
834         local path
835         for path in $paths; do
836             local src='usr/src'
837
838             if [ -d "$src/$path/" ]; then
839                 LINUX="$(pwd)/$src/$path"
840             fi
841             # SLES has a separate -obj tree
842             if [ -d "$src/${path}-obj" ]; then
843                 local src="$src/${path}-obj"
844                 local objects="$TARGET_ARCH/$RPMSMPTYPE"
845
846                 # Novell, are you *TRYING* to make life hard for me?
847                 if [ -d "$src/powerpc" ]; then
848                     objects="powerpc/$TARGET_ARCH"
849                 elif [ $TARGET_ARCH == 'i686' ]; then
850                     objects="i386/$RPMSMPTYPE"
851                 fi
852
853                 LINUXOBJ="$(pwd)/$src/$objects"
854             fi
855         done
856         if [ -z "$LINUX" ]; then
857             RC=255
858         else
859             # dig out the release version
860             LINUXRELEASE=$(find_linux_release ${LINUXOBJ:-$LINUX})
861             if [ -z "$LINUXRELEASE" ]; then
862                 echo "Failed to find linux release in ${LINUXOBJ:-$LINUX}"
863                 RC=255
864             fi
865         fi
866     else
867         RC=255
868     fi
869     popd
870     return $RC
871 }
872
873 build_kernel_ib() {
874     # build kernel-ib{,-devel}
875     # some I/B drivers are architecture dependent and kernel-ib's configure
876     # does not figure it out for us ~sigh~
877     local configure_options=""
878     case "$TARGET_ARCH" in
879         x86_64 | ia64)
880             configure_options="--with-ipath_inf-mod"
881             ;;
882         ppc64)
883             configure_options="--with-ipath_inf-mod --with-ehca-mod"
884             ;;
885     esac
886     local K_SRC="K_SRC"
887     # ofed 1.3 had a bug in the rpm spec
888     if [ "$OFED_VERSION" = "1.3" ]; then
889         K_SRC="KSRC"
890     fi
891     $RPMBUILD --rebuild --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
892               --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
893               --define "KVERSION ${LINUXRELEASE}" \
894               --define "$K_SRC ${LINUXOBJ:-${LINUX}}" \
895               --define "LIB_MOD_DIR /lib/modules/${LINUXRELEASE}/updates" \
896               --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
897
898     if [ ${PIPESTATUS[0]} != 0 ]; then
899         fatal 1 "Error building kernel-ib"
900     fi
901
902     pushd "$TOPDIR" >/dev/null
903     rm -rf kernel-ib-devel
904     mkdir kernel-ib-devel
905     cd kernel-ib-devel
906     local rpm=$(ls $TOPDIR/RPMS/*/kernel-ib-devel-${OFED_VERSION}-${LINUXRELEASE//-/_}.*.rpm)
907     rpm2cpio -itv < $rpm | cpio -id
908     CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/ofa_kernel ${CONFIGURE_FLAGS}"
909     popd >/dev/null
910 }
911
912 store_for_reuse() {
913         local articles="$1"
914         local module="$2"
915         local location="$3"
916         local signature="$4"
917         local use_links="$5"
918
919         local linkflag=""
920         if $use_links; then
921             linkflag="l"
922         fi
923
924         location="$location"/"$signature"/"$module"
925         mkdir -p "$location"
926         ## use eval/echo here to make sure shell expansions are performed
927         #if ! cp -a${linkflag} $(eval echo $articles) "$location"; then
928         local article
929         for article in $(eval echo $articles); do
930             if ! cp -a${linkflag} "$article" "$location"; then
931                 error "Failed to copy \"$article\" to \"$location\" in store_for_reuse()"
932                 return 1
933             fi
934         done
935
936         return 0
937
938 }
939
940 reuse() {
941     local module="$1"
942     local dest="$2"
943     local use_links="${3:-false}"
944     local signature="$4"
945
946     if [ -n "$REUSEBUILD" ] && [ -d $REUSEBUILD/$signature/$module ]; then
947         # so that we know how stale this entry is
948         touch $REUSEBUILD/$signature/$module/.lastused
949         if $use_links; then
950             if ls $REUSEBUILD/$signature/$module/* >/dev/null 2>&1; then
951                 cp -al $REUSEBUILD/$signature/$module/* $dest/
952             fi
953         else
954             # copying is pretty heavy
955             # cp -a $REUSEBUILD/$signature/$module/* $dest/
956             # do some creative symlinking instead
957             local dir
958             for dir in BUILD SRPMS SPECS; do
959                 if ls $REUSEBUILD/$signature/$module/$dir/* >/dev/null 2>&1; then
960                     ln -s $REUSEBUILD/$signature/$module/$dir/* $dest/$dir
961                 fi
962             done
963             # sources have to be copied by file because we need SOURCES to
964             # be a dir we can write into
965 # could overrun ls's arg list here
966             #ls $REUSEBUILD/$signature/$module/SOURCES/* |
967             find $REUSEBUILD/$signature/$module/SOURCES/ -type f |
968                 xargs ln -t $dest/SOURCES -s
969
970             # same for RPMS/* dirs
971 # could overrun ls's arg list here
972             #ls $REUSEBUILD/$signature/$module/RPMS/$TARGET_ARCH/* |
973             local dir
974             for dir in $REUSEBUILD/$signature/$module/RPMS/*; do
975                 mkdir -p $dest/RPMS/${dir##*/}
976                 find $dir -type f |
977                   xargs ln -t $dest/RPMS/${dir##*/} -s
978             done
979                      
980         fi
981         return 0
982     else
983         return 1
984     fi
985 }
986
987 basearch() {
988     local arch="$1"
989
990     if [[ $arch = i[3456]86 ]]; then
991         echo "i386"
992     else
993         echo "$arch"
994     fi
995
996 }
997
998 build_kernel_with_srpm() {
999
1000     # need to generate the patch for this target
1001     do_patch_linux false >&2    # sets global $FULL_PATCH (yeah, yuck)
1002
1003     # get an md5sum of the kernel patch + config for reuse check
1004     # XXX really, there needs to be a signature and a CONFIG_FILE per arch
1005     #     in BUILD_ARCHS
1006     local REUSE_SIGNATURE=$(cat $CONFIG_FILE $TARGET_FILE $FULL_PATCH | md5sum | cut -d" " -f1)
1007
1008     # see if we can link to the reuse pool
1009     # XXX - hrm.  i'm not convinced this doesn't belong in the reuse "library"
1010     local CAN_LINK_FOR_REUSE=false
1011     touch $REUSEBUILD/$$
1012     if cp -al $REUSEBUILD/$$ $TOPDIR/; then
1013         CAN_LINK_FOR_REUSE=true
1014     fi
1015     rm $REUSEBUILD/$$
1016
1017     # the extra version string to use for the kernel (which might be a reused
1018     # kernel, remember)
1019     local kernel_extra_version=""
1020     if $REUSERPM && reuse kernel "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1021                                  "$REUSE_SIGNATURE"; then
1022         # figure out the EXTRA_VERSION of the kernel we are re-using
1023         kernel_extra_version=$(ls $TOPDIR/RPMS/$TARGET_ARCH/kernel-lustre-*${lnxmaj}${EXTRA_VERSION_DELIMITER}${PRISTINE_EXTRA_VERSION}.*.$TARGET_ARCH.rpm)
1024         kernel_extra_version=${kernel_extra_version##*kernel-lustre-*${lnxmaj}${EXTRA_VERSION_DELIMITER}}
1025         kernel_extra_version=${kernel_extra_version%%.$TARGET_ARCH.rpm}
1026     else
1027         # nothing cached, build from scratch
1028         if [ ! -r "$KERNELDIR/$KERNEL_SRPM" ]; then
1029             download_srpm "$CANONICAL_TARGET" "$KERNEL_SRPM"
1030         fi
1031
1032         rpm -ivh $KERNELDIR/$KERNEL_SRPM --define "_topdir $TOPDIR" >&2 || {
1033         # should we clean this up or leave it for analysis?
1034             #rm -rf $RPMTOPDIR
1035             fatal 1 "Error installing kernel SRPM."
1036         }
1037
1038         # put the Lustre kernel patch into the RPM build tree
1039         cp $FULL_PATCH $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch
1040         prepare_and_build_srpm
1041
1042         # store the resulting kernel RPM build tree for future use
1043         if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1044                              "kernel" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1045                              "$CAN_LINK_FOR_REUSE"; then
1046             error "Failed to store kernel RPMS for reuse"
1047             echo "unknown"
1048             return 1
1049         fi
1050         kernel_extra_version=$EXTRA_VERSION
1051     fi  # build reuse
1052
1053     # should now have the following RPMs
1054     # $TOPDIR/RPMS/$arch/kernel-lustre-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1055     # $TOPDIR/RPMS/$arch/kernel-lustre-devel-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1056     # $TOPDIR/RPMS/$arch/kernel-lustre-headers-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1057     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-common-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1058     # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1059
1060     echo $kernel_extra_version
1061     return 0
1062
1063 }
1064
1065 build_with_srpm() {
1066
1067     if ! $PATCHLESS; then
1068         local kernel_extra_version
1069         if ! kernel_extra_version=$(build_kernel_with_srpm); then
1070             fatal 1 "Failed to build the kernel from it's SRPM"
1071         fi
1072 #local kernel_extra_version="60-0.33_lustre.1.8.0.50.20090311172757"
1073
1074         for arch in $BUILD_ARCHS; do
1075
1076             local kernel_devel_rpm="$TOPDIR/RPMS/$arch/$(devel_kernel_name true)-$lnxmaj$EXTRA_VERSION_DELIMITER$kernel_extra_version.$arch.rpm"
1077
1078             # install the -devel RPM in preparation for the lustre build
1079             if ! lnxrel="$kernel_extra_version" unpack_linux_rpm \
1080                            $kernel_devel_rpm $EXTRA_VERSION_DELIMITER; then
1081                 fatal 1 "Could not find the Linux tree in $kernel_devel_rpm"
1082             fi
1083
1084             # XXX - superhack of all superhacks!  kernel-lustre-devel doesn't
1085             #       have have sources in it, so we need to pull them out of
1086             #       the SRPM
1087             #       yeah.  blech.
1088             cp BUILD/kernel-lustre-${lnxmaj}/linux-${lnxmaj}.$arch/fs/ext3/*.[ch] \
1089                $TOPDIR/reused/usr/src/kernels/${lnxmaj}${EXTRA_VERSION_DELIMITER}${kernel_extra_version}-${arch}/fs/ext3
1090         done
1091     else
1092         # need to find and unpack the vendor's own kernel-devel for patchless
1093         # client build
1094         local kernelrpm
1095         if ! kernelrpm=$(find_linux_rpm "-$DEVEL_KERNEL_TYPE" ${EXTRA_VERSION_DELIMITER:-"-"}); then
1096             fatal 1 "Could not find the kernel-$DEVEL_KERNEL_TYPE RPM in ${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}"
1097         fi
1098         if ! lnxrel="$lnxrel" unpack_linux_rpm "$kernelrpm" \
1099                                                "${EXTRA_VERSION_DELIMITER:--}"; then
1100             fatal 1 "Could not find the Linux tree in $kernelrpm"
1101         fi
1102     fi
1103
1104     # before lustre, build kernel-ib
1105     if [ -n "$OFED_VERSION" -a "$OFED_VERSION" != "inkernel" ]; then
1106         # see if we can link to the reuse pool
1107         # XXX - hrm.  i'm not convinced this doesn't belong in the reuse "library"
1108         local CAN_LINK_FOR_REUSE=false
1109         touch $REUSEBUILD/$$
1110         if cp -al $REUSEBUILD/$$ $TOPDIR/; then
1111             CAN_LINK_FOR_REUSE=true
1112         fi
1113         rm $REUSEBUILD/$$
1114
1115         local REUSE_SIGNATURE=$({ echo "$OFED_VERSION"; echo "$(find_linux_release ${LINUXOBJ:-$LINUX})"; cat "${LINUXOBJ:-${LINUX}}/include/linux/autoconf.h"; } | md5sum | cut -d" " -f1)
1116         if ! reuse ofed "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1117                         "$REUSE_SIGNATURE"; then
1118             # stash away the existing built articles for a moment
1119             mkdir bak
1120             mv {BUILD,{S,}RPMS,S{OURCE,PEC}S} bak
1121             function mv_back {
1122                 pushd bak
1123                 find . | cpio -pudlm ..
1124                 popd
1125                 rm -rf bak
1126             }
1127             create_rpmbuild_dirs
1128             # build it
1129             build_kernel_ib
1130             if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1131                                  "ofed" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1132                                  "$CAN_LINK_FOR_REUSE"; then
1133                 error "Failed to store OFED RPMS for reuse"
1134                 mv_back
1135                 return 1
1136             fi
1137             # put the stuff we stashed away back
1138             mv_back
1139         fi
1140     fi
1141
1142     # now build Lustre
1143     if build_lustre; then
1144         # the build worked.  resolve any symlinked files (i.e. from reuse)
1145         # in RPMS/$arch to real files so that that that huge mess of
1146         # complication knows as LTS can copy them yet somewhere else.
1147         # is it any wonder this whole process is so damn so?  anyone ever
1148         # heard of hardlinks?  it this cool new thing that allows you save
1149         # tons of time and space by creating... well you can go read about
1150         # them if you have not heard about them yet.
1151         # can i say how much the implemenation of all of this really impedes
1152         # RPM reuse?
1153         pushd RPMS/$TARGET_ARCH
1154             for file in *; do
1155                 if [ -h $file ]; then
1156                     cp $file foo
1157                     mv foo $file
1158                 fi
1159             done
1160         popd
1161     fi
1162 }
1163
1164 create_rpmbuild_dirs() {
1165
1166     if [ ! -d RPMS ]; then
1167         mkdir -p RPMS
1168         for arch in $BUILD_ARCHS; do
1169             mkdir RPMS/$arch
1170         done
1171     fi
1172     [ -d BUILD ] || mkdir BUILD
1173     [ -d SOURCES ] || mkdir SOURCES
1174     [ -d SPECS ] || mkdir SPECS
1175     [ -d SRPMS ] || mkdir SRPMS
1176
1177 }
1178
1179 new_list() {
1180
1181     echo ""
1182
1183 }
1184
1185 add_list() {
1186     local list="$1"
1187     local item="$2"
1188
1189     echo "$list $item"
1190
1191 }
1192
1193 is_list_member() {
1194     local list="$1"
1195     local item="$2"
1196
1197     [[ $list\  == *\ $item\ * ]]
1198
1199 }
1200
1201 #########################################################################
1202 # Generate a backtrace through the call stack.
1203 #
1204 # Input: None
1205 # Output: None
1206 #########################################################################
1207 backtrace() {
1208     local strip=${1:-1}
1209
1210     local funcname="" sourcefile="" lineno="" n
1211
1212     echo "Call stack: (most recent first)"
1213     for (( n = $strip ; n < ${#FUNCNAME[@]} ; ++n )) ; do
1214         funcname=${FUNCNAME[$n - 1]}
1215         sourcefile=$(basename ${BASH_SOURCE[$n]})
1216         lineno=${BASH_LINENO[$n - 1]}
1217         # Display function arguments
1218         if [[ ! -z "${BASH_ARGV[@]}" ]]; then
1219             local args newarg j p=0
1220             for (( j = ${BASH_ARGC[$n - 1]}; j > 0; j-- )); do
1221                 newarg=${BASH_ARGV[$j + $p - 1]}
1222                 args="${args:+${args} }'${newarg}'"
1223             done
1224             let p+=${BASH_ARGC[$n - 1]}
1225         fi
1226         echo "  ${funcname} ${args:+${args} }at ${sourcefile}:${lineno}"
1227     done
1228
1229     echo
1230     echo "BEGIN BACKTRACE"
1231
1232     #echo ${BASH_LINENO[*]}
1233     #echo ${BASH_SOURCE[*]}
1234     #echo ${FUNCNAME[*]}
1235     local i=$((${#FUNCNAME[@]} - 1))
1236     while [ $i -ge 0 ]; do
1237         local SOURCELINE="${BASH_SOURCE[$i + 1]}:${BASH_LINENO[$i]}"
1238         # Can't figure out how to get function args from other frames...
1239         local FUNCTION="${FUNCNAME[$i]}()"
1240         echo "$SOURCELINE:$FUNCTION"
1241         i=$((i - 1))
1242     done
1243
1244     echo "END BACKTRACE"
1245
1246     echo $BACKTRACE
1247
1248 }
1249
1250 [ -r ~/.lbuildrc ] && . ~/.lbuildrc
1251
1252 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:,xen -- "$@")
1253
1254 if [ $? != 0 ]; then
1255     usage 1
1256 fi
1257
1258 eval set -- "$options"
1259
1260 while [ "$1" ]; do
1261     case "$1" in
1262         '')
1263             usage 1
1264             ;;
1265         --ccache)
1266             CCACHE='ccache'
1267             shift
1268             ;;
1269         -d)
1270             CVSROOT=$2
1271             shift 2
1272             ;;
1273         -D)
1274             DATE=$2
1275             shift 2
1276             ;;
1277         --external-patches)
1278             EXTERNAL_PATCHES=$2
1279             shift 2
1280             ;;
1281         --extraversion)
1282             EXTRA_VERSION=$2
1283             shift 2
1284             ;;
1285         --help | -h)
1286             usage 0
1287             ;;
1288         --kerneldir)
1289             KERNELDIR=$2
1290             shift 2
1291             ;;
1292         --kerneltree)
1293             if ! KERNELTREE=$(canon_path "$2"); then
1294                 fatal 1 "Could not determine the canonical location of $2"
1295             fi
1296             shift 2
1297             ;;
1298         --linux | --with-linux)
1299             if ! LINUX=$(canon_path "$2"); then
1300                 fatal 1 "Could not determine the canonical location of $2"
1301             fi
1302             shift 2
1303             ;;
1304         --distro)
1305             DISTRO=$2
1306             shift 2
1307             ;;
1308         --reuserpm)
1309             REUSERPM=$2
1310             shift 2
1311             ;;
1312         --reusebuild)
1313             if ! REUSEBUILD=$(canon_path "$2"); then
1314                 fatal 1 "Could not determine the canonical location of $2"
1315             fi
1316             shift 2
1317             ;;
1318         --norpm)
1319             NORPM=true
1320             shift
1321             ;;
1322         --ldiskfs)
1323             LDISKFSRPM=true
1324             shift
1325             ;;
1326         --patchless)
1327             PATCHLESS=true
1328             shift
1329             ;;
1330         --kernelrpm)
1331             if ! KERNELRPMSBASE=$(canon_path "$2"); then
1332                 fatal 1 "Could not determine the canonical location of $2"
1333             fi
1334             shift 2
1335             ;;
1336         --timestamp)
1337             TIMESTAMP=$2
1338             shift 2
1339             ;;
1340         --lustre)
1341             LUSTRE=$2
1342             shift 2
1343             ;;
1344         --nodownload)
1345             DOWNLOAD=false
1346             shift 1
1347             ;;
1348         --nosrc)
1349             DO_SRC=false
1350             shift 1
1351             ;;
1352         --publish)
1353             shift
1354             ;;
1355         --release)
1356             RELEASE=true
1357             shift
1358             ;;
1359         --src)
1360             DO_SRC=true
1361             shift 1
1362             ;;
1363         --stage)
1364             STAGEDIR=$2
1365             shift 2
1366             ;;
1367         --tag)
1368             TAG=$2
1369             shift 2
1370             ;;
1371         --target)
1372             TARGET=$2
1373             shift 2
1374             ;;
1375         --target-archs)
1376             TARGET_ARCHS=$2
1377             shift 2
1378             ;;
1379         --disable-datestamp)
1380             USE_DATESTAMP=
1381             shift
1382             ;;
1383         --xen)
1384             XEN=true
1385             shift
1386             ;;
1387         --)
1388             shift
1389             CONFIGURE_FLAGS=$@
1390             CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-liblustre --enable-liblustre-tests"
1391             break
1392             ;;
1393         *)
1394             usage 1 "Unrecognized option: $1"
1395             ;;
1396     esac
1397 done
1398
1399 check_options
1400
1401 unpack_lustre
1402
1403 load_target
1404 EXTRA_VERSION_DELIMITER=${EXTRA_VERSION_DELIMITER:-"-"}
1405
1406 if [ -n "$OFED_VERSION" -a "$OFED_VERSION" != "inkernel" ]; then
1407     download_ofed
1408     unpack_ofed
1409 fi
1410
1411 # make sure the RPM build environment is set up
1412 create_rpmbuild_dirs
1413
1414 trap '[ -n "$CCACHE" ] && ccache -s' EXIT
1415
1416 # if an unpacked kernel source tree was given on the command line
1417 # just build lustre with it (nothing distro kernel specific here)
1418 if [ -n "$LINUX" ]; then
1419     build_lustre
1420 else
1421     if [ -f "${0%/*}/lbuild-$DISTRO" ]; then
1422         seen_list=$(new_list)
1423         trap '(echo "Untrapped error"
1424 echo
1425 # have we seen this one
1426 echo "checking seen list for ${BASH_SOURCE[0]}:${BASH_LINENO[0]}"
1427
1428 if is_list_member "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}"; then
1429   echo "seen this one already"
1430 else
1431   seen_list=$(add_list "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}")
1432 fi
1433 backtrace
1434 echo
1435 echo "Environment:"
1436 set
1437 ) | tee >(mail -s "Untrapped error in lbuild on $MACHINENAME" brian@sun.com) >&2' ERR
1438         set -E
1439
1440         source ${0%/*}/lbuild-$DISTRO
1441
1442         build_with_srpm || fatal 1 "Failed to build_with_srpm"
1443     else
1444         source ${0%/*}/lbuild.old_school
1445
1446         old_school_download_kernel
1447
1448         build_success=false
1449         if $PATCHLESS; then
1450             patchless_build_sequence && build_success=true
1451         else
1452             [ "$DISTRO" = "sles9" ] && build_sequence_rpm_reuse && build_success=true
1453             if ! $build_success; then
1454                 build_sequence_reuse && build_success=true
1455                 if ! $build_success; then
1456                     build_sequence && build_success=true
1457                     if $build_success; then
1458                         store_for_reuse || echo "Cannot store for future reuse"
1459                     fi
1460                 fi
1461             fi
1462         fi
1463         ( $build_success ) || fatal 1 "Cannot build lustre"
1464     fi
1465 fi
1466
1467 stage