3 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=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
13 if [[ $SHELLOPTS = *xtrace* ]]; then
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})}
23 # include the exit_traps library
24 . ${LBUILD_DIR}/exit_traps.sh
25 . ${LBUILD_DIR}/funcs.sh
27 # our children should die when we do
28 push_exit_trap "kill -INT -$$ || true" kill_children
30 # increment this if you have made a change that should force a new kernel
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
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
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"
61 TMPDIR=${TMPDIR:-"/var/tmp"}
65 # this is the dir that should be used to store reuse products
67 # should cached products be used or force rebuilding?
69 # what does this do exactly? does it imply no kernel build?
73 SMPTYPES="smp bigsmp default ''"
80 # default to not adding -lustre- into the kernel RPM package names
81 KERNEL_LUSTRE_NAMING=false
82 # default not use kabi check.
100 # not in the target file any more
103 # build the lustre-tests rpm?
112 # Readlink is not present on some older distributions: emulate it.
116 if [ -L "$path" ]; then
117 ll="$(LC_ALL=C ls -l "$path" 2> /dev/null)" &&
126 Usage: ${0##*/} [OPTION]... [-- <lustre configure options>]
128 --external-patches=EXTERNAL_PATCHES
129 Directory similar to lustre/lustre/kernel_patches/ that lbuild should
130 look for seres and config files in before looking in the lustre
133 --extraversion=EXTRAVERSION
134 Text to use for the rpm release and kernel extraversion.
136 --timestamp=TIMESTAMP
137 Date of building lustre in format YYYYMMDDhhmmss
140 Try to reuse old kernel builds from DIR
143 Path to distro kernel RPM collection
152 Build lustre client only
155 Which distro using. Autodetect by default
157 --kerneldir=KERNELDIR
158 Directory containing Linux source tarballs referenced by target
161 --kerneltree=KERNELTREE
162 Directory containing dirs with Linux source tarballs referenced by target
163 files. Dir names in format kernel version ('2.6.9', etc.)
165 --linux=LINUX --with-linux=LINUX
166 Directory of Linux kernel sources. When this option is used, only
167 Lustre modules and userspace are built.
170 Path to an existing lustre source tarball to use.
173 Do not try to download a kernel from downloads.hpdd.intel.com
176 Do not build a .src.rpm, a full kernel patch, or a patched kernel
180 Type of OFED to build with lustre: inkernel, ofa, mlnx, ifs
181 ofa: OpenFabrics Alliance
183 ifs: Intel True Scale Fabric
186 Version of external OFED to build with lustre
189 Version of external Mellanox OFED to build with lustre
192 Tarball for either OFED. Tarball must follow below format
193 OFED-<ofed-version>.tgz regardless of vendors
194 It's likely that you need to reconstruct the directory name
195 It must be placed under KERNELTREE directory
198 Build with ldiskfs support. (Deprecated, always true)
201 Do not build lustre-iokit RPM. Now true by default
207 Specifies that the files generated do not include timestamps, and
208 that this is an official release.
211 Build Lustre without ZFS.
214 Build a .src.rpm, a full kernel patch, and a patched kernel tarball.
217 Directory used to stage packages for release. RPMs will be placed
218 more or less in DIR/<target>-<arch>, and the tarball will be
222 The name of the target to build. The available targets are listed
225 --target-archs=TARGET_ARCHS
226 A (space delimited) list of architectures to build. By default,
227 all of the archs supported by the TARGET will be built, in
228 addition to a .src.rpm. This option can limit those, for machines
229 that can only build certain archs or if you only want a certain
230 arch built (for testing, or a one-off kernel).
232 Also note that by using a non-"base" arch (eg, i386) only kernels
233 will be built - there will be no lustre-lite-utils package.
236 Builds a Xen domX kernel.
239 Sets a variable to a given value.
248 # canonicalize a relative path to a file
252 if [ ! -f "$PATH" ]; then
256 local FILE=${PATH##*/}
259 echo $(canon_path "$DIR")/$FILE
263 # canonicalize a relative path to a dir
267 if [ ! -d "$PATH" ]; then
271 pushd "$PATH" >/dev/null || return 1
281 if [ -z "$LUSTRE" -o ! -r "$LUSTRE" ]; then
282 usage 1 "Could not find Lustre source tarball '$LUSTRE'."
285 if [ -n "${OFED_SRC}" ]; then
286 if [ -z "${OFED_VERSION}" ]; then
287 usage 1 "Need to provide version for file ${OFED_SRC}."
289 if [ "${OFED_TYPE}" = "inkernel" ]; then
290 usage 1 "Need to provide ofed type for file ${OFED_SRC}."
293 if [ "${OFED_TYPE}" != "inkernel" -a -z "${OFED_VERSION}" ]; then
294 usage 1 "Need to provide version for $OFED_TYPE OFED"
297 if [ "${OFED_TYPE}" = "inkernel" -a -n "${OFED_VERSION}" ]; then
298 usage 1 "Can not specify version with inkernel OFED"
302 if [ -z "$DISTRO" ] ; then
303 DISTRO=$(autodetect_distro)
307 DISTROMAJ=${DISTRO%%.*}
309 [ -z "$TARGET" ] && TARGET=$(autodetect_target "$DISTRO")
311 if [ -z "$LINUX" ]; then
312 [ "$KERNELDIR" -o "$KERNELTREE" ] || \
313 usage 1 "A kernel directory must be specified with --kerneldir or --kerneltree."
315 [ -d "$KERNELDIR" -o -d "$KERNELTREE" ] || \
316 usage 1 "$KERNELDIR and $KERNELTREE are not a directory."
318 # TARGET_FILE="$TOPDIR/lustre/kernel_patches/targets/$TARGET.target"
319 # [ -r "$TARGET_FILE" ] || \
320 # usage 1 "Target '$TARGET' was not found."
324 3.12-sles12 | 4.4-sles12)
325 CANONICAL_TARGET="sles12"
328 CANONICAL_TARGET="rhel7"
331 CANONICAL_TARGET="rhel6"
334 CANONICAL_TARGET="rhel5"
337 CANONICAL_TARGET="rhel-2.6"
340 CANONICAL_TARGET="sles-2.6"
343 CANONICAL_TARGET="sles10-2.6"
345 2.6-sles11 | 3.0-sles11)
346 CANONICAL_TARGET="sles11"
349 CANONICAL_TARGET="oel5"
352 CANONICAL_TARGET="hp-pnnl-2.4"
360 CANONICAL_TARGET="$TARGET"
364 local timestampnodig=$(echo $TIMESTAMP | sed -e s/[0-9]*//g)
365 [ "$timestampnodig" = "" ] || TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
366 local timestamplength="${#TIMESTAMP}"
367 if [ $timestamplength -eq 12 ]; then
368 TIMESTAMP="${TIMESTAMP}00"
369 elif [ $timestamplength -ne 14 ]; then
370 TIMESTAMP=$(date -d "$DATE" "+%Y%m%d%H%M%S")
373 RPMBUILD=$(which rpmbuild 2>/dev/null | head -n 1)
374 RPMBUILD=${RPMBUILD:-$(which rpm 2>/dev/null | head -n 1)}
375 if [ -z "$RPMBUILD" ]; then
376 usage 1 "Could not find binary for making rpms (tried rpmbuild and rpm)."
379 local BINDIR="$TOPDIR/bin"
380 if [ -d $BINDIR ]; then
381 rm -rf $BINDIR >/dev/null 2>&1 || true
384 mkdir -p $BINDIR || fatal 1 "error trying to create $BINDIR"
385 export PATH=$BINDIR:$PATH
387 cat >${BINDIR}/rpmbuild <<EOF
390 ARGS="\${FIND_REQUIRES:+--define \"__find_requires \$FIND_REQUIRES\"}"
393 *\'* ) ARGS="\$ARGS \"\$arg\"" ;;
394 * ) ARGS="\$ARGS '\$arg'" ;;
398 eval $RPMBUILD \$ARGS
400 chmod 755 ${BINDIR}/rpmbuild
402 if [ -n "$CCACHE" ]; then
403 which "$DISTCC" &>/dev/null && export DISTCC RPM_BUILD_NCPUS
405 if which "$CCACHE" &>/dev/null; then
406 local ccache=$(which "$CCACHE" 2>/dev/null | head -n 1)
408 ln -s "$ccache" ${BINDIR}/ccache
409 ln -s "$ccache" ${BINDIR}/cc
410 ln -s "$ccache" ${BINDIR}/$CC
413 export CC="ccache $CC"
414 # zero the cache so we can see how effective we are being with it
418 # get some ccache stats when we are done
419 push_exit_trap '[ -n "$CCACHE" ] && ccache -s' "ccache_summary"
420 # should remove the ccache trap if lbuild is interrupted
421 trap 'echo "Received an INT TERM or HUP signal, terminating."; delete_exit_trap "ccache_summary"; exit 1' INT TERM HUP
428 # compare two versions $1 and $2. if $1 < $2, return 0 otherwise return 1.
430 [[ $1 == $2 ]] && return 1
432 local i val1=($1) val2=($2)
434 # padding zero to val1 if it needs
435 for ((i=${#val1[@]}; i<${#val2[@]}; i++)); do
438 for ((i=0; i<${#val1[@]}; i++)); do
439 [[ -z ${val2[i]} ]] && return 1
441 if [[ ${val1[i]} < ${val2[i]} ]]; then
443 elif [[ ${val1[i]} > ${val2[i]} ]]; then
452 echo $(echo "$*" | xargs -n 1 | sort -u)
460 if [ -z "$target" ]; then
461 fatal 1 "fetch_url() called without a target to fetch to"
464 if [ -d $target ]; then
465 target+="/${url##*/}"
469 if which wget >/dev/null 2>&1; then
470 if ! wget -nv "$url" -O "$target"; then
473 elif which curl >/dev/null 2>&1; then
474 if ! curl -n -L -s -o "$target" "$url"; then
478 fatal 1 "Could not find either wget or curl to fetch URLs."
488 local force="${3:-false}"
490 # let the download_file handle the concurrency
493 "https://downloads.hpdd.intel.com/public/kernels/$target/old"
494 # get the location from a distro specific method if it exists
495 if type -p kernel_srpm_location; then
496 location=$(kernel_srpm_location)
498 echo "Downloading $location/$srpm..."
500 "$location/$srpm" "$KERNELDIR/$srpm" "$force" 2>&1 ||
501 [ ! -s "$KERNELDIR/$srpm" ]; then
502 rm -f $KERNELDIR/$srpm
503 fatal 1 "Could not download target $target's kernel \
504 SRPM $srpm from $location."
514 local file=${from##*/}
520 local semaphore="$to-downloading"
523 if [ ! -f $semaphore ]; then
527 # make sure the download has not been aborted
528 local now=$(date +%s)
529 local file_mtime=$(stat -c %Y "$to")
530 local staleness=$((now - file_mtime))
531 # let's assume an active download will write at least once a minute
532 if [ $staleness -gt 60 ]; then
540 # if the semaphore file exists, the file is either still downloading
541 # or a download was aborted and we cannot trust the target file
542 if [ -f $semaphore ]; then
546 if ! is_downloading && [ -r "$to" ] && [ -s "$to" ]; then
553 if $force || ! is_downloaded; then
554 if is_downloading; then
555 echo "Somebody else is downloading $from..."
556 while is_downloading; do
557 echo "Waiting for $to to finish downloading"
560 if is_downloaded; then
563 echo "The download we were waiting for seems to have been aborted"
569 echo "Downloading $from..."
570 # flag others so they don't try to download also
571 push_exit_trap "rm -f $to $semaphore" "download"
573 if ! fetch_url "$from" "$to" || [ ! -s "$to" ]; then
574 # the trap will remove the files via the fatal below
575 fatal 1 "Could not download ${to##*/} from ${from%/*}/."
578 delete_exit_trap "download"
580 fatal 1 "${to##*/} not found in directory ${to%/*}."
590 local ofed_version="$2"
591 local force="${3:-false}"
592 local distro_name="${DISTRO}"
593 local arch="${TARGET_ARCH}"
597 #if a src tarball has been given in the command line, we use it
598 #The format of the tarball must be OFED-${OFED_VERSION}.tgz
599 [ -n "${OFED_SRC}" ] && return 0
603 location="https://www.openfabrics.org/downloads/OFED/ofed-${ofed_version}/"
605 if [[ $ofed_version = *-[rR][cC][0-9] ]]; then
606 ofed_version_loc=${ofed_version%%-[rR][cC][0-9]}
607 location="https://www.openfabrics.org/downloads/OFED/ofed-${ofed_version_loc}/"
610 if [[ $ofed_version = *-daily ]]; then
611 ofed_version=${ofed_version/-daily/}
612 location="https://www.openfabrics.org/downloads/OFED/ofed-${ofed_version}-daily/"
613 # find the filename for latest version
614 ofed_version=$(curl -1 -s "$location" | sed -nre "s/.*href=\"OFED-(${ofed_version//./\\.}-[0-9]{8}-[0-9]{4}).tgz.*$/\1/p" | tail -1)
615 if [ -z "$ofed_version" ]; then
616 fatal 1 "Could not determine the filename of the OFED snapshot from daily "
620 file="OFED-${ofed_version}.tgz"
621 download_file "$location/$file" "$KERNELTREE" "$force"
624 location="http://www.mellanox.com/downloads/ofed/MLNX_OFED-${ofed_version}"
625 # this is a work around for suse distro (sles11.3). what we need is
626 # sles11sp3. We really need to redesign how we use target and distro
627 [[ $distro_name =~ sles ]] && distro_name=${DISTRO/./sp}
628 file="MLNX_OFED_LINUX-${ofed_version}-${distro_name}-${arch}.tgz"
629 download_file "$location/$file" "$KERNELTREE" "$force"
632 location="http://downloadmirror.intel.com/24625/eng/"
633 file="IntelIB-Basic.$(echo ${distro_name%%.*} | tr '[:lower:]' '[:upper:]')-${arch}.${ofed_version}.tgz"
634 download_file "$location/$file" "$KERNELTREE" "$force"
637 fatal 1 "Error: unknown OFED type: $ofed_type"
640 # version might change due to detect daily version
641 OFED_VERSION=${ofed_version}
647 EXTRA_VERSION_save="$EXTRA_VERSION"
648 for patchesdir in "$EXTERNAL_PATCHES" \
649 "$TOPDIR/lustre/lustre/kernel_patches"; do
650 TARGET_FILE="$patchesdir/targets/$TARGET.target"
651 [ -r "$TARGET_FILE" ] && break
653 [ -r "$TARGET_FILE" ] || fatal 1 "Target $TARGET was not found."
655 echo "Loading target config file $TARGET.target..."
657 # if the caller specified an OFED_VERSION it should override whatever
658 # the target file specifies
659 local env_OFED_VERSION="$OFED_VERSION"
663 if [ -n "$env_OFED_VERSION" ]; then
664 OFED_VERSION="$env_OFED_VERSION"
667 # doesn't make any sense to build OFED for xen domX's
672 # XXX - set_rpm_smp_type is an ugly undeterministic hack. it needs to
673 # go away and the target just specify the $RPMSMPTYPE
674 [ -z "$RPMSMPTYPE" ] && set_rpm_smp_type
676 # CC might have been overwritten in TARGET_FILE
677 if [[ $CC != ccache\ * ]] && which "$CCACHE" &>/dev/null; then
678 export CCACHE && export CC="ccache $CC"
681 if [ ! "$KERNELTREE" = "" ] && [ -d "$KERNELTREE" ]; then
682 KERNELDIR="$KERNELTREE/${lnxmaj}"
683 [ -d "$KERNELDIR" ] || mkdir "$KERNELDIR"
686 # verify the series is available
687 if [ "$SERIES" ]; then
688 for series in $SERIES; do
689 for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
690 [ -r "$patchesdir/series/$series" ] && continue 2
692 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."
696 # set the location of the .config file
702 if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH.config ]; then
703 CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET$XENPOSTFIX-$TARGET_ARCH.config"
706 local lnxrelnew=${lnxrel//-/_}
708 # remember the EXTRA_VERSION before we diddle it here
709 # XXX - we really should not diddle with any values read in from the
710 # target file. if we want to modify a value, we should create
712 PRISTINE_EXTRA_VERSION=$EXTRA_VERSION
714 if ! $PATCHLESS && [ ! -f "$CONFIG_FILE" ]; then
715 fatal 1 "Config file for target $TARGET missing from $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/."
718 if [ "$EXTRA_VERSION_save" ]; then
719 EXTRA_VERSION="$EXTRA_VERSION_save"
720 elif ! $RELEASE; then
721 # if there is no patch series, then this is not a lustre specific
722 # kernel. don't make it look like one
723 if $PATCHLESS || [ -n "$SERIES" ]; then
724 EXTRA_VERSION=$(echo $EXTRA_VERSION | sed -e "s/\(.*_lustre\)\..*/\1/")
727 # EXTRA_VERSION=${EXTRA_VERSION//-/_}
729 ALL_ARCHS="$BASE_ARCHS $BIGMEM_ARCHS $BOOT_ARCHS $JENSEN_ARCHS $SMP_ARCHS $BIGSMP_ARCHS $PSERIES64_ARCHS $UP_ARCHS"
732 for arch in $(uniqify "$ALL_ARCHS"); do
733 if [ -z "$TARGET_ARCHS" ] ||
734 [[ \ $TARGET_ARCHS\ = *\ $arch\ * ]]; then
735 BUILD_ARCHS="$BUILD_ARCHS $arch"
738 [ "$BUILD_ARCHS" ] || usage 1 "No available target archs to build."
739 echo "Building for: $BUILD_ARCHS"
745 echo -n '--wildcards '
748 fatal 1 "tarflags(): File name argument missing."
760 fatal 1 "tarflags(): Unrecognized tar extension in file: $1"
769 local extractfile="$@"
771 echo "Untarring ${tarfile##*/}..."
772 tar $(tarflags "$tarfile") "$tarfile" $extractfile
778 local ofed_version="$2"
779 local distro_name="${DISTRO}"
780 local arch="${TARGET_ARCH}"
783 #if a src tarball has been given in the command line, we use it
784 #The format of the directory after untar MUST be in OFED-${version}
785 #even if it's from MLNX or IFS...or whatever
786 if [ -n "${OFED_SRC}" ]; then
787 if ! untar "$KERNELTREE/${OFED_SRC}"; then
790 [ -d OFED ] || ln -sf OFED-[0-9].[0-9]* OFED
795 file="OFED-${ofed_version}"
796 if ! untar "$KERNELTREE/${file}.tgz"; then
799 [ -d OFED ] || ln -sf OFED-[0-9].[0-9]* OFED
802 # this is a work around for suse distro (sles11.3). what we need is
803 # sles11sp3. We really need to redesign how we use target and distro
804 [[ $distro_name =~ sles ]] && distro_name=${DISTRO/./sp}
805 file="MLNX_OFED_LINUX-${ofed_version}-${distro_name}-${arch}"
807 # it's not important what distro we get the tarball since we only
808 # interest in the src
809 if ! untar "$KERNELTREE/${file}.tgz"; then
812 # we need to untar again to get the src since it's being
813 # wrapped inside the tarball
814 # There are cases where the source version is different
816 # (ie. MLNX_OFED_LINUX-2.3-1.0.1 but MLNX_OFED_SRC-2.3-1.0.0)
817 local src=$(ls ${file}/src/MLNX_OFED_SRC-${ofed_version%.*}*.tgz)
818 if ! untar "$src"; then
821 [ -d OFED ] || ln -sf MLNX_OFED_SRC-[0-9].[0-9]* OFED
824 file="IntelIB-Basic.$(echo ${distro_name%%.*} | tr '[:lower:]' '[:upper:]')-${arch}.${ofed_version}"
825 if ! untar "$KERNELTREE/${file}.tgz"; then
828 [ -d OFED ] || ln -sf $file/IntelIB-OFED.$(echo ${distro_name%%.*} | tr '[:lower:]' '[:upper:]')-${arch}.* OFED
829 ofed_version="$(cat OFED/Version)"
832 # version might change due to detect daily version
833 OFED_VERSION=${ofed_version}
838 untar "$LUSTRE" || fatal 1 "Error unpacking Lustre tarball"
839 [ -d lustre ] || ln -sf lustre-[0-9].[0-9]* lustre
845 local do_patch=${1:-true}
847 FULL_PATCH="$PWD/lustre-kernel-${TARGET}-${EXTRA_VERSION}.patch"
848 [ -f "$FULL_PATCH" ] && rm -f "$FULL_PATCH"
849 $do_patch && pushd linux >/dev/null
850 for series in $SERIES; do
851 echo -n "Applying series $series:"
852 for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
853 [ -r "$patchesdir/series/$series" ] || continue
854 SERIES_FILE="$patchesdir/series/$series"
855 for patch in $(<"$SERIES_FILE"); do
857 PATCH_FILE="$patchesdir/patches/$patch"
858 [ -r "$PATCH_FILE" ] || \
859 fatal 1 "Patch $patch does not exist in Lustre tree."
860 cat "$PATCH_FILE" >> "$FULL_PATCH" || {
862 fatal 1 "Error adding patch $patch to full patch."
865 patch -s -p1 < "$PATCH_FILE" 2>&1 || {
867 fatal 1 "Error applying patch $patch."
875 $do_patch && popd >/dev/null
876 echo "Full patch has been saved in ${FULL_PATCH##*/}."
883 local configure_args=""
887 pushd lustre >/dev/null
889 if ! build_lustre_dkms; then
890 popd >/dev/null # pushd lustre
894 echo "Building Lustre RPMs for: $BUILD_ARCHS..."
896 # If server we now build the spl and zfs modules against the lustre kernel.
897 # These are required prior to the building of lustre server. Client does
898 # not require spl/zfs. Use !PATCHLESS to indicate server which follows the
899 # line above so is at least consistant.
900 if [ $PATCHLESS == false ] && [ "x$WITH_ZFS" == "x" ]; then
901 if ! build_spl_zfs; then
902 popd >/dev/null # pushd lustre
908 configure_args="$configure_args --disable-server"
911 # ditto for the lustre-tests boolean
912 if ! $LUSTRE_TESTS; then
913 configure_args="$configure_args --disable-tests"
917 configure_args="$configure_args --disable-iokit"
920 if ! $OSDZFSRPM; then
921 configure_args="$configure_args --without-zfs"
924 if ! $OSDLDISKFSRPM; then
925 configure_args="$configure_args --disable-ldiskfs"
928 configure_args="$configure_args --with-linux=$linux"
929 configure_args="$configure_args ${linuxobj:+--with-linux-obj=$linuxobj}"
931 # allow environment setting to override ldiskfs series selection
932 [ -n "$LDISKFS_SERIES" ] && export LDISKFS_SERIES
934 ./configure $configure_args $CONFIGURE_FLAGS 2>&1 ||
935 fatal 1 "Error in configure."
937 fatal 1 "Error building rpms for $BUILD_ARCHS."
939 # move RPMs into place where they are expected to be
940 for arch in $BUILD_ARCHS; do
941 mv -f *lustre*.${arch}.rpm $TOPDIR/RPMS/${arch}/
943 mv -f lustre-*.src.rpm $TOPDIR/SRPMS/
946 if type -p cleanup_rpmmacros; then
953 # Only zfs Lustre DKMS Server is supported
954 build_lustre_dkms() {
956 local name_prefix="lustre"
957 local ver=$(sed -n -e 's/^LUSTRE_VERSION = //p' LUSTRE-VERSION-FILE)
959 echo "Building Lustre DKMS RPMs for: $BUILD_ARCHS..."
960 ./configure --enable-dist || fatal 1 "Error in DKMS configure."
963 build_args="--without servers"
964 name_prefix="lustre-client"
967 rpmbuild --define "_topdir $TOPDIR" $build_args -bs lustre-dkms.spec ||
968 fatal 1 "Error building DKMS .src.rpm for $BUILD_ARCHS."
969 rpmbuild --define "_topdir $TOPDIR" $build_args \
970 --rebuild $TOPDIR/SRPMS/$name_prefix-dkms-$ver-*.src.rpm ||
971 fatal 1 "Error building DKMS .rpm for $BUILD_ARCHS."
979 # Fetch spl/zfs from the git repo and prepare for lustre build
982 # SPLZFSGITREPO - URI of directory where spl.git and zfs.git are located
983 # SPLZFSTAG - Tag to checkout of clone repositories
984 # SPLZFSVER - Version to checkout of both (format zfs/spl-$SPLZFSVER)
986 # return 0 if successful, else 255
988 # make sure the RPM build environment is set up
993 # The spl/zfs spec files expect RPM_BUILD_ROOT to point to the root of the
994 # destination for the rpms
995 export RPM_BUILD_ROOT=$TOPDIR
996 SPLZFSVER=${SPLZFSVER:-0.6.5.9}
997 SPLZFSTAG=${SPLZFSTAG:-}
999 # The files expect a kver to be set to the kernel version .
1000 local kver=$(find_linux_release)
1002 # build and install the spl and zfs (and -devel) RPMs for lustre to use
1004 for pkg in spl zfs; do
1008 [ "$pkg" == "zfs" ] && spldir="$(ls -d $TOPDIR/usr/src/spl-*|tail -1)"
1010 # need to fetch the repo in order to build it.
1011 # default to github but allow override
1012 git clone ${SPLZFSGITREPO:-"https://github.com/zfsonlinux"}/$pkg.git $pkg 2>&1
1014 pushd $pkg || return 255
1015 if [ -n "$SPLZFSTAG" ]; then
1016 git checkout $SPLZFSTAG
1018 git checkout -b lbuild $pkg-$SPLZFSVER
1021 # This differentiates between older zfs versions
1022 if [ -f $pkg-modules.spec.in ]; then
1025 speclist="$pkg.spec $rpmpkg.spec"
1027 rpmpkg=kmod-$pkg-devel
1029 speclist="$pkg.spec $pkg-kmod.spec $pkg-dkms.spec"
1032 sh autogen.sh || return 255
1034 if ! ./configure --with-linux=${LINUX} --with-linux-obj=${LINUXOBJ:-$LINUX} \
1035 ${spldir:+--with-spl="${spldir}"} 2>&1 ||
1036 ! make dist 2>&1; then
1042 ln -f $pkg/$pkg-*.tar.gz $TOPDIR/SOURCES ||
1043 error "failed to link $pkg/$pkg-*.tar.gz into $TOPDIR/SOURCES"
1044 if [ -f $pkg/scripts/kmodtool ]; then
1045 ln -f $pkg/scripts/kmodtool $TOPDIR/SOURCES/
1055 # set search dir for our own kmodtool to find correct
1057 export KERNELSOURCE=$(dirname ${LINUX})
1058 # Manually build rpms
1059 for spec in $speclist; do
1060 echo "Building RPMs from $pkg/$specdir/$spec"
1061 if ! rpmbuild $rpmb $pkg/$specdir/$spec \
1063 --define "_use_internal_dependency_generator 0" \
1064 --define "require_kdir ${LINUX}" \
1065 ${LINUXOBJ:+--define "require_kobj ${LINUXOBJ}"} \
1066 ${spldir:+--define "require_spldir ${spldir}"} \
1067 --define "kver $kver" \
1068 --define "kernels $kver" \
1069 --define "_tmppath /var/tmp" \
1070 --define "kernelbuildroot $TOPDIR/reused" \
1071 --define "_topdir $TOPDIR" 2>&1; then
1076 # We have built the rpms for the package. Now we need to extract the
1077 # contained files so we can build further things against them
1078 local rpms=$(ls -1 $TOPDIR/RPMS/*/$rpmpkg-*.rpm)
1080 # cpio only extract to pwd so we need to go there.
1083 for rpm in $rpms; do
1084 rpm2cpio $rpm | cpio -id
1087 if [ "$pkg" == "zfs" ]; then
1088 # We also need to extract both the zfs and zfs-devel rpms
1089 # the zfs rpm is needed because it has the actual libraries in
1090 # it and the zfs-devel rpm only has unversioned symlinks to the
1091 # libraries in the zfs rpm
1092 # this will all change one day when we have a libzfs rpm per
1093 # https://github.com/zfsonlinux/zfs/issues/2329
1094 # and it looks like it could be one day soon:
1095 # https://github.com/zfsonlinux/zfs/pull/2341
1096 local devel_rpms=$(ls -1 $TOPDIR/RPMS/*/{$pkg-devel,$pkg-$SPLZFSVER,lib*}-*.rpm)
1097 for rpm in $devel_rpms; do
1098 rpm2cpio $rpm | cpio -id
1100 CONFIGURE_FLAGS="--with-$pkg-devel=$TOPDIR ${CONFIGURE_FLAGS}"
1104 CONFIGURE_FLAGS="--with-$pkg=$(ls -d $TOPDIR/usr/src/$pkg-*|tail -1) ${CONFIGURE_FLAGS}"
1105 CONFIGURE_FLAGS="--with-$pkg-obj=$(ls -d $TOPDIR/usr/src/$pkg-*/$kver*|tail -1) ${CONFIGURE_FLAGS}"
1115 [ "$STAGEDIR" ] || return 0
1117 for arch in $BUILD_ARCHS; do
1118 rpmdir="${STAGEDIR}/${CANONICAL_TARGET}-${arch}"
1119 echo "${0##*/}: Copying RPMs into ${rpmdir}"
1120 mkdir -p "${rpmdir}"
1121 for rpm in $(ls RPMS/${arch}/*.rpm RPMS/noarch/*.rpm); do
1122 cp -v $rpm "${rpmdir}"
1126 cp -v "$LUSTRE" "$STAGEDIR"
1130 set_rpm_smp_type() {
1132 local infact_arch="${TARGET_ARCH}"
1135 [ "$infact_arch" == "i586" ] && infact_arch="i686"
1138 for smp_type in $SMP_ARCHS; do
1139 [ $infact_arch == $smp_type ] && RPMSMPTYPE=smp && break
1142 for smp_type in $BIGSMP_ARCHS; do
1143 [ $infact_arch == $smp_type ] && RPMSMPTYPE=bigsmp && break
1146 for smp_type in $PPC64_ARCHS; do
1147 [ $infact_arch == $smp_type ] && RPMSMPTYPE=ppc64 && break
1150 for smp_type in $DEFAULT_ARCHS; do
1151 [ $infact_arch == $smp_type ] && RPMSMPTYPE=default && break
1156 # This function takes a linux include tree and digs out the linux release
1157 # from it. It is never called directly, only called from the distro
1158 # specific function find_linux_release() in lbuild-{rhel,sles}.
1159 _find_linux_release() {
1161 local LINUXRELEASEHEADER=""
1163 LINUXRELEASEHEADER=$SRC/include/linux/version.h
1164 if [ -s $SRC/include/generated/utsrelease.h ]; then
1165 LINUXRELEASEHEADER=$SRC/include/generated/utsrelease.h
1166 elif [ -s $SRC/include/linux/utsrelease.h ]; then
1167 LINUXRELEASEHEADER=$SRC/include/linux/utsrelease.h
1170 if [ ! -s $LINUXRELEASEHEADER ]; then
1171 fatal 1 "could not find UTS_RELEASE"
1174 sed -ne 's/#define UTS_RELEASE "\(.*\)"$/\1/p' $LINUXRELEASEHEADER
1177 # unpack kernel(/source/devel) RPM
1179 # This function and it's setting of $LINUX and $LINUXOBJ is a total hack that
1180 # needs to completely refactored. It completely ingores that $BUILD_ARCHS may
1181 # contain a list of arches for which rpmbuild commands (including the one for
1183 unpack_linux_devel_rpm() {
1184 local kernelrpm="${1}"
1186 [ -f "$kernelrpm" ] || return 255
1187 [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused || return 255
1189 pushd $TOPDIR/reused &>/dev/null || return 255
1191 if ! rpm2cpio < "$kernelrpm" | cpio -id > /dev/null 2>&1; then
1195 # call a distro specific hook, if available
1196 if type -p unpack_linux_devel_rpm-$DISTROMAJ; then
1197 if ! unpack_linux_devel_rpm-$DISTROMAJ "$kernelrpm"; then
1204 find_linux_devel_paths $TOPDIR/reused
1212 local kib_prefix="$2"
1214 local ofed_type="${4}"
1215 local ofed_version="${5}"
1217 # build kernel-ib{,-devel}/compat-rdma{,-devel}
1220 local OFED_CORE="--with-core-mod --with-ipoib-mod --with-user_mad-mod \
1221 --with-user_access-mod --with-addr_trans-mod --with-madeye-mod"
1222 local OFED_HARDWARE="--with-mthca-mod --with-mlx4-mod \
1223 --with-mlx4_en-mod --with-cxgb3-mod --with-mlx4_en-mod \
1224 --with-cxgb3-mod --with-nes-mod --with-mlx5-mod --with-cxgb4-mod \
1227 # Removing the check for older version support
1228 #if compare_version $OFED_VERSION 3.0; then
1229 #OFED_CORE="$OFED_CORE --with-madeye-mod --with-rds-mod"
1231 #OFED_HARDWARE="$OFED_HARDWARE --with-mlx5-mod --with-cxgb4-mod --with-ocrdma-mod --with-qib-mod"
1234 # some I/B drivers are architecture dependent and kernel-ib's configure
1235 # does not figure it out for us ~sigh~
1236 case "$TARGET_ARCH" in
1238 OFED_HARDWARE="$OFED_HARDWARE --with-ehca-mod"
1241 # we're no longer shipping the OFED iSCSI target
1242 #OFED_ISCSI="--with-srp-mod --with-srp-target-mod"
1243 OFED_ISCSI="--with-srp-mod"
1244 ## ISER module has no backport support as of OFED 1.5 (i.e. only builds on
1245 ##kernels >= 2.6.30)
1246 #if [[ $OFED_VERSION = 1.[0-4]* ]]; then
1247 # OFED_ISCSI="$OFED_ISCSI --with-iser-mod"
1250 # assume we are just rebuilding the SRPM
1251 local BUILD_TYPE=${BUILD_TYPE:-"--rebuild"}
1252 local SOURCE="${TOPDIR}/OFED/SRPMS/${kib_prefix}-*.src.rpm"
1254 # but switch to building from the SPEC if we need to apply patches
1255 if ls ${TOPDIR}/lustre/contrib/patches/ofed/* >/dev/null; then
1257 rpm --define "_topdir ${TOPDIR}" -ivh $SOURCE
1258 SOURCE="${TOPDIR}/SPECS/${kib_prefix}.spec"
1259 local file ed_fragment1 ed_fragment2 n=1
1260 for file in $(ls ${TOPDIR}/lustre/contrib/patches/ofed/*.patch); do
1261 ed_fragment1="$ed_fragment1
1262 Patch$n: ${file%%*/}"
1263 ed_fragment2="$ed_fragment2
1265 cp $file ${TOPDIR}/SOURCES
1268 for file in $(ls ${TOPDIR}/lustre/contrib/patches/ofed/*.ed); do
1269 # Only apply the ed-scripts that should be used for the canonical target
1270 # ed-files in ${TOPDIR}/lustre/contrib/patches/ofed/ have to follow the naming
1272 # <two-digits>-<descriptive-name>:<canonical_target_1>: ...:<canonical_target_N>.ed
1273 # To apply the same change to multiple canonical target simply specify
1274 # a list of colon separated canoncial target names in the file name.
1275 echo "$file" | grep -q -e ":${CANONICAL_TARGET}:" \
1276 -e ":${CANONICAL_TARGET}.ed$"
1277 if [ $? -eq 0 ] ; then
1278 ed_fragment3="$ed_fragment3
1284 if [ $n -gt 1 ]; then
1298 local linuxrelease=$(find_linux_release)
1299 # a place to change/add any unique config
1301 ofa|ifs) local K_SRC_OBJ="K_SRC_OBJ"
1302 if ! $RPMBUILD $BUILD_TYPE --define 'build_kernel_ib 1' \
1303 --define 'build_kernel_ib_devel 1' \
1304 ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1305 --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1306 --define "KVERSION ${linuxrelease}" \
1307 --define "$K_SRC ${linux}" \
1308 ${K_SRC_OBJ:+--define "$K_SRC_OBJ ${linux}"} \
1309 ${OFA_KERNEL_RELEASE:+--define "_release $OFA_KERNEL_RELEASE"} \
1310 --define "configure_options --without-quilt $OFED_CORE $OFED_HARDWARE $OFED_ISCSI" \
1311 ${SOURCE} 2>&1; then
1312 fatal 1 "Error building ${kib_rpm}"
1316 if ! $RPMBUILD $BUILD_TYPE \
1317 ${FIND_REQUIRES:+--define "__find_requires $FIND_REQUIRES"} \
1318 --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1319 --define "KVERSION ${linuxrelease}" \
1320 --define "$K_SRC ${linux}" \
1321 ${OFA_KERNEL_RELEASE:+--define "_release $OFA_KERNEL_RELEASE"} \
1322 --define "configure_options --without-quilt $OFED_CORE $OFED_HARDWARE $OFED_ISCSI" \
1323 ${SOURCE} 2>&1; then
1324 fatal 1 "Error building ${kib_rpm}"
1335 local signature="$4"
1336 local use_links="$5"
1343 local default_iface=$(/sbin/ip route get 192.1.1.1 | sed -ne 's/.* dev \(.*\) * src .*/\1/p')
1344 if [ -z "$default_iface" ]; then
1345 fatal 1 "Failed to determine the default route interface"
1347 local unique_id=$(/sbin/ip addr show dev $default_iface | sed -ne '/ inet /s/ *inet \(.*\)\/.*/\1/p' | head -1)
1348 if [ -z "$unique_id" ]; then
1349 fatal 1 "Failed to determine a unique id from interface $default_interface"
1352 local finallocation="$location"/"$signature"/"$module"
1353 location="$location"/"$signature-${unique_id}"/"$module"
1354 mkdir -p "$location"
1355 # the cleanup script removes any directory that doesn't have a
1356 # .lastused, so let's try to prevent that as soon as we can
1357 # this solution still slightly racy with the cleanup script
1358 # but the race is a lot tighter now
1359 touch -t 197001010000 "$location/.lastused"
1360 ## use eval/echo here to make sure shell expansions are performed
1361 #if ! cp -a${linkflag} $(eval echo $articles) "$location"; then
1363 for article in $(eval echo $articles); do
1364 if ! cp -a${linkflag} "$article" "$location"; then
1365 error "Failed to copy \"$article\" to \"$location\" in store_for_reuse()"
1366 # rename the cache location so that it's not cached
1367 # product, but is around for analysis
1368 mv "$location"{,-bad-$(date +%s)} ||
1369 error "failed to clean up a failed cache attempt" \
1370 "in \"$location\" -- manual cleanup will be" \
1376 # flag the cache as complete (i.e. in case lbuild was previously
1377 # interrupted while caching)
1378 touch "$location/.lastused"
1380 # put the temporary location into the final location
1382 mkdir -p "${finallocation%/*}"
1383 mv "$location" "$finallocation"
1384 rmdir "${location%/*}"
1392 local use_links="${3:-false}"
1393 local signature="$4"
1395 if [ -n "$REUSEBUILD" ] && [ -d "$REUSEBUILD/$signature/$module" ]; then
1396 if [ ! -f "$REUSEBUILD/$signature/$module/.lastused" ]; then
1397 # the .lastused flag is populated at the end of the caching to
1398 # signal that the caching was completed. if that flag is not
1399 # there, then the cache is invalid (and should be removed in fact)
1400 mv "$REUSEBUILD/$signature/$module"{,-bad-$(date +%s)} ||
1401 fatal 1 "failed to clean up a bad cache in location $REUSEBUILD/$signature/$module\" -- manual cleanup will be necessary"
1405 # so that we know how stale this entry is
1406 touch $REUSEBUILD/$signature/$module/.lastused
1409 if ls $REUSEBUILD/$signature/$module/* >/dev/null 2>&1; then
1410 cp -al $REUSEBUILD/$signature/$module/* $dest/
1413 # copying is pretty heavy
1414 # cp -a $REUSEBUILD/$signature/$module/* $dest/
1415 # do some creative symlinking instead
1417 for dir in BUILD SRPMS SPECS; do
1418 if ls $REUSEBUILD/$signature/$module/$dir/* >/dev/null 2>&1; then
1419 ln -s $REUSEBUILD/$signature/$module/$dir/* $dest/$dir
1422 # sources have to be copied by file because we need SOURCES to
1423 # be a dir we can write into
1424 # could overrun ls's arg list here
1425 #ls $REUSEBUILD/$signature/$module/SOURCES/* |
1426 find $REUSEBUILD/$signature/$module/SOURCES/ -type f |
1427 xargs ln -t $dest/SOURCES -s
1429 # same for RPMS/* dirs
1430 # could overrun ls's arg list here
1431 #ls $REUSEBUILD/$signature/$module/RPMS/$TARGET_ARCH/* |
1433 for dir in $REUSEBUILD/$signature/$module/RPMS/*; do
1434 mkdir -p $dest/RPMS/${dir##*/}
1436 xargs ln -t $dest/RPMS/${dir##*/} -s
1448 if [[ $arch = i[3456]86 ]]; then
1456 build_kernel_with_srpm() {
1459 if [ -z "$outfd" ] || [ $outfd = 1 ]; then
1460 fatal 1 "You must supply a file descriptor to ${FUNCNAME[0]} and it cannot be 1"
1463 # need to generate the patch for this target
1464 do_patch_linux false >&${outfd} # sets global $FULL_PATCH (yeah, yuck)
1466 # get an md5sum of the kernel patch + config for reuse check
1467 # XXX really, there needs to be a signature and a CONFIG_FILE per arch
1471 local release_str="RELEASE=$RELEASE\n"
1474 if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1475 local REUSE_SIGNATURE=$({ echo -en $release_str;
1478 cat "$TARGET_FILE" |
1479 sed -e '/_VERSION=/s/_[0-9]*_g.*$//g';
1481 cat "$LBUILD_DIR/lbuild";
1482 cat "$LBUILD_DIR/lbuild-$DISTROMAJ"; } |
1483 md5sum | cut -d" " -f1)
1484 # see if we can link to the reuse pool
1485 # XXX - hrm. i'm not convinced this doesn't belong in the reuse
1487 local CAN_LINK_FOR_REUSE=false
1488 touch $REUSEBUILD/$$
1489 if cp -al $REUSEBUILD/$$ $TOPDIR/ 2>/dev/null; then
1490 CAN_LINK_FOR_REUSE=true
1495 # the extra version string to use for the kernel (which might be a reused
1497 local kernel_extra_version=""
1498 if ! $USE_BUILD_CACHE || ! reuse kernel "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1499 "$REUSE_SIGNATURE"; then
1500 # nothing cached, build from scratch
1501 echo "Downloading kernel SRPM" >&${outfd}
1502 download_srpm "$CANONICAL_TARGET" "$KERNEL_SRPM" >&${outfd}
1504 if ! rpm -ivh $KERNELDIR/$KERNEL_SRPM \
1505 --define "_topdir $TOPDIR" >&${outfd} 2>&1; then
1506 # should we clean this up or leave it for analysis?
1508 fatal 1 "Error installing kernel SRPM."
1511 # put the Lustre kernel patch into the RPM build tree
1512 cp $FULL_PATCH $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch
1513 prepare_and_build_srpm >&${outfd} ||
1514 fatal 1 "failed to prepare_and_build_srpm"
1516 if [ -z "$REUSE_SIGNATURE" ]; then
1517 echo "No reuse signature was caculated so not storing the built kernel" >&${outfd}
1519 # store the resulting kernel RPM build tree for future use
1520 echo "Storing the built kernel for future reuse" >&${outfd}
1521 if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,SRPMS,RPMS}" \
1522 "kernel" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1523 "$CAN_LINK_FOR_REUSE"; then
1524 error "Failed to store kernel RPMS for reuse"
1525 echo "unknown" >&${outfd}
1531 # figure out the EXTRA_VERSION of the kernel we built or are re-using
1533 if ! KERNEL_RPM=$(find_rpm "$TOPDIR/RPMS/$TARGET_ARCH/" provides "^kernel(-default)? ="); then
1534 fatal 1 "Failed to find a kernel RPM in $TOPDIR/RPMS/$TARGET_ARCH/"
1536 kernel_extra_version=$(rpm -q --queryformat "%{RELEASE}" -p $TOPDIR/RPMS/$TARGET_ARCH/$KERNEL_RPM)
1538 # should now have the following RPMs
1539 # $TOPDIR/RPMS/$arch/kernel-lustre-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1540 # $TOPDIR/RPMS/$arch/kernel-lustre-devel-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1541 # $TOPDIR/RPMS/$arch/kernel-lustre-headers-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1542 # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-common-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1543 # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1545 echo $kernel_extra_version
1553 # REUSEBUILD, USE_BUILD_CACHE
1558 local ofed_type="$2"
1559 local ofed_version="$3"
1566 if [ "$ofed_version" = "inkernel" ]; then
1567 # see if there is a distro specific override for this and use
1569 # XXX we need to better integrate a distro specific override with
1570 # the rest of this function so that all of the reuse cache
1571 # stuff is leveraged given that 80% of this function is reuse
1572 if type -p build_ofed-$DISTROMAJ; then
1574 ofed_location=$(build_ofed-$DISTROMAJ ${STDOUT})
1575 local rc=${PIPESTATUS[0]}
1576 CONFIGURE_FLAGS="--with-o2ib=${ofed_location} ${CONFIGURE_FLAGS}"
1583 mlnx) # no compat-rdma for mlnx as of 3.1
1584 kib_prefix="ofa_kernel"
1586 kib_rpm="${pre_prefix}${kib_prefix}"
1589 if compare_version $ofed_version 3.0; then
1590 kib_prefix="ofa_kernel"
1591 kib_rpm="${pre_prefix}${kib_prefix}"
1593 kib_prefix="compat-rdma"
1594 kib_rpm="compat-rdma"
1600 # build kernel-ib/compat-rdma
1601 if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1602 local REUSE_SIGNATURE=$({ echo "$ofed_version";
1603 echo "$(find_linux_release;
1604 echo "$BUILD_GEN")";
1605 cat "${linux}/include/linux/autoconf.h";
1606 cat "$LBUILD_DIR/lbuild";
1607 cat "$LBUILD_DIR/lbuild-$DISTROMAJ"; } |
1608 md5sum | cut -d" " -f1)
1609 # see if we can link to the reuse pool
1610 # XXX - hrm. i'm not convinced this doesn't belong in the reuse
1612 local CAN_LINK_FOR_REUSE=false
1613 touch $REUSEBUILD/$$
1614 if cp -al $REUSEBUILD/$$ $TOPDIR/; then
1615 CAN_LINK_FOR_REUSE=true
1620 if ! $USE_BUILD_CACHE || ! reuse ofed "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1621 "$REUSE_SIGNATURE"; then
1622 if [ -n "$REUSE_SIGNATURE" ]; then
1623 # stash away the existing built articles for a moment
1625 mv {BUILD,{S,}RPMS,S{OURCE,PEC}S} bak
1628 find . | cpio -pudlm ..
1632 create_rpmbuild_dirs
1635 build_kernel_ib "${linux}" "${pre_prefix}${kib_prefix}" "${kib_rpm}" "${ofed_type}"
1637 if [ -z "$REUSE_SIGNATURE" ]; then
1638 echo "No reuse signature was caculated so not storing the built ofed"
1640 # store the resulting RPM build tree for future use
1641 echo "Storing the built ofed for future reuse"
1642 if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1643 "ofed" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1644 "$CAN_LINK_FOR_REUSE"; then
1645 error "Failed to store OFED RPMS for reuse"
1649 # put the stuff we stashed away back
1654 pushd "$TOPDIR" >/dev/null
1655 rm -rf ${kib_rpm}-devel
1656 mkdir ${kib_rpm}-devel
1659 o2ib_location="$(pwd)/usr/src/${kib_prefix}"
1661 mlnx) # Prior to MOFED 3.1, we had to use build_kernel_ib=1 to
1662 # build devel rpm. not so after 3.1
1663 if compare_version $ofed_version 3.0; then
1664 rpm=$(ls $TOPDIR/RPMS/*/kernel-ib-devel-${ofed_version%%-*}-*.rpm)
1666 rpm=$(ls $TOPDIR/RPMS/*/${kib_rpm}-devel-${ofed_version%%-*}-*.rpm)
1668 o2ib_location="${o2ib_location}/default"
1670 ofa) # Prior to OFA 3.18, we had to use build_kernel_ib=1 during configure,
1672 if compare_version $ofed_version 3.18; then
1673 rpm=$(ls $TOPDIR/RPMS/*/kernel-ib-devel-${ofed_version%%-*}-*.rpm)
1675 rpm=$(ls $TOPDIR/RPMS/*/${kib_rpm}-devel-${ofed_version%%-*}-*.rpm)
1678 ifs) # ifs doesn't follow any convention (if any)
1679 rpm=$(ls $TOPDIR/RPMS/*/${kib_rpm}-devel-*.rpm)
1683 if ! rpm2cpio < $rpm | cpio -id; then
1684 fatal 1 "could not unpack the $rpm."
1686 CONFIGURE_FLAGS="--with-o2ib=${o2ib_location} ${CONFIGURE_FLAGS}"
1692 local ofed_type="$1"
1693 local ofed_version="$2"
1695 if ! $PATCHLESS; then
1696 local kernel_extra_version
1697 if ! kernel_extra_version=$(build_kernel_with_srpm ${STDOUT}); then
1698 fatal 1 "Failed to build the kernel from it's SRPM"
1701 for arch in $BUILD_ARCHS; do
1702 local kernel_devel_rpm
1703 if ! kernel_devel_rpm=$(find_rpm "$TOPDIR/RPMS/$arch/" provides "^$(devel_kernel_name $KERNEL_LUSTRE_NAMING) ="); then
1704 fatal 1 "Failed to find a kernel development RPM in $TOPDIR/RPMS/$arch/"
1707 # install the -devel RPM in preparation for modules builds
1708 if ! lnxrel="$kernel_extra_version" unpack_linux_devel_rpm \
1709 "$TOPDIR/RPMS/$arch/$kernel_devel_rpm"; then
1710 fatal 1 "Could not find the Linux tree in $TOPDIR/RPMS/$arch/$kernel_devel_rpm"
1714 # need to find and unpack the vendor's own kernel-devel for patchless
1717 if ! kernelrpm=$(find_linux_rpm "-$DEVEL_KERNEL_TYPE"); then
1718 fatal 1 "Could not find the kernel-$DEVEL_KERNEL_TYPE RPM in $KERNELRPMSBASE/$lnxmaj/$DISTROMAJ"
1720 if ! lnxrel="$lnxrel" unpack_linux_devel_rpm "$kernelrpm" "-"; then
1721 fatal 1 "Could not find the Linux tree in $kernelrpm"
1725 # ~sigh~ have to make copies of and modify some of the rpm
1726 # infrastructure files so that find-requires can find our unpacked
1727 # kernel-devel artifacts
1728 cp $RPM_HELPERS_DIR/{symset-table,find-requires{,.ksyms}} .
1729 export FIND_REQUIRES="$(pwd)/find-requires"
1730 chmod 755 {symset-table,find-requires{,.ksyms}}
1732 tmp="${tmp//\//\\/}"
1733 ed find-requires <<EOF
1737 /|.*find-requires.ksyms/s/|/| bash -x/
1738 g/ [^ ]*\/\(find-requires\.ksyms\)/s// $tmp\/\1/g
1741 ed find-requires.ksyms <<EOF
1745 g/\/.*\/\(symset-table\)/s//$tmp\/\1/g
1746 g/\(\/usr\/src\/kernels\/\)/s//$tmp\/reused\1/g
1749 ed symset-table <<EOF
1753 g/\(\/boot\/\)/s//$tmp\/reused\1/g
1754 g/\(\/usr\/src\/kernels\/\)/s//$tmp\/reused\1/g
1758 build_ofed "${LINUXOBJ:-$LINUX}" "$ofed_type" "$ofed_version" ||
1759 fatal 1 "error building OFED"
1762 if build_lustre "$LINUX" "$LINUXOBJ"; then
1763 # the build worked. resolve any symlinked files (i.e. from reuse)
1764 # in RPMS/$arch to real files so that that that huge mess of
1765 # complication known as LTS can copy them yet somewhere else.
1766 # is it any wonder this whole process is so damn so? anyone ever
1767 # heard of hardlinks? it's this cool new thing that allows you save
1768 # tons of time and space by creating... well you can go read about
1769 # them if you have not heard about them yet.
1770 # can i say how much the implemenation of all of this really impedes
1773 for dir in RPMS/*; do
1775 for file in $(ls); do
1776 if [ -h $file ]; then
1783 # also, for i?86, make sure all of the RPMs are in RPMS/$TARGET_ARCH
1784 # as that's where LTS expects to find them
1785 for dir in RPMS/*; do
1786 if [ $dir = RPMS/$TARGET_ARCH ]; then
1791 if [ -n "$files" ]; then
1792 cp -al $files ../$TARGET_ARCH
1802 create_rpmbuild_dirs() {
1804 [ -d RPMS ] || mkdir RPMS
1805 for arch in $BUILD_ARCHS; do
1806 if [[ $arch = i?86 ]]; then
1807 # some stupidity in the sles11 kernel spec requires an RPMS/i386
1808 # even if the target arch is i686
1809 [ -d RPMS/i386 ] || mkdir RPMS/i386
1811 [ -d RPMS/$arch ] || mkdir RPMS/$arch
1813 [ -d RPMS/noarch ] || mkdir RPMS/noarch
1814 [ -d BUILD ] || mkdir BUILD
1815 [ -d SOURCES ] || mkdir SOURCES
1816 [ -d SPECS ] || mkdir SPECS
1817 [ -d SRPMS ] || mkdir SRPMS
1839 [[ $list\ == *\ $item\ * ]]
1843 #########################################################################
1844 # Generate a backtrace through the call stack.
1848 #########################################################################
1852 local funcname="" sourcefile="" lineno="" n
1854 echo "Call stack: (most recent first)"
1855 for (( n = $strip ; n < ${#FUNCNAME[@]} ; ++n )) ; do
1856 funcname=${FUNCNAME[$n - 1]}
1857 sourcefile=$(basename ${BASH_SOURCE[$n]})
1858 lineno=${BASH_LINENO[$n - 1]}
1862 # Display function arguments
1863 if [[ ! -z "${BASH_ARGV[@]}" ]]; then
1864 local args newarg j p=0
1865 for (( j = ${BASH_ARGC[$n - 1]}; j > 0; j-- )); do
1866 newarg=${BASH_ARGV[$j + $p - 1]}
1867 args="${args:+${args} }'${newarg}'"
1869 let p+=${BASH_ARGC[$n - 1]}
1871 echo " ${funcname} ${args:+${args} }at ${sourcefile}:${lineno}"
1875 echo "BEGIN BACKTRACE"
1877 #echo ${BASH_LINENO[*]}
1878 #echo ${BASH_SOURCE[*]}
1879 #echo ${FUNCNAME[*]}
1880 local i=$((${#FUNCNAME[@]} - 1))
1881 while [ $i -ge 0 ]; do
1882 local lineno=${BASH_LINENO[$i]}
1886 local SOURCELINE="${BASH_SOURCE[$i + 1]}:${lineno}"
1887 # Can't figure out how to get function args from other frames...
1888 local FUNCTION="${FUNCNAME[$i]}()"
1889 echo "$SOURCELINE:$FUNCTION"
1893 echo "END BACKTRACE"
1899 seen_list=$(new_list)
1901 echo "An unexpected error has occurred at ${BASH_SOURCE[0]##*/}:$((LINENO-1)).
1902 Unfortunately the above line number in the message may or may not be correct,
1903 but details have been send to the lbuild maintainer. Attempting to continue."; (echo "Untrapped error"
1905 # have we seen this one
1906 echo "checking seen list for ${BASH_SOURCE[0]}:${BASH_LINENO[0]}"
1908 if is_list_member "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}"; then
1909 echo "seen this one already"
1911 seen_list=$(add_list "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}")
1914 ) ; set $xtrace' ERR
1917 [ -r ~/.lbuildrc ] && . ~/.lbuildrc
1919 options=$(getopt -o D:h -l kerneltree:,distro:,kernelrpm:,reusebuild:,patchless,ccache,norpm,external-patches:,timestamp:,extraversion:,kerneldir:,linux:,lustre:,nodownload,nosrc,noiokit,ofed-type:,ofed-version:,mlnx-version:,ofed-src:,publish,disable-zfs,release,set-value:,src,stage:,target:,target-archs:,with-linux:,xen -- "$@")
1921 if [ $? != 0 ]; then
1925 eval set -- "$options"
1956 if ! KERNELTREE=$(canon_path "$2"); then
1957 fatal 1 "Could not determine the canonical location of $2"
1961 --linux | --with-linux)
1962 if ! LINUX=$(canon_path "$2"); then
1963 fatal 1 "Could not determine the canonical location of $2"
1972 if ! REUSEBUILD=$(canon_path "$2"); then
1973 fatal 1 "Could not determine the canonical location of $2"
1989 if ! KERNELRPMSBASE=$(canon_path "$2"); then
1990 fatal 1 "Could not determine the canonical location of $2"
1999 if ! LUSTRE=$(canon_filepath "$2"); then
2000 fatal 1 "Could not determine the canonical location of $2"
2061 # there are actually some lustre configure flags that we need to
2062 # handle ourselves (but we still give them to configure)
2063 if [[ \ $@\ == *\ --disable-tests\ * ]]; then
2070 usage 1 "Unrecognized option: $1"
2081 if [ -n "$OFED_TYPE" -a "$OFED_TYPE" != "inkernel" ]; then
2082 download_ofed "$OFED_TYPE" "$OFED_VERSION"
2083 unpack_ofed "$OFED_TYPE" "$OFED_VERSION" || fatal 1 "Error unpacking OFED tarball"
2086 # make sure the RPM build environment is set up
2087 create_rpmbuild_dirs
2089 # if an unpacked kernel source tree was given on the command line
2090 # just build lustre with it (nothing distro kernel specific here)
2091 if [ -n "$LINUX" ]; then
2092 find_linux_release() {
2093 _find_linux_release $LINUX
2095 build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_TYPE" "$OFED_VERSION" ||
2096 fatal 1 "error building OFED"
2097 build_lustre "$LINUX" "$LINUXOBJ"
2099 if [ ! -f "${LBUILD_DIR}/lbuild-$DISTROMAJ" ]; then
2100 fatal 1 "${LBUILD_DIR}/lbuild-$DISTROMAJ not found"
2102 source ${LBUILD_DIR}/lbuild-$DISTROMAJ
2103 build_with_srpm "$OFED_TYPE" "$OFED_VERSION" || fatal 1 "Failed to build_with_srpm"