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"}
63 # this is the dir that should be used to store reuse products
65 # should cached products be used or force rebuilding?
67 # what does this do exactly? does it imply no kernel build?
71 SMPTYPES="smp bigsmp default ''"
78 # default to not adding -lustre- into the kernel RPM package names
79 KERNEL_LUSTRE_NAMING=false
80 # default not use kabi check.
98 # not in the target file any more
101 # build the lustre-tests rpm?
108 # Readlink is not present on some older distributions: emulate it.
112 if [ -L "$path" ]; then
113 ll="$(LC_ALL=C ls -l "$path" 2> /dev/null)" &&
122 Usage: ${0##*/} [OPTION]... [-- <lustre configure options>]
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
129 --extraversion=EXTRAVERSION
130 Text to use for the rpm release and kernel extraversion.
132 --timestamp=TIMESTAMP
133 Date of building lustre in format YYYYMMDDhhmmss
136 Try to reuse old kernel builds from DIR
139 Path to distro kernel RPM collection
148 Build lustre client only
151 Which distro using. Autodetect by default
153 --kerneldir=KERNELDIR
154 Directory containing Linux source tarballs referenced by target
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.)
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.
166 Path to an existing lustre source tarball to use.
169 Do not try to download a kernel from downloads.hpdd.intel.com
172 Do not build a .src.rpm, a full kernel patch, or a patched kernel
176 Build with ldiskfs support. (Deprecated, always true)
179 Do not build lustre-iokit RPM. Now true by default
185 Specifies that the files generated do not include timestamps, and
186 that this is an official release.
189 Build Lustre without ZFS.
192 Build a .src.rpm, a full kernel patch, and a patched kernel tarball.
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
200 The name of the target to build. The available targets are listed
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).
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.
214 Builds a Xen domX kernel.
217 Sets a variable to a given value.
226 # canonicalize a relative path to a file
230 if [ ! -f "$PATH" ]; then
234 local FILE=${PATH##*/}
237 echo $(canon_path "$DIR")/$FILE
241 # canonicalize a relative path to a dir
245 if [ ! -d "$PATH" ]; then
249 pushd "$PATH" >/dev/null || return 1
259 if [ -z "$LUSTRE" -o ! -r "$LUSTRE" ]; then
260 usage 1 "Could not find Lustre source tarball '$LUSTRE'."
263 if [ -z "$DISTRO" ] ; then
264 DISTRO=$(autodetect_distro)
268 DISTROMAJ=${DISTRO%%.*}
270 [ -z "$TARGET" ] && TARGET=$(autodetect_target "$DISTRO")
272 if [ -z "$LINUX" ]; then
273 [ "$KERNELDIR" -o "$KERNELTREE" ] || \
274 usage 1 "A kernel directory must be specified with --kerneldir or --kerneltree."
276 [ -d "$KERNELDIR" -o -d "$KERNELTREE" ] || \
277 usage 1 "$KERNELDIR and $KERNELTREE are not a directory."
279 # TARGET_FILE="$TOPDIR/lustre/kernel_patches/targets/$TARGET.target"
280 # [ -r "$TARGET_FILE" ] || \
281 # usage 1 "Target '$TARGET' was not found."
286 CANONICAL_TARGET="sles12"
289 CANONICAL_TARGET="rhel7"
292 CANONICAL_TARGET="rhel6"
295 CANONICAL_TARGET="rhel5"
298 CANONICAL_TARGET="rhel-2.6"
301 CANONICAL_TARGET="sles-2.6"
304 CANONICAL_TARGET="sles10-2.6"
306 2.6-sles11 | 3.0-sles11)
307 CANONICAL_TARGET="sles11"
310 CANONICAL_TARGET="oel5"
313 CANONICAL_TARGET="hp-pnnl-2.4"
321 CANONICAL_TARGET="$TARGET"
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")
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)."
340 local BINDIR="$TOPDIR/bin"
341 if [ -d $BINDIR ]; then
342 rm -rf $BINDIR >/dev/null 2>&1 || true
345 mkdir -p $BINDIR || fatal 1 "error trying to create $BINDIR"
346 export PATH=$BINDIR:$PATH
348 cat >${BINDIR}/rpmbuild <<EOF
351 ARGS="\${FIND_REQUIRES:+--define \"__find_requires \$FIND_REQUIRES\"}"
354 *\'* ) ARGS="\$ARGS \"\$arg\"" ;;
355 * ) ARGS="\$ARGS '\$arg'" ;;
359 eval $RPMBUILD \$ARGS
361 chmod 755 ${BINDIR}/rpmbuild
363 if [ -n "$CCACHE" ]; then
364 which "$DISTCC" &>/dev/null && export DISTCC RPM_BUILD_NCPUS
366 if which "$CCACHE" &>/dev/null; then
367 local ccache=$(which "$CCACHE" 2>/dev/null | head -n 1)
369 ln -s "$ccache" ${BINDIR}/ccache
370 ln -s "$ccache" ${BINDIR}/cc
371 ln -s "$ccache" ${BINDIR}/$CC
374 export CC="ccache $CC"
375 # zero the cache so we can see how effective we are being with it
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
389 # compare two versions $1 and $2. if $1 < $2, return 0 otherwise return 1.
391 [[ $1 == $2 ]] && return 1
393 local i val1=($1) val2=($2)
395 # padding zero to val1 if it needs
396 for ((i=${#val1[@]}; i<${#val2[@]}; i++)); do
399 for ((i=0; i<${#val1[@]}; i++)); do
400 [[ -z ${val2[i]} ]] && return 1
402 if [[ ${val1[i]} < ${val2[i]} ]]; then
404 elif [[ ${val1[i]} > ${val2[i]} ]]; then
414 echo $(echo "$*" | xargs -n 1 | sort -u)
422 if [ -z "$target" ]; then
423 fatal 1 "fetch_url() called without a target to fetch to"
426 if [ -d $target ]; then
427 target+="/${url##*/}"
431 if which wget >/dev/null 2>&1; then
432 if ! wget -nv "$url" -O "$target"; then
435 elif which curl >/dev/null 2>&1; then
436 if ! curl -n -L -s -o "$target" "$url"; then
440 fatal 1 "Could not find either wget or curl to fetch URLs."
450 local force="${3:-false}"
452 # let the download_file handle the concurrency
455 "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)
460 echo "Downloading $location/$srpm..."
462 "$location/$srpm" "$KERNELDIR/$srpm" "$force" 2>&1 ||
463 [ ! -s "$KERNELDIR/$srpm" ]; then
464 rm -f $KERNELDIR/$srpm
465 fatal 1 "Could not download target $target's kernel \
466 SRPM $srpm from $location."
476 local file=${from##*/}
482 local semaphore="$to-downloading"
485 if [ ! -f $semaphore ]; then
489 # make sure the download has not been aborted
490 local now=$(date +%s)
491 local file_mtime=$(stat -c %Y "$to")
492 local staleness=$((now - file_mtime))
493 # let's assume an active download will write at least once a minute
494 if [ $staleness -gt 60 ]; then
502 # if the semaphore file exists, the file is either still downloading
503 # or a download was aborted and we cannot trust the target file
504 if [ -f $semaphore ]; then
508 if ! is_downloading && [ -r "$to" ] && [ -s "$to" ]; then
515 if $force || ! is_downloaded; then
516 if is_downloading; then
517 echo "Somebody else is downloading $from..."
518 while is_downloading; do
519 echo "Waiting for $to to finish downloading"
522 if is_downloaded; then
525 echo "The download we were waiting for seems to have been aborted"
531 echo "Downloading $from..."
532 # flag others so they don't try to download also
533 push_exit_trap "rm -f $to $semaphore" "download"
535 if ! fetch_url "$from" "$to" || [ ! -s "$to" ]; then
536 # the trap will remove the files via the fatal below
537 fatal 1 "Could not download ${to##*/} from ${from%/*}/."
540 delete_exit_trap "download"
542 fatal 1 "${to##*/} not found in directory ${to%/*}."
551 local force="${1:-false}"
553 if [ -z "$OFED_VERSION" -o "$OFED_VERSION" = "inkernel" ]; then
557 local OFED_BASE_VERSION=$OFED_VERSION
558 if [[ $OFED_VERSION = *.*.*.* ]]; then
559 OFED_BASE_VERSION=${OFED_VERSION%.*}
562 local location="https://www.openfabrics.org/downloads/OFED/ofed-${OFED_BASE_VERSION}/"
564 if [[ $OFED_VERSION = *-[rR][cC][0-9] ]]; then
566 Mmv=${OFED_VERSION%%-[rR][cC][0-9]}
567 location="https://www.openfabrics.org/downloads/OFED/ofed-${Mmv}/"
570 if [[ $OFED_VERSION = daily-* ]]; then
572 Mmv=${OFED_VERSION/daily-/}
573 daily=${OFED_VERSION##$Mmv-}
574 location="https://www.openfabrics.org/downloads/OFED/ofed-${Mmv}-daily/"
575 # find the filename for the version for the date specified
576 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)
577 if [ -z "$OFED_VERSION" ]; then
578 fatal 1 "Could not determine the filename of the OFED snapshot for ${daily}"
582 local file="OFED-${OFED_VERSION}.tgz"
583 download_file "$location/$file" "$KERNELTREE" "$force"
589 EXTRA_VERSION_save="$EXTRA_VERSION"
590 for patchesdir in "$EXTERNAL_PATCHES" \
591 "$TOPDIR/lustre/lustre/kernel_patches"; do
592 TARGET_FILE="$patchesdir/targets/$TARGET.target"
593 [ -r "$TARGET_FILE" ] && break
595 [ -r "$TARGET_FILE" ] || fatal 1 "Target $TARGET was not found."
597 echo "Loading target config file $TARGET.target..."
599 # if the caller specified an OFED_VERSION it should override whatever
600 # the target file specifies
601 local env_OFED_VERSION="$OFED_VERSION"
605 if [ -n "$env_OFED_VERSION" ]; then
606 OFED_VERSION="$env_OFED_VERSION"
609 # doesn't make any sense to build OFED for xen domX's
614 # XXX - set_rpm_smp_type is an ugly undeterministic hack. it needs to
615 # go away and the target just specify the $RPMSMPTYPE
616 [ -z "$RPMSMPTYPE" ] && set_rpm_smp_type
618 # CC might have been overwritten in TARGET_FILE
619 if [[ $CC != ccache\ * ]] && which "$CCACHE" &>/dev/null; then
620 export CCACHE && export CC="ccache $CC"
623 if [ ! "$KERNELTREE" = "" ] && [ -d "$KERNELTREE" ]; then
624 KERNELDIR="$KERNELTREE/${lnxmaj}"
625 [ -d "$KERNELDIR" ] || mkdir "$KERNELDIR"
628 # verify the series is available
629 if [ "$SERIES" ]; then
630 for series in $SERIES; do
631 for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
632 [ -r "$patchesdir/series/$series" ] && continue 2
634 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."
638 # set the location of the .config file
644 if [ -f $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET-$TARGET_ARCH.config ]; then
645 CONFIG_FILE="$TOPDIR/lustre/lustre/kernel_patches/kernel_configs/kernel-$lnxmaj-$TARGET$XENPOSTFIX-$TARGET_ARCH.config"
648 local lnxrelnew=${lnxrel//-/_}
650 # remember the EXTRA_VERSION before we diddle it here
651 # XXX - we really should not diddle with any values read in from the
652 # target file. if we want to modify a value, we should create
654 PRISTINE_EXTRA_VERSION=$EXTRA_VERSION
656 if ! $PATCHLESS && [ ! -f "$CONFIG_FILE" ]; then
657 fatal 1 "Config file for target $TARGET missing from $TOPDIR/lustre/lustre/kernel_patches/kernel_configs/."
660 if [ "$EXTRA_VERSION_save" ]; then
661 EXTRA_VERSION="$EXTRA_VERSION_save"
662 elif ! $RELEASE; then
663 # if there is no patch series, then this is not a lustre specific
664 # kernel. don't make it look like one
665 if $PATCHLESS || [ -n "$SERIES" ]; then
666 EXTRA_VERSION=$(echo $EXTRA_VERSION | sed -e "s/\(.*_lustre\)\..*/\1/")
669 # EXTRA_VERSION=${EXTRA_VERSION//-/_}
671 ALL_ARCHS="$BASE_ARCHS $BIGMEM_ARCHS $BOOT_ARCHS $JENSEN_ARCHS $SMP_ARCHS $BIGSMP_ARCHS $PSERIES64_ARCHS $UP_ARCHS"
674 for arch in $(uniqify "$ALL_ARCHS"); do
675 if [ -z "$TARGET_ARCHS" ] ||
676 [[ \ $TARGET_ARCHS\ = *\ $arch\ * ]]; then
677 BUILD_ARCHS="$BUILD_ARCHS $arch"
680 [ "$BUILD_ARCHS" ] || usage 1 "No available target archs to build."
681 echo "Building for: $BUILD_ARCHS"
687 echo -n '--wildcards '
690 fatal 1 "tarflags(): File name argument missing."
702 fatal 1 "tarflags(): Unrecognized tar extension in file: $1"
711 local extractfile="$@"
713 echo "Untarring ${tarfile##*/}..."
714 tar $(tarflags "$tarfile") "$tarfile" $extractfile
720 if ! untar "$KERNELTREE/OFED-${OFED_VERSION}.tgz"; then
723 [ -d OFED ] || ln -sf OFED-[0-9].[0-9]* OFED
729 untar "$LUSTRE" || fatal 1 "Error unpacking Lustre tarball"
730 [ -d lustre ] || ln -sf lustre-[0-9].[0-9]* lustre
736 local do_patch=${1:-true}
738 FULL_PATCH="$PWD/lustre-kernel-${TARGET}-${EXTRA_VERSION}.patch"
739 [ -f "$FULL_PATCH" ] && rm -f "$FULL_PATCH"
740 $do_patch && pushd linux >/dev/null
741 for series in $SERIES; do
742 echo -n "Applying series $series:"
743 for patchesdir in "$EXTERNAL_PATCHES" "$TOPDIR/lustre/lustre/kernel_patches"; do
744 [ -r "$patchesdir/series/$series" ] || continue
745 SERIES_FILE="$patchesdir/series/$series"
746 for patch in $(<"$SERIES_FILE"); do
748 PATCH_FILE="$patchesdir/patches/$patch"
749 [ -r "$PATCH_FILE" ] || \
750 fatal 1 "Patch $patch does not exist in Lustre tree."
751 cat "$PATCH_FILE" >> "$FULL_PATCH" || {
753 fatal 1 "Error adding patch $patch to full patch."
756 patch -s -p1 < "$PATCH_FILE" 2>&1 || {
758 fatal 1 "Error applying patch $patch."
766 $do_patch && popd >/dev/null
767 echo "Full patch has been saved in ${FULL_PATCH##*/}."
774 local configure_args=""
778 pushd lustre >/dev/null
780 if ! build_lustre_dkms; then
781 popd >/dev/null # pushd lustre
785 echo "Building Lustre RPMs for: $BUILD_ARCHS..."
787 # If server we now build the spl and zfs modules against the lustre kernel.
788 # These are required prior to the building of lustre server. Client does
789 # not require spl/zfs. Use !PATCHLESS to indicate server which follows the
790 # line above so is at least consistant.
791 if [ $PATCHLESS == false ] && [ "x$WITH_ZFS" == "x" ]; then
792 if ! build_spl_zfs; then
793 popd >/dev/null # pushd lustre
799 configure_args="$configure_args --disable-server"
802 # ditto for the lustre-tests boolean
803 if ! $LUSTRE_TESTS; then
804 configure_args="$configure_args --disable-tests"
808 configure_args="$configure_args --disable-iokit"
811 if ! $OSDZFSRPM; then
812 configure_args="$configure_args --without-zfs"
815 if ! $OSDLDISKFSRPM; then
816 configure_args="$configure_args --disable-ldiskfs"
819 configure_args="$configure_args --with-linux=$linux"
820 configure_args="$configure_args ${linuxobj:+--with-linux-obj=$linuxobj}"
822 # allow environment setting to override ldiskfs series selection
823 [ -n "$LDISKFS_SERIES" ] && export LDISKFS_SERIES
825 ./configure $configure_args $CONFIGURE_FLAGS 2>&1 ||
826 fatal 1 "Error in configure."
828 fatal 1 "Error building rpms for $BUILD_ARCHS."
830 # move RPMs into place where they are expected to be
831 for arch in $BUILD_ARCHS; do
832 mv -f *lustre*.${arch}.rpm $TOPDIR/RPMS/${arch}/
834 mv -f lustre-*.src.rpm $TOPDIR/SRPMS/
837 if type -p cleanup_rpmmacros; then
844 # Only zfs Lustre DKMS Server is supported
845 build_lustre_dkms() {
847 local name_prefix="lustre"
848 local ver=$(sed -n -e 's/^LUSTRE_VERSION = //p' LUSTRE-VERSION-FILE)
850 echo "Building Lustre DKMS RPMs for: $BUILD_ARCHS..."
851 ./configure --enable-dist || fatal 1 "Error in DKMS configure."
854 build_args="--without servers"
855 name_prefix="lustre-client"
858 rpmbuild --define "_topdir $TOPDIR" $build_args -bs lustre-dkms.spec ||
859 fatal 1 "Error building DKMS .src.rpm for $BUILD_ARCHS."
860 rpmbuild --define "_topdir $TOPDIR" $build_args \
861 --rebuild $TOPDIR/SRPMS/$name_prefix-dkms-$ver-*.src.rpm ||
862 fatal 1 "Error building DKMS .rpm for $BUILD_ARCHS."
870 # Fetch spl/zfs from the git repo and prepare for lustre build
873 # SPLZFSGITREPO - URI of directory where spl.git and zfs.git are located
874 # SPLZFSTAG - Tag to checkout of clone repositories
875 # SPLZFSVER - Version to checkout of both (format zfs/spl-$SPLZFSVER)
877 # return 0 if successful, else 255
879 # make sure the RPM build environment is set up
884 # The spl/zfs spec files expect RPM_BUILD_ROOT to point to the root of the
885 # destination for the rpms
886 export RPM_BUILD_ROOT=$TOPDIR
887 SPLZFSVER=${SPLZFSVER:-0.6.5.7}
888 SPLZFSTAG=${SPLZFSTAG:-}
890 # The files expect a kver to be set to the kernel version .
891 local kver=$(find_linux_release)
893 # build and install the spl and zfs (and -devel) RPMs for lustre to use
895 for pkg in spl zfs; do
899 [ "$pkg" == "zfs" ] && spldir="$(ls -d $TOPDIR/usr/src/spl-*|tail -1)"
901 # need to fetch the repo in order to build it.
902 # default to github but allow override
903 git clone ${SPLZFSGITREPO:-"https://github.com/zfsonlinux"}/$pkg.git $pkg 2>&1
905 pushd $pkg || return 255
906 if [ -n "$SPLZFSTAG" ]; then
907 git checkout $SPLZFSTAG
909 git checkout -b lbuild $pkg-$SPLZFSVER
912 # This differentiates between older zfs versions
913 if [ -f $pkg-modules.spec.in ]; then
916 speclist="$pkg.spec $rpmpkg.spec"
918 rpmpkg=kmod-$pkg-devel
920 speclist="$pkg.spec $pkg-kmod.spec $pkg-dkms.spec"
923 sh autogen.sh || return 255
925 if ! ./configure --with-linux=${LINUX} --with-linux-obj=${LINUXOBJ:-$LINUX} \
926 ${spldir:+--with-spl="${spldir}"} 2>&1 ||
927 ! make dist 2>&1; then
933 ln -f $pkg/$pkg-*.tar.gz $TOPDIR/SOURCES ||
934 error "failed to link $pkg/$pkg-*.tar.gz into $TOPDIR/SOURCES"
935 if [ -f $pkg/scripts/kmodtool ]; then
936 ln -f $pkg/scripts/kmodtool $TOPDIR/SOURCES/
946 # set search dir for our own kmodtool to find correct
948 export KERNELSOURCE=$(dirname ${LINUX})
949 # Manually build rpms
950 for spec in $speclist; do
951 echo "Building RPMs from $pkg/$specdir/$spec"
952 if ! rpmbuild $rpmb $pkg/$specdir/$spec \
954 --define "_use_internal_dependency_generator 0" \
955 --define "require_kdir ${LINUX}" \
956 ${LINUXOBJ:+--define "require_kobj ${LINUXOBJ}"} \
957 ${spldir:+--define "require_spldir ${spldir}"} \
958 --define "kver $kver" \
959 --define "kernels $kver" \
960 --define "_tmppath /var/tmp" \
961 --define "kernelbuildroot $TOPDIR/reused" \
962 --define "_topdir $TOPDIR" 2>&1; then
967 # We have built the rpms for the package. Now we need to extract the
968 # contained files so we can build further things against them
969 local rpms=$(ls -1 $TOPDIR/RPMS/*/$rpmpkg-*.rpm)
971 # cpio only extract to pwd so we need to go there.
975 rpm2cpio $rpm | cpio -id
978 if [ "$pkg" == "zfs" ]; then
979 # We also need to extract both the zfs and zfs-devel rpms
980 # the zfs rpm is needed because it has the actual libraries in
981 # it and the zfs-devel rpm only has unversioned symlinks to the
982 # libraries in the zfs rpm
983 # this will all change one day when we have a libzfs rpm per
984 # https://github.com/zfsonlinux/zfs/issues/2329
985 # and it looks like it could be one day soon:
986 # https://github.com/zfsonlinux/zfs/pull/2341
987 local devel_rpms=$(ls -1 $TOPDIR/RPMS/*/{$pkg-devel,$pkg-$SPLZFSVER,lib*}-*.rpm)
988 for rpm in $devel_rpms; do
989 rpm2cpio $rpm | cpio -id
991 CONFIGURE_FLAGS="--with-$pkg-devel=$TOPDIR ${CONFIGURE_FLAGS}"
995 CONFIGURE_FLAGS="--with-$pkg=$(ls -d $TOPDIR/usr/src/$pkg-*|tail -1) ${CONFIGURE_FLAGS}"
996 CONFIGURE_FLAGS="--with-$pkg-obj=$(ls -d $TOPDIR/usr/src/$pkg-*/$kver*|tail -1) ${CONFIGURE_FLAGS}"
1006 [ "$STAGEDIR" ] || return 0
1008 for arch in $BUILD_ARCHS; do
1009 rpmdir="${STAGEDIR}/${CANONICAL_TARGET}-${arch}"
1010 echo "${0##*/}: Copying RPMs into ${rpmdir}"
1011 mkdir -p "${rpmdir}"
1012 for rpm in $(ls RPMS/${arch}/*.rpm RPMS/noarch/*.rpm); do
1013 cp -v $rpm "${rpmdir}"
1017 cp -v "$LUSTRE" "$STAGEDIR"
1021 set_rpm_smp_type() {
1023 local infact_arch="${TARGET_ARCH}"
1026 [ "$infact_arch" == "i586" ] && infact_arch="i686"
1029 for smp_type in $SMP_ARCHS; do
1030 [ $infact_arch == $smp_type ] && RPMSMPTYPE=smp && break
1033 for smp_type in $BIGSMP_ARCHS; do
1034 [ $infact_arch == $smp_type ] && RPMSMPTYPE=bigsmp && break
1037 for smp_type in $PPC64_ARCHS; do
1038 [ $infact_arch == $smp_type ] && RPMSMPTYPE=ppc64 && break
1041 for smp_type in $DEFAULT_ARCHS; do
1042 [ $infact_arch == $smp_type ] && RPMSMPTYPE=default && break
1047 # This function takes a linux include tree and digs out the linux release
1048 # from it. It is never called directly, only called from the distro
1049 # specific function find_linux_release() in lbuild-{rhel,sles}.
1050 _find_linux_release() {
1052 local LINUXRELEASEHEADER=""
1054 LINUXRELEASEHEADER=$SRC/include/linux/version.h
1055 if [ -s $SRC/include/generated/utsrelease.h ]; then
1056 LINUXRELEASEHEADER=$SRC/include/generated/utsrelease.h
1057 elif [ -s $SRC/include/linux/utsrelease.h ]; then
1058 LINUXRELEASEHEADER=$SRC/include/linux/utsrelease.h
1061 if [ ! -s $LINUXRELEASEHEADER ]; then
1062 fatal 1 "could not find UTS_RELEASE"
1065 sed -ne 's/#define UTS_RELEASE "\(.*\)"$/\1/p' $LINUXRELEASEHEADER
1068 # unpack kernel(/source/devel) RPM
1070 # This function and it's setting of $LINUX and $LINUXOBJ is a total hack that
1071 # needs to completely refactored. It completely ingores that $BUILD_ARCHS may
1072 # contain a list of arches for which rpmbuild commands (including the one for
1074 unpack_linux_devel_rpm() {
1075 local kernelrpm="${1}"
1077 [ -f "$kernelrpm" ] || return 255
1078 [ -d $TOPDIR/reused ] || mkdir $TOPDIR/reused || return 255
1080 pushd $TOPDIR/reused &>/dev/null || return 255
1082 if ! rpm2cpio < "$kernelrpm" | cpio -id > /dev/null 2>&1; then
1086 # call a distro specific hook, if available
1087 if type -p unpack_linux_devel_rpm-$DISTROMAJ; then
1088 if ! unpack_linux_devel_rpm-$DISTROMAJ "$kernelrpm"; then
1095 find_linux_devel_paths $TOPDIR/reused
1103 local kib_prefix="$2"
1106 # build kernel-ib{,-devel}/compat-rdma{,-devel}
1108 # ofed 1.3 had a bug in the rpm spec
1109 if [ "$OFED_VERSION" = "1.3" ]; then
1113 local OFED_CORE="--with-core-mod --with-ipoib-mod --with-user_mad-mod --with-user_access-mod --with-addr_trans-mod"
1114 local OFED_HARDWARE="--with-mthca-mod --with-mlx4-mod --with-mlx4_en-mod --with-cxgb3-mod --with-nes-mod --with-qib-mod"
1116 if compare_version $OFED_VERSION 3.0; then
1117 OFED_CORE="$OFED_CORE --with-madeye-mod --with-rds-mod"
1119 OFED_HARDWARE="$OFED_HARDWARE --with-mlx5-mod --with-cxgb4-mod --with-ocrdma-mod --with-qib-mod"
1122 # some I/B drivers are architecture dependent and kernel-ib's configure
1123 # does not figure it out for us ~sigh~
1124 case "$TARGET_ARCH" in
1126 OFED_HARDWARE="$OFED_HARDWARE --with-ehca-mod"
1129 # we're no longer shipping the OFED iSCSI target
1130 #OFED_ISCSI="--with-srp-mod --with-srp-target-mod"
1131 OFED_ISCSI="--with-srp-mod"
1132 ## ISER module has no backport support as of OFED 1.5 (i.e. only builds on
1133 ##kernels >= 2.6.30)
1134 #if [[ $OFED_VERSION = 1.[0-4]* ]]; then
1135 # OFED_ISCSI="$OFED_ISCSI --with-iser-mod"
1138 # assume we are just rebuilding the SRPM
1139 local BUILD_TYPE=${BUILD_TYPE:-"--rebuild"}
1140 local SOURCE="${TOPDIR}/OFED/SRPMS/${kib_prefix}-*.src.rpm"
1142 # but switch to building from the SPEC if we need to apply patches
1143 if ls ${TOPDIR}/lustre/contrib/patches/ofed/* >/dev/null; then
1145 rpm --define "_topdir ${TOPDIR}" -ivh $SOURCE
1146 SOURCE="${TOPDIR}/SPECS/${kib_prefix}.spec"
1147 local file ed_fragment1 ed_fragment2 n=1
1148 for file in $(ls ${TOPDIR}/lustre/contrib/patches/ofed/*.patch); do
1149 ed_fragment1="$ed_fragment1
1150 Patch$n: ${file%%*/}"
1151 ed_fragment2="$ed_fragment2
1153 cp $file ${TOPDIR}/SOURCES
1156 for file in $(ls ${TOPDIR}/lustre/contrib/patches/ofed/*.ed); do
1157 # Only apply the ed-scripts that should be used for the canonical target
1158 # ed-files in ${TOPDIR}/lustre/contrib/patches/ofed/ have to follow the naming
1160 # <two-digits>-<descriptive-name>:<canonical_target_1>: ...:<canonical_target_N>.ed
1161 # To apply the same change to multiple canonical target simply specify
1162 # a list of colon separated canoncial target names in the file name.
1163 echo "$file" | grep -q -e ":${CANONICAL_TARGET}:" \
1164 -e ":${CANONICAL_TARGET}.ed$"
1165 if [ $? -eq 0 ] ; then
1166 ed_fragment3="$ed_fragment3
1172 if [ $n -gt 1 ]; then
1186 local linuxrelease=$(find_linux_release)
1187 if compare_version $OFED_VERSION 3.0; then
1188 local OFA_KERNEL_RELEASE=$(echo -n ${linuxrelease} | sed -e 's/-/_/g')
1190 if ! rpmbuild $BUILD_TYPE --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
1191 --define "_topdir ${TOPDIR}" --target ${TARGET_ARCH} \
1192 --define "KVERSION ${linuxrelease}" \
1193 --define "$K_SRC ${linux}" \
1194 --define "LIB_MOD_DIR /lib/modules/${linuxrelease}/updates" \
1195 ${OFA_KERNEL_RELEASE:+--define "_release $OFA_KERNEL_RELEASE"} \
1196 --define "configure_options --without-quilt $OFED_CORE $OFED_HARDWARE $OFED_ISCSI" \
1197 ${SOURCE} 2>&1; then
1198 fatal 1 "Error building ${kib_rpm}"
1207 local signature="$4"
1208 local use_links="$5"
1215 local default_iface=$(/sbin/ip route get 192.1.1.1 | sed -ne 's/.* dev \(.*\) * src .*/\1/p')
1216 if [ -z "$default_iface" ]; then
1217 fatal 1 "Failed to determine the default route interface"
1219 local unique_id=$(/sbin/ip addr show dev $default_iface | sed -ne '/ inet /s/ *inet \(.*\)\/.*/\1/p' | head -1)
1220 if [ -z "$unique_id" ]; then
1221 fatal 1 "Failed to determine a unique id from interface $default_interface"
1224 local finallocation="$location"/"$signature"/"$module"
1225 location="$location"/"$signature-${unique_id}"/"$module"
1226 mkdir -p "$location"
1227 # the cleanup script removes any directory that doesn't have a
1228 # .lastused, so let's try to prevent that as soon as we can
1229 # this solution still slightly racy with the cleanup script
1230 # but the race is a lot tighter now
1231 touch -t 197001010000 "$location/.lastused"
1232 ## use eval/echo here to make sure shell expansions are performed
1233 #if ! cp -a${linkflag} $(eval echo $articles) "$location"; then
1235 for article in $(eval echo $articles); do
1236 if ! cp -a${linkflag} "$article" "$location"; then
1237 error "Failed to copy \"$article\" to \"$location\" in store_for_reuse()"
1238 # rename the cache location so that it's not cached
1239 # product, but is around for analysis
1240 mv "$location"{,-bad-$(date +%s)} ||
1241 error "failed to clean up a failed cache attempt" \
1242 "in \"$location\" -- manual cleanup will be" \
1248 # flag the cache as complete (i.e. in case lbuild was previously
1249 # interrupted while caching)
1250 touch "$location/.lastused"
1252 # put the temporary location into the final location
1254 mkdir -p "${finallocation%/*}"
1255 mv "$location" "$finallocation"
1256 rmdir "${location%/*}"
1264 local use_links="${3:-false}"
1265 local signature="$4"
1267 if [ -n "$REUSEBUILD" ] && [ -d "$REUSEBUILD/$signature/$module" ]; then
1268 if [ ! -f "$REUSEBUILD/$signature/$module/.lastused" ]; then
1269 # the .lastused flag is populated at the end of the caching to
1270 # signal that the caching was completed. if that flag is not
1271 # there, then the cache is invalid (and should be removed in fact)
1272 mv "$REUSEBUILD/$signature/$module"{,-bad-$(date +%s)} ||
1273 fatal 1 "failed to clean up a bad cache in location $REUSEBUILD/$signature/$module\" -- manual cleanup will be necessary"
1277 # so that we know how stale this entry is
1278 touch $REUSEBUILD/$signature/$module/.lastused
1281 if ls $REUSEBUILD/$signature/$module/* >/dev/null 2>&1; then
1282 cp -al $REUSEBUILD/$signature/$module/* $dest/
1285 # copying is pretty heavy
1286 # cp -a $REUSEBUILD/$signature/$module/* $dest/
1287 # do some creative symlinking instead
1289 for dir in BUILD SRPMS SPECS; do
1290 if ls $REUSEBUILD/$signature/$module/$dir/* >/dev/null 2>&1; then
1291 ln -s $REUSEBUILD/$signature/$module/$dir/* $dest/$dir
1294 # sources have to be copied by file because we need SOURCES to
1295 # be a dir we can write into
1296 # could overrun ls's arg list here
1297 #ls $REUSEBUILD/$signature/$module/SOURCES/* |
1298 find $REUSEBUILD/$signature/$module/SOURCES/ -type f |
1299 xargs ln -t $dest/SOURCES -s
1301 # same for RPMS/* dirs
1302 # could overrun ls's arg list here
1303 #ls $REUSEBUILD/$signature/$module/RPMS/$TARGET_ARCH/* |
1305 for dir in $REUSEBUILD/$signature/$module/RPMS/*; do
1306 mkdir -p $dest/RPMS/${dir##*/}
1308 xargs ln -t $dest/RPMS/${dir##*/} -s
1320 if [[ $arch = i[3456]86 ]]; then
1328 build_kernel_with_srpm() {
1331 if [ -z "$outfd" ] || [ $outfd = 1 ]; then
1332 fatal 1 "You must supply a file descriptor to ${FUNCNAME[0]} and it cannot be 1"
1335 # need to generate the patch for this target
1336 do_patch_linux false >&${outfd} # sets global $FULL_PATCH (yeah, yuck)
1338 # get an md5sum of the kernel patch + config for reuse check
1339 # XXX really, there needs to be a signature and a CONFIG_FILE per arch
1343 local release_str="RELEASE=$RELEASE\n"
1346 if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1347 local REUSE_SIGNATURE=$({ echo -en $release_str;
1350 cat "$TARGET_FILE" |
1351 sed -e '/_VERSION=/s/_[0-9]*_g.*$//g';
1353 cat "$LBUILD_DIR/lbuild";
1354 cat "$LBUILD_DIR/lbuild-$DISTROMAJ"; } |
1355 md5sum | cut -d" " -f1)
1356 # see if we can link to the reuse pool
1357 # XXX - hrm. i'm not convinced this doesn't belong in the reuse
1359 local CAN_LINK_FOR_REUSE=false
1360 touch $REUSEBUILD/$$
1361 if cp -al $REUSEBUILD/$$ $TOPDIR/ 2>/dev/null; then
1362 CAN_LINK_FOR_REUSE=true
1367 # the extra version string to use for the kernel (which might be a reused
1369 local kernel_extra_version=""
1370 if ! $USE_BUILD_CACHE || ! reuse kernel "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1371 "$REUSE_SIGNATURE"; then
1372 # nothing cached, build from scratch
1373 echo "Downloading kernel SRPM" >&${outfd}
1374 download_srpm "$CANONICAL_TARGET" "$KERNEL_SRPM" >&${outfd}
1376 if ! rpm -ivh $KERNELDIR/$KERNEL_SRPM \
1377 --define "_topdir $TOPDIR" >&${outfd} 2>&1; then
1378 # should we clean this up or leave it for analysis?
1380 fatal 1 "Error installing kernel SRPM."
1383 # put the Lustre kernel patch into the RPM build tree
1384 cp $FULL_PATCH $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch
1385 prepare_and_build_srpm >&${outfd} ||
1386 fatal 1 "failed to prepare_and_build_srpm"
1388 if [ -z "$REUSE_SIGNATURE" ]; then
1389 echo "No reuse signature was caculated so not storing the built kernel" >&${outfd}
1391 # store the resulting kernel RPM build tree for future use
1392 echo "Storing the built kernel for future reuse" >&${outfd}
1393 if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,SRPMS,RPMS}" \
1394 "kernel" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1395 "$CAN_LINK_FOR_REUSE"; then
1396 error "Failed to store kernel RPMS for reuse"
1397 echo "unknown" >&${outfd}
1403 # figure out the EXTRA_VERSION of the kernel we built or are re-using
1405 if ! KERNEL_RPM=$(find_rpm "$TOPDIR/RPMS/$TARGET_ARCH/" provides "^kernel(-default)? ="); then
1406 fatal 1 "Failed to find a kernel RPM in $TOPDIR/RPMS/$TARGET_ARCH/"
1408 kernel_extra_version=$(rpm -q --queryformat "%{RELEASE}" -p $TOPDIR/RPMS/$TARGET_ARCH/$KERNEL_RPM)
1410 # should now have the following RPMs
1411 # $TOPDIR/RPMS/$arch/kernel-lustre-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1412 # $TOPDIR/RPMS/$arch/kernel-lustre-devel-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1413 # $TOPDIR/RPMS/$arch/kernel-lustre-headers-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1414 # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-common-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1415 # $TOPDIR/RPMS/$arch/kernel-lustre-debuginfo-2.6.18-53.1.21.el5_lustre.1.6.5.1.$arch.rpm
1417 echo $kernel_extra_version
1425 # REUSEBUILD, USE_BUILD_CACHE
1430 local ofed_version="$2"
1434 # if an ofed version is given, then it means use OFED proper,
1435 # not any vendor specific "inkernel" version
1436 if [ -z "$ofed_version" ]; then
1440 if [ "$ofed_version" = "inkernel" ]; then
1441 # see if there is a distro specific override for this and use
1443 # XXX we need to better integrate a distro specific override with
1444 # the rest of this function so that all of the reuse cache
1445 # stuff is leveraged given that 80% of this function is reuse
1446 if type -p build_ofed-$DISTROMAJ; then
1448 ofed_location=$(build_ofed-$DISTROMAJ ${STDOUT})
1449 local rc=${PIPESTATUS[0]}
1450 CONFIGURE_FLAGS="--with-o2ib=${ofed_location} ${CONFIGURE_FLAGS}"
1455 elif compare_version $OFED_VERSION 3.0; then
1456 kib_prefix="ofa_kernel"
1459 kib_prefix="compat-rdma"
1460 kib_rpm="compat-rdma"
1463 # build kernel-ib/compat-rdma
1464 if $USE_BUILD_CACHE && [ -n "$REUSEBUILD" ]; then
1465 local REUSE_SIGNATURE=$({ echo "$ofed_version";
1466 echo "$(find_linux_release;
1467 echo "$BUILD_GEN")";
1468 cat "${linux}/include/linux/autoconf.h";
1469 cat "$LBUILD_DIR/lbuild";
1470 cat "$LBUILD_DIR/lbuild-$DISTROMAJ"; } |
1471 md5sum | cut -d" " -f1)
1472 # see if we can link to the reuse pool
1473 # XXX - hrm. i'm not convinced this doesn't belong in the reuse
1475 local CAN_LINK_FOR_REUSE=false
1476 touch $REUSEBUILD/$$
1477 if cp -al $REUSEBUILD/$$ $TOPDIR/; then
1478 CAN_LINK_FOR_REUSE=true
1483 if ! $USE_BUILD_CACHE || ! reuse ofed "$TOPDIR" "$CAN_LINK_FOR_REUSE" \
1484 "$REUSE_SIGNATURE"; then
1485 if [ -n "$REUSE_SIGNATURE" ]; then
1486 # stash away the existing built articles for a moment
1488 mv {BUILD,{S,}RPMS,S{OURCE,PEC}S} bak
1491 find . | cpio -pudlm ..
1495 create_rpmbuild_dirs
1498 build_kernel_ib "${linux}" "${kib_prefix}" "${kib_rpm}"
1500 if [ -z "$REUSE_SIGNATURE" ]; then
1501 echo "No reuse signature was caculated so not storing the built ofed"
1503 # store the resulting RPM build tree for future use
1504 echo "Storing the built ofed for future reuse"
1505 if ! store_for_reuse "$TOPDIR/{SPECS,SOURCES,BUILD,SRPMS,RPMS}" \
1506 "ofed" "$REUSEBUILD" "$REUSE_SIGNATURE" \
1507 "$CAN_LINK_FOR_REUSE"; then
1508 error "Failed to store OFED RPMS for reuse"
1512 # put the stuff we stashed away back
1517 pushd "$TOPDIR" >/dev/null
1518 rm -rf ${kib_rpm}-devel
1519 mkdir ${kib_rpm}-devel
1521 # the actual ofed RPMs don't have the -rc$n or -$date string appened that
1522 # might be present on the file
1523 #local linuxrelease=$(find_linux_release)
1524 #ofed_version=$(echo $ofed_version |
1525 # sed -re 's/-(20[0-9]{6,6}-[0-9]{4,4}|rc[0-9]*)$//')
1527 # OFED version will have 'hyphen' for minor release. (e.g. 3.5-1, instead
1528 # of 3.5.1) compat-rdma and compat-rdma-devel could have same version
1529 # number, but currectly not. Once OFED fix this in the future release, we
1530 # can remove following filter.
1531 #ofed_version=$(echo $ofed_version |
1532 # sed -re 's/-([0-9]*-[rR][cC][0-9]*)$//')
1533 #local rpm=$(ls $TOPDIR/RPMS/*/${kib_rpm}-devel-${ofed_version}-${linuxrelease//-/_}.*.rpm)
1534 # I dont' know why we have gone through the trouble to filter out the name
1535 # of the rpm there should only be one ${kib_rpm}-devel built
1536 local rpm=$(ls $TOPDIR/RPMS/*/${kib_rpm}-devel-*.rpm)
1537 if ! rpm2cpio < $rpm | cpio -id; then
1538 fatal 1 "could not unpack the ${kib_rpm}-devel rpm."
1540 CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/${kib_prefix} ${CONFIGURE_FLAGS}"
1547 if ! $PATCHLESS; then
1548 local kernel_extra_version
1549 if ! kernel_extra_version=$(build_kernel_with_srpm ${STDOUT}); then
1550 fatal 1 "Failed to build the kernel from it's SRPM"
1553 for arch in $BUILD_ARCHS; do
1554 local kernel_devel_rpm
1555 if ! kernel_devel_rpm=$(find_rpm "$TOPDIR/RPMS/$arch/" provides "^$(devel_kernel_name $KERNEL_LUSTRE_NAMING) ="); then
1556 fatal 1 "Failed to find a kernel development RPM in $TOPDIR/RPMS/$arch/"
1559 # install the -devel RPM in preparation for modules builds
1560 if ! lnxrel="$kernel_extra_version" unpack_linux_devel_rpm \
1561 "$TOPDIR/RPMS/$arch/$kernel_devel_rpm"; then
1562 fatal 1 "Could not find the Linux tree in $TOPDIR/RPMS/$arch/$kernel_devel_rpm"
1566 # need to find and unpack the vendor's own kernel-devel for patchless
1569 if ! kernelrpm=$(find_linux_rpm "-$DEVEL_KERNEL_TYPE"); then
1570 fatal 1 "Could not find the kernel-$DEVEL_KERNEL_TYPE RPM in $KERNELRPMSBASE/$lnxmaj/$DISTROMAJ"
1572 if ! lnxrel="$lnxrel" unpack_linux_devel_rpm "$kernelrpm" "-"; then
1573 fatal 1 "Could not find the Linux tree in $kernelrpm"
1577 # ~sigh~ have to make copies of and modify some of the rpm
1578 # infrastructure files so that find-requires can find our unpacked
1579 # kernel-devel artifacts
1580 cp $RPM_HELPERS_DIR/{symset-table,find-requires{,.ksyms}} .
1581 export FIND_REQUIRES="$(pwd)/find-requires"
1582 chmod 755 {symset-table,find-requires{,.ksyms}}
1584 tmp="${tmp//\//\\/}"
1585 ed find-requires <<EOF
1589 /|.*find-requires.ksyms/s/|/| bash -x/
1590 g/ [^ ]*\/\(find-requires\.ksyms\)/s// $tmp\/\1/g
1593 ed find-requires.ksyms <<EOF
1597 g/\/.*\/\(symset-table\)/s//$tmp\/\1/g
1598 g/\(\/usr\/src\/kernels\/\)/s//$tmp\/reused\1/g
1601 ed symset-table <<EOF
1605 g/\(\/boot\/\)/s//$tmp\/reused\1/g
1606 g/\(\/usr\/src\/kernels\/\)/s//$tmp\/reused\1/g
1610 build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
1611 fatal 1 "error building OFED"
1614 if build_lustre "$LINUX" "$LINUXOBJ"; then
1615 # the build worked. resolve any symlinked files (i.e. from reuse)
1616 # in RPMS/$arch to real files so that that that huge mess of
1617 # complication known as LTS can copy them yet somewhere else.
1618 # is it any wonder this whole process is so damn so? anyone ever
1619 # heard of hardlinks? it's this cool new thing that allows you save
1620 # tons of time and space by creating... well you can go read about
1621 # them if you have not heard about them yet.
1622 # can i say how much the implemenation of all of this really impedes
1625 for dir in RPMS/*; do
1627 for file in $(ls); do
1628 if [ -h $file ]; then
1635 # also, for i?86, make sure all of the RPMs are in RPMS/$TARGET_ARCH
1636 # as that's where LTS expects to find them
1637 for dir in RPMS/*; do
1638 if [ $dir = RPMS/$TARGET_ARCH ]; then
1643 if [ -n "$files" ]; then
1644 cp -al $files ../$TARGET_ARCH
1654 create_rpmbuild_dirs() {
1656 [ -d RPMS ] || mkdir RPMS
1657 for arch in $BUILD_ARCHS; do
1658 if [[ $arch = i?86 ]]; then
1659 # some stupidity in the sles11 kernel spec requires an RPMS/i386
1660 # even if the target arch is i686
1661 [ -d RPMS/i386 ] || mkdir RPMS/i386
1663 [ -d RPMS/$arch ] || mkdir RPMS/$arch
1665 [ -d RPMS/noarch ] || mkdir RPMS/noarch
1666 [ -d BUILD ] || mkdir BUILD
1667 [ -d SOURCES ] || mkdir SOURCES
1668 [ -d SPECS ] || mkdir SPECS
1669 [ -d SRPMS ] || mkdir SRPMS
1691 [[ $list\ == *\ $item\ * ]]
1695 #########################################################################
1696 # Generate a backtrace through the call stack.
1700 #########################################################################
1704 local funcname="" sourcefile="" lineno="" n
1706 echo "Call stack: (most recent first)"
1707 for (( n = $strip ; n < ${#FUNCNAME[@]} ; ++n )) ; do
1708 funcname=${FUNCNAME[$n - 1]}
1709 sourcefile=$(basename ${BASH_SOURCE[$n]})
1710 lineno=${BASH_LINENO[$n - 1]}
1714 # Display function arguments
1715 if [[ ! -z "${BASH_ARGV[@]}" ]]; then
1716 local args newarg j p=0
1717 for (( j = ${BASH_ARGC[$n - 1]}; j > 0; j-- )); do
1718 newarg=${BASH_ARGV[$j + $p - 1]}
1719 args="${args:+${args} }'${newarg}'"
1721 let p+=${BASH_ARGC[$n - 1]}
1723 echo " ${funcname} ${args:+${args} }at ${sourcefile}:${lineno}"
1727 echo "BEGIN BACKTRACE"
1729 #echo ${BASH_LINENO[*]}
1730 #echo ${BASH_SOURCE[*]}
1731 #echo ${FUNCNAME[*]}
1732 local i=$((${#FUNCNAME[@]} - 1))
1733 while [ $i -ge 0 ]; do
1734 local lineno=${BASH_LINENO[$i]}
1738 local SOURCELINE="${BASH_SOURCE[$i + 1]}:${lineno}"
1739 # Can't figure out how to get function args from other frames...
1740 local FUNCTION="${FUNCNAME[$i]}()"
1741 echo "$SOURCELINE:$FUNCTION"
1745 echo "END BACKTRACE"
1751 seen_list=$(new_list)
1753 echo "An unexpected error has occurred at ${BASH_SOURCE[0]##*/}:$((LINENO-1)).
1754 Unfortunately the above line number in the message may or may not be correct,
1755 but details have been send to the lbuild maintainer. Attempting to continue."; (echo "Untrapped error"
1757 # have we seen this one
1758 echo "checking seen list for ${BASH_SOURCE[0]}:${BASH_LINENO[0]}"
1760 if is_list_member "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}"; then
1761 echo "seen this one already"
1763 seen_list=$(add_list "$seen_list" "${BASH_SOURCE[0]}:${BASH_LINENO[0]}")
1766 ) ; set $xtrace' ERR
1769 [ -r ~/.lbuildrc ] && . ~/.lbuildrc
1771 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 -- "$@")
1773 if [ $? != 0 ]; then
1777 eval set -- "$options"
1808 if ! KERNELTREE=$(canon_path "$2"); then
1809 fatal 1 "Could not determine the canonical location of $2"
1813 --linux | --with-linux)
1814 if ! LINUX=$(canon_path "$2"); then
1815 fatal 1 "Could not determine the canonical location of $2"
1824 if ! REUSEBUILD=$(canon_path "$2"); then
1825 fatal 1 "Could not determine the canonical location of $2"
1841 if ! KERNELRPMSBASE=$(canon_path "$2"); then
1842 fatal 1 "Could not determine the canonical location of $2"
1851 if ! LUSTRE=$(canon_filepath "$2"); then
1852 fatal 1 "Could not determine the canonical location of $2"
1905 # there are actually some lustre configure flags that we need to
1906 # handle ourselves (but we still give them to configure)
1907 if [[ \ $@\ == *\ --disable-tests\ * ]]; then
1914 usage 1 "Unrecognized option: $1"
1925 if [ -n "$OFED_VERSION" -a "$OFED_VERSION" != "inkernel" ]; then
1927 unpack_ofed || fatal 1 "Error unpacking OFED tarball"
1930 # make sure the RPM build environment is set up
1931 create_rpmbuild_dirs
1933 # if an unpacked kernel source tree was given on the command line
1934 # just build lustre with it (nothing distro kernel specific here)
1935 if [ -n "$LINUX" ]; then
1936 find_linux_release() {
1937 _find_linux_release $LINUX
1939 build_ofed "${LINUXOBJ:-$LINUX}" "$OFED_VERSION" ||
1940 fatal 1 "error building OFED"
1941 build_lustre "$LINUX" "$LINUXOBJ"
1943 if [ ! -f "${LBUILD_DIR}/lbuild-$DISTROMAJ" ]; then
1944 fatal 1 "${LBUILD_DIR}/lbuild-$DISTROMAJ not found"
1946 source ${LBUILD_DIR}/lbuild-$DISTROMAJ
1947 build_with_srpm || fatal 1 "Failed to build_with_srpm"