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