Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / build / lmake
1 #!/bin/sh
2
3 # option variables
4 DESTDIR=
5 KERNELDIR=
6 TARGET=
7 # Not sure what to put here
8 # TARGET_ARCH=$(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e s/arm.*/arm/ -e s/sa110/arm/)
9 TARGET_ARCH=
10 TARGET_CONFIG=
11 JOBS=1
12 CONFIGURE_FLAGS=
13 TMPDIR=${TMPDIR:-"/var/tmp"}
14
15 # commands to run
16 BUILD_LUSTRE=0
17 BUILD_KERNEL=0
18 DEPEND_KERNEL=0
19 INSTALL_LUSTRE=0
20 INSTALL_KERNEL=0
21 SAVE_HEADERS=0
22 UNPACK_KERNEL=0
23
24 # provided by target file
25 KERNEL=
26 SERIES=
27 CONFIG=
28 VERSION=
29 EXTRA_VERSION=
30
31 BASE_ARCHS=
32 BIGMEM_ARCHS=
33 BOOT_ARCHS=
34 JENSEN_ARCHS=
35 SMP_ARCHS=
36 BIGSMP_ARCHS=
37 PSERIES64_ARCHS=
38 UP_ARCHS=
39
40 RHBUILD=0
41 SUSEBUILD=0
42
43 # flat-out globals
44 TOPDIR=
45 TARGET_FILE=
46 KERNEL_FILE=
47 SERIES_FILE=
48 CONFIG_FILE=
49 RPMBUILD=
50
51 canon()
52 {
53     pushd $1 >/dev/null
54     echo $PWD
55     popd >/dev/null
56 }
57 TOPDIR="${0%%${0##*/}}"
58 if [ "${TOPDIR}" ] ; then
59     TOPDIR=$(canon "${TOPDIR}/..")
60 else
61     TOPDIR=$(canon "..")
62 fi
63
64 lbuild_topdir()
65 {
66     retdir=$TOPDIR
67     while [ ! -d $retdir/BUILD ] ; do
68         retdir=$(canon "$retdir/..")
69         if [ "$retdir" = "/" ] ; then
70             break;
71         fi
72     done
73     echo "$retdir"
74 }
75
76 cleanup()
77 {
78     true
79 }
80
81 fatal()
82 {
83     cleanup
84     [ "$2" ] && echo
85     [ "$2" ] && echo "${0##*/}: $2"
86     exit $1
87 }
88
89 list_targets()
90 {
91     echo -n "Available targets:"
92     for target in $TOPDIR/lustre/kernel_patches/targets/*.target ; do
93         target_file=${target##*/}
94         echo -n " ${target_file%%.target}"
95     done
96     echo
97 }
98
99
100 usage()
101 {
102     cat <<EOF
103 Usage: ${0##*/} [OPTION]... [-- <lustre configure options>]
104
105 Options:
106
107   --build
108     same as --build-kernel --build-lustre --unpack-kernel
109
110   --build-lustre
111     configure and compile lustre.  Requires that --build-kernel was
112     already run.
113
114   --build-kernel
115     configure and compile a kernel.  Implies --depend-kernel.
116     Requires that --unpack-kernel was already run.
117
118   --depend-kernel)
119     Prepares a kernel tree for building (similar to make mrproper
120     oldconfig dep).  Requires that --unpack-kernel was already run.
121
122   --destdir=DESTDIR
123     Root directory to install into (like DESTDIR with auto*).
124
125   --extraversion=EXTRAVERSION
126     Overrides the target kernel\'s EXTRAVERSION text.
127
128   -h, --help
129     Display this message.
130
131   --install
132     same as --install-kernel --install-lustre
133
134   --install-lustre
135     run make install in the Lustre tree.
136
137   --install-kernel
138     install the kernel image and modules.
139
140   -j jobs
141     This works just like the -j option to make, and is passed to make
142     when building.
143
144   --kerneldir=KERNELDIR
145     Directory containing linux source tarballs.
146
147   --target=TARGET
148     Name of the configuration to use.  The available targets are
149     listed below.
150
151   --target-arch=ARCH
152     Specifies an architecture to use when choosing a kernel config
153     file.  Default is i386.
154
155   --target-config=CONFIG
156     Specifies a special option (such as smp, bigsmp, bigmem, or BOOT)
157     to use when choosing a kernel config file.  This also modifies the
158     kernel version and modules directory.
159
160   --unpack-kernel
161     Untars and patches the kernel source.
162
163   The order that commands (--build-lustre, --unpack-kernel) are
164   specified on the command line is ignored; ${0##*/} will always
165   execute them in the correct order (unpack, then build, then install
166   etc.).
167
168 EOF
169     list_targets
170
171     fatal "$1" "$2"
172 }
173
174 check_options()
175 {
176     (( $BUILD_LUSTRE || $BUILD_KERNEL || $DEPEND_KERNEL || \
177             $INSTALL_LUSTRE || $INSTALL_KERNEL || $SAVE_HEADERS || \
178             $UNPACK_KERNEL )) || \
179                 fatal 1 "No commands specified."
180
181     if (( $UNPACK_KERNEL )) ; then
182         [ "$KERNELDIR" ] || \
183             fatal 1 "A kernel directory must be specified with --kerneldir."
184         [ -d "$KERNELDIR" ] || \
185             fatal 1 "$KERNELDIR is not a directory."
186     fi
187
188     if (( $INSTALL_LUSTRE || $INSTALL_KERNEL || $SAVE_HEADERS )) ; then
189         [ -z "$DESTDIR" -o -d "$DESTDIR" ] || \
190             fatal 1 "$DESTDIR is not a directory."
191     fi
192
193     [ "$TARGET" ] || usage 1 "A target must be specified with --target."
194     TARGET_FILE="$TOPDIR/lustre/kernel_patches/targets/$TARGET.target"
195     [ -r "$TARGET_FILE" ] || \
196         fatal 1 "Target '$TARGET' was not found.  Try --list-targets."
197
198     if [ -z "$JOBS" -o "$JOBS" -lt "1" ] ; then
199         JOBS=1
200     fi
201
202     RPMBUILD=$(which rpmbuild 2>/dev/null | head -1)
203     if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
204         RPMBUILD=$(which rpm 2>/dev/null | head -1)
205         if [ ! "$RPMBUILD" -o "$RPMBUILD" == "" ]; then
206             usage 1 "Could not find binary for making rpms (tried rpmbuild and rpm)."
207         fi
208     fi
209 }
210
211 get_lustre_version()
212 {
213     for series in $SERIES ; do
214         SERIES_FILE="$TOPDIR/lustre/kernel_patches/series/$series"
215         lustre_patch=$(grep lustre_version "$SERIES_FILE" 2>/dev/null)
216         [ "$lustre_patch" ] && break
217     done
218     [ "$lustre_patch" ] || \
219         fatal 1 "Could not determine Lustre version from $SERIES series."
220
221     awk '/^\+#define LUSTRE_KERNEL_VERSION /{ print $3 }' \
222         "$TOPDIR/lustre/kernel_patches/patches/$lustre_patch" 2>/dev/null
223 }
224
225 load_target()
226 {
227     EXTRA_VERSION_save="$EXTRA_VERSION"
228
229     . "$TARGET_FILE"
230
231     [ "$KERNEL" ] || fatal 1 "Target $TARGET did not specify a kernel."
232 # Suse 2.6 has our patches in already
233 #    [ "$SERIES" ] || fatal 1 "Target $TARGET did not specify a patch series."
234 #    [ "$CONFIG" ] || fatal 1 "Target $TARGET did not specify a kernel config."
235     [ "$VERSION" ] || fatal 1 "Target $TARGET did not specify the kernel version."
236     
237     if [ "$KERNELDIR" ] ; then
238         KERNEL_FILE="$KERNELDIR/$KERNEL"
239         [ -r "$KERNELDIR/$KERNEL" ] || \
240             fatal 1 "Target $TARGET's kernel file $KERNEL not found in kernel directory $KERNELDIR."
241     fi
242
243     if [ "$SERIES" ] ; then
244         for series in $SERIES ; do
245             SERIES_FILE="$TOPDIR/lustre/kernel_patches/series/$series"
246             [ -r "$SERIES_FILE" ] || \
247                 fatal 1 "Target $TARGET's series $SERIES missing from $TOPDIR/lustre/kernel_patches/series."
248         done
249     fi
250
251     TARGET_ARCH=${TARGET_ARCH:-$BASE_ARCHS}
252     CONFIG_TARGET="$TARGET-${TARGET_ARCH}${TARGET_CONFIG:+-$TARGET_CONFIG}"
253     CONFIG_FILE="$TOPDIR/lustre/kernel_patches/kernel_configs/kernel-$VERSION-$CONFIG_TARGET.config"
254     [ -r "$CONFIG_FILE" ] ||
255         fatal 1 "Target $TARGET's config file $CONFIG_FILE missing from $TOPDIR/lustre/kernel_patches/configs."
256
257     if [ "$EXTRA_VERSION_save" ] ; then
258         EXTRA_VERSION="$EXTRA_VERSION_save"
259     else
260         EXTRA_VERSION="${EXTRA_VERSION}_lustre.$(get_lustre_version)"
261     fi
262 }
263
264 # do these after load_target(), which maybe export CC
265 setup_ccache_distcc()
266 {
267     # distcc can't handle ".incbin"
268     if [ "$TARGET" == "2.6-suse" -o "$TARGET" == "2.6-rhel4" ]; then
269         if [ "$TARGET_ARCH" == "x86_64" ]; then
270             unset DISTCC
271         fi
272     fi
273     
274     CC=${CC:-gcc}
275     if [ "$CCACHE" ]; then
276         CC="$CCACHE $CC"
277         [ "$DISTCC" ] && export CCACHE_PREFIX="$DISTCC"
278     else
279         [ "$DISTCC" ] && CC="$DISTCC $CC"
280     fi
281 }
282
283 tarflags()
284 {
285     case "$1" in
286         '')
287             fatal 1 "tarflags(): File name argument missing."
288             ;;
289         *.tar.gz | *.tgz)
290             echo 'zxf'
291             ;;
292         *.tar.bz2)
293             echo 'jxf'
294             ;;
295         *.tar)
296             echo 'xf'
297             ;;
298         *)
299             fatal 1 "tarflags(): Unrecognized tar extension in file: $1"
300             ;;
301     esac
302 }
303
304 untar()
305 {
306     echo "Untarring ${1##*/}..."
307     tar $(tarflags $1) $1
308 }
309
310
311 extract_kernel()
312 {
313     (( $UNPACK_KERNEL )) || return 0
314     pushd "$TOPDIR" >/dev/null
315     if [ -d linux ] ; then
316         [ -L linux ] && rm -rf $(readlink linux)
317         rm -rf linux
318     fi
319     untar "$KERNEL_FILE"
320     [ -d linux ] || ln -sf linux* linux
321     popd >/dev/null
322 }
323
324 patch_kernel()
325 {
326     (( $UNPACK_KERNEL )) || return 0
327     [ "$SERIES" ] || return 0
328     pushd "$TOPDIR/linux" >/dev/null
329     for series in $SERIES ; do
330         echo -n "Applying series $series:"
331         SERIES_FILE="$TOPDIR/lustre/kernel_patches/series/$series"
332         for patch in $(<"$SERIES_FILE") ; do
333             PATCH_FILE="$TOPDIR/lustre/kernel_patches/patches/$patch"
334             [ -r "$PATCH_FILE" ] || \
335                 fatal 1 "Patch file not found: $patch"
336             echo -n " $patch"
337             patch -s -p1 < "$PATCH_FILE" || fatal 1 "Error applying patch $patch."
338         done
339         echo
340     done
341     popd >/dev/null
342 }
343
344 set_make()
345 {
346     MAKE="make -s"
347     if [ "$CC" ] ; then
348         MAKE_CC="CC=$CC"
349     fi
350     if [ "$ARCH" ] ; then
351         MAKE_ARCH="$MAKE ARCH=$ARCH"
352     else
353         case $TARGET_ARCH in
354             i?86)
355                 ;;
356             *)
357                 MAKE_ARCH="$MAKE ARCH=$TARGET_ARCH"
358                 ;;
359         esac
360     fi
361     MAKE_J="$MAKE -j $JOBS"
362 }
363
364 timed_run() {
365     SLEEP_TIME=$1
366     shift
367
368     set -o monitor
369
370     #bash -c "$@" &
371     ("$@") &
372     child_pid=$!
373     
374     (sleep $SLEEP_TIME
375     kill -TERM -$child_pid 2>/dev/null
376     sleep 5
377     kill -KILL -$child_pid 2>/dev/null
378     echo "$1 was killed due to timeout") &
379     dog_pid=$!
380
381     wait $child_pid
382     # status will be set to 143 if the process had to be killed due to timeout
383     status=${PIPESTATUS[0]}
384     kill -KILL -$dog_pid
385     return $status
386 }
387
388 depend_kernel()
389 {
390     (( $DEPEND_KERNEL )) || return 0
391     # we need to override $CC at make time, since there is no
392     # configure
393     set_make
394     pushd "$TOPDIR/linux" >/dev/null
395     echo "Overriding EXTRAVERSION in kernel..."
396     local extra_version="${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
397     if [ -n "${TARGET_CONFIG}" ]; then
398         extra_version="${extra_version}${TARGET_DELIMITER}${TARGET_CONFIG}"
399     fi
400     perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = ${extra_version}/" Makefile
401     echo "Making depend in $PWD..."
402     $MAKE "$MAKE_CC" mrproper || fatal 1 "Error running make mrproper"
403     rm -f rpm-release
404     # remove localversion-* files to avoid kernel release string 
405     # srewing up by the top-level Makefile
406     rm -f localversion-*
407     cp "$CONFIG_FILE" .config
408     local UPDATE_OLDCONFIG=
409     for oc in oldconfig_nonint silentoldconfig oldconfig ; do                   
410         if grep -q "$oc" Makefile ; then                                        
411             timed_run 300 $MAKE "$MAKE_CC" $oc || UPDATE_OLDCONFIG=1
412             break
413         fi
414     done
415
416     if [ "$UPDATE_OLDCONFIG" ] ; then
417         # use the expect script to "make oldconfig" and answer the questions for
418         # new items conservatively.  QA will get notified on anything newly added
419         # for them to review and adjust accordingly.
420         local logfile=$(mktemp /tmp/XXXXXX)
421         #timed_run 300 $TOPDIR/build/update_oldconfig $logfile
422         #local RC=${PIPESTATUS[0]}
423         #local RC=$(strace -f -o update_oldconfig.strace bash -c "$TOPDIR/build/update_oldconfig $logfile; echo \$?")
424         $TOPDIR/build/update_oldconfig $logfile
425         local RC=${PIPESTATUS[0]}
426         #$TOPDIR/build/update_oldconfig $logfile
427         #local RC=${PIPESTATUS[0]}
428         if [ $RC -eq 143 ]; then
429             fatal 1 "update_oldconfig timed out"
430         elif [ $RC -ne 0 ]; then
431             # dump the log
432             cat $logfile
433             rm -f $logfile
434             if [ -f update_oldconfig.strace ]; then
435                 cat update_oldconfig.strace
436                 rm -f update_oldconfig.strace
437             fi
438             fatal 1 "update_oldconfig failed: $RC. See log above."
439         fi
440     fi
441     rm -f $logfile
442     # now notify if resulting .config is different than $CONFIG_FILE
443     local tmpfile=$(mktemp /tmp/XXXXXX)
444     diff -I '^#.*' -u "$CONFIG_FILE" .config >$tmpfile
445     if [ -s $tmpfile ]; then
446         { cat <<EOF
447 To: lustre-qa-team@sun.com
448 Subject: kernel_config change 
449
450 The result of a make oldconfig on file $CONFIG_FILE resulted in a
451 difference when compared to .config in the following way:
452
453 EOF
454         cat $tmpfile
455         echo -e "\n\nPlease consider updating $CONFIG_FILE for version: $extra_version."
456         # not sure these are entirely useful.  the above and "patch" are good
457         #echo -e "\nThe entire new .config file:\n"
458         #cat .config
459         # sadly, the build roots can't e-mail out, so we can only display this
460         # to stderr for an interested party to inspect
461         #} | sendmail -flustre-qa-team@sun.com -t
462         } >&2
463     fi
464     rm -f $tmpfile
465
466     case "$VERSION" in
467         2.6*)
468             $MAKE "$MAKE_CC" include/asm
469             ;;
470         2.4*)
471             $MAKE "$MAKE_CC" symlinks
472             $MAKE "$MAKE_CC" dep || fatal 1 "Error running make dep"
473             ;;
474     esac
475     $MAKE "$MAKE_CC" include/linux/version.h || fatal 1 "Error making include/linux/version.h"
476 }
477
478 build_kernel()
479 {
480     (( $BUILD_KERNEL )) || return 0
481     set_make
482     echo "Building kernel in $PWD..."
483     case "$TARGET_ARCH" in
484         i386 | i586 | i686 | athlon | x86_64)
485             $MAKE_J "$MAKE_CC" bzImage || fatal 1 "Error making bzImage."
486             ;;
487     ia64 | ppc | ppc64)
488             $MAKE_J "$MAKE_CC" vmlinux || fatal 1 "Error making vmlinux."
489             ;;
490         *)
491             $MAKE_J "$MAKE_CC" boot || fatal 1 "Error making boot."
492             ;;
493     esac
494     $MAKE_J "$MAKE_CC" modules || fatal 1 "Error building modules."
495
496     popd >/dev/null
497 }
498
499 build_kernel_ib()
500 {
501     (( $BUILD_KERNEL )) || return 0
502     # build kernel-ib{,-devel}
503     # some I/B drivers are architecture dependent and kernel-ib's configure
504     # does not figure it out for us ~sigh~
505     local configure_options=""
506     case "$TARGET_ARCH" in
507         x86_64 | ia64)
508             configure_options="--with-ipath_inf-mod"
509             ;;
510         ppc64)
511             configure_options="--with-ipath_inf-mod --with-ehca-mod"
512             ;;
513     esac
514     $RPMBUILD --rebuild --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
515               --define "_topdir $(lbuild_topdir)" --target ${TARGET_ARCH} \
516               --define "KVERSION ${FULL_VERSION}" \
517               --define "KSRC $PWD/linux" \
518               --define "LIB_MOD_DIR /lib/modules/${FULL_VERSION}" \
519               --define "configure_options --without-quilt --with-core-mod --with-user_mad-mod --with-user_access-mod --with-addr_trans-mod --with-srp-target-mod --with-core-mod --with-mthca-mod --with-mlx4-mod --with-cxgb3-mod --with-nes-mod --with-ipoib-mod --with-sdp-mod --with-srp-mod --without-srp-target-mod --with-rds-mod --with-iser-mod --with-qlgc_vnic-mod --with-madeye-mod $configure_options" $(lbuild_topdir)/OFED/SRPMS/ofa_kernel-${OFED_VERSION}-ofed${OFED_VERSION}.src.rpm
520
521     if [ ${PIPESTATUS[0]} != 0 ]; then
522         fatal 1 "Error building kernel-ib"
523     fi
524
525     pushd "$TOPDIR" >/dev/null
526     rm -rf kernel-ib-devel
527     mkdir kernel-ib-devel
528     cd kernel-ib-devel
529     local rpm=$(ls $(lbuild_topdir)/RPMS/*/kernel-ib-devel-${OFED_VERSION}-${FULL_VERSION//-/_}.*.rpm)
530     rpm2cpio -itv < $rpm | cpio -id
531     CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/ofa_kernel ${CONFIGURE_FLAGS}"
532     popd >/dev/null
533 }
534
535
536 configure_lustre()
537 {
538     return 0
539     (( $BUILD_LUSTRE )) || return 0
540     pushd "$TOPDIR" >/dev/null
541     [ -f Makefile ] && make -s clean
542     [ -f configure ] || sh ./autogen.sh
543     ./configure --with-linux=$PWD/linux $CONFIGURE_FLAGS || \
544         fatal 1 "Error configuring Lustre."
545     popd >/dev/null
546 }
547
548 build_lustre()
549 {
550     (( $BUILD_LUSTRE )) || return 0
551     set_make
552     pushd "$TOPDIR" >/dev/null
553     sed \
554         -e s^@VERSION@^${LUSTRE_VERSION}^g \
555         -e s^@LINUXRELEASE@^${FULL_VERSION}^g \
556         -e s^@RELEASE@^${FULL_VERSION//-/_}^g \
557         -e s^@ac_configure_args@^"--with-linux=${PWD}/linux ${CONFIGURE_FLAGS}"^g \
558         < lustre.spec.in \
559         > lustre.spec
560     $RPMBUILD --target ${TARGET_ARCH} -bb lustre.spec \
561         --define "_tmppath $TMPDIR" \
562         --define "_topdir $(lbuild_topdir)" || \
563         fatal 1 "Error building Lustre rpms."
564     # $MAKE_J "$MAKE_CC" || fatal 1 "Error building Lustre."
565     popd >/dev/null
566 }
567
568 install_kernel()
569 {
570     (( $INSTALL_KERNEL )) || return 0
571     set_make
572     pushd "$TOPDIR/linux" >/dev/null
573     mkdir -p "$DESTDIR/boot"
574
575     install -m 644 System.map "$DESTDIR/boot/System.map-${FULL_VERSION}"
576     # install -m 644 module-info ...
577     install -m 644 "$CONFIG_FILE" "$DESTDIR/boot/config-${FULL_VERSION}"
578
579     mkdir -p "$DESTDIR/dev/shm"
580     mkdir -p "$DESTDIR/lib/modules/${FULL_VERSION}"
581
582     $MAKE "$MAKE_CC" INSTALL_MOD_PATH="$DESTDIR" KERNELRELEASE="$FULL_VERSION" \
583         -s modules_install || \
584         fatal 1 "Error installing modules."
585
586     case "$TARGET_ARCH" in
587         i386 | i586 | i686 | athlon)
588             cp arch/i386/boot/bzImage "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
589             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
590             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
591             ;;
592         x86_64)
593             cp arch/x86_64/boot/bzImage "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
594             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
595             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
596             ;;
597         ppc | ppc64)
598             cp vmlinux "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
599             ln -sf "$DESTDIR/boot/vmlinux-${FULL_VERSION}" "../lib/modules/${FULL_VERSION}/vmlinux" 
600             ;;
601         ia64)
602             gzip -cfv vmlinux > vmlinuz
603             mkdir -p "$DESTDIR/boot/efi/redhat"
604             install -m 755 vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
605             install -m 755 vmlinuz "$DESTDIR/boot/efi/redhat/vmlinuz-${FULL_VERSION}"
606             ln -sf "../../../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/efi/redhat/vmlinux-${FULL_VERSION}"
607             ln -sf "efi/redhat/vmlinux-${FULL_VERSION}" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
608             ln -sf "efi/redhat/vmlinuz-${FULL_VERSION}" "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
609             ;;
610         *)
611             cp vmlinuz "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
612             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/vmlinux-${FULL_VERSION}"
613             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux-${FULL_VERSION}" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
614
615             ;;
616     esac
617     if [ -e init/kerntypes.o ] ; then
618         cp init/kerntypes.o "$DESTDIR/boot/Kerntypes-${FULL_VERSION}"
619     fi
620
621     popd >/dev/null
622 }
623
624 cleanup_libmodules()
625 {
626     (( $INSTALL_LUSTRE )) || return 0
627
628     KVERREL="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
629     i="$DESTDIR/lib/modules/${FULL_VERSION}"
630
631     rm -f $i/build
632     rm -f $i/source
633
634     if (( $LINUX26 )) ; then
635         ln -sf ../../../usr/src/linux-${KVERREL}-obj/${TARGET_ARCH}/${TARGET_CONFIG} $i/build
636         ln -sf ../../../usr/src/linux-${KVERREL} $i/source
637     else
638         ln -sf ../../../usr/src/linux-${KVERREL} $i/build
639     fi
640 }
641
642 install_lustre()
643 {
644     (( $INSTALL_LUSTRE )) || return 0
645     return 0
646     set_make
647     pushd "$TOPDIR" >/dev/null
648     $MAKE "$MAKE_CC" -s install "DESTDIR=$DESTDIR" KERNELRELEASE="$FULL_VERSION" || fatal 1 "Error installing Lustre."
649     popd >/dev/null
650 }
651
652 build_kms()
653 {
654     (( $BUILD_KERNEL )) || return 0
655     (( $SUSEBUILD )) || return 0
656     set_make
657     mkdir -p "${TOPDIR}/modules-${FULL_VERSION}"
658     for dir in /usr/src/kernel-modules/* ; do
659         # we are replacing lustre-lite, so don't include it
660         if [ "${dir##*/}" != "lustre-lite" -a -e $dir/Makefile ]; then
661             build_dir="${TOPDIR}/modules-${FULL_VERSION}/${dir##*/}"
662             cp -a $dir $build_dir
663             # these modules are terrible, and don't all build
664             $MAKE_J "$MAKE_CC" -C $build_dir modules KERNEL_SOURCE="${TOPDIR}/linux"
665         fi
666     done
667 }
668
669 symver()
670 {
671     local file=$1 name=${1%.ko}
672     nm $file \
673     | sed -ne 's,^0*\([0-9a-f]\{8\}\) A __crc_\(.*\),0x\1\t\2\t'"$name"',p'
674 }
675
676 install_kms()
677 {
678     (( $INSTALL_KERNEL )) || return 0
679     (( $LINUX26 )) || return 0
680     set_make
681     for build_dir in "${TOPDIR}/modules-${FULL_VERSION}/*" ; do
682         [ -d $build_dir ] || continue
683         # these modules are terrible, and don't all build
684         $MAKE "$MAKE_CC" -C $build_dir KERNEL_SOURCE="${TOPDIR}/linux" INSTALL_MOD_PATH="$DESTDIR" 
685     done
686     local symvers_file="${DESTDIR}/boot/symvers-${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}-${TARGET_ARCH}"
687     if [ -n "$TARGET_CONFIG" ]; then
688         symvers_file="${symvers_file}${TARGET_DELIMITER}${TARGET_CONFIG}"
689     fi
690     symvers_file="$symvers_file.gz"
691     (   symver vmlinux
692         moddir="${DESTDIR}/lib/modules/${FULL_VERSION}"
693         cd $moddir/kernel
694         for module in $(find * -name '*.ko'); do
695             symver $module
696         done
697         cd $moddir
698         for module in $(find * -path 'kernel/*' -prune -o \
699                            -name '*.ko' -print); do
700             symver $module
701         done
702     ) | sort -u -k2 | gzip -c9 > $symvers_file
703 }
704
705 save_headers()
706 {
707     (( $SAVE_HEADERS )) || return 0
708
709     echo "Saving headers for ${TARGET_CONFIG:-up} ${TARGET_ARCH}..."
710     pushd linux >/dev/null
711
712     KVERREL="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
713     # deal with the kernel headers that are version specific
714     
715     saveddir="$RPM_BUILD_ROOT/usr/src/linux-${KVERREL}/savedheaders/${TARGET_ARCH}/${TARGET_CONFIG:-up}"
716     mkdir -p "$saveddir"
717     install -m 644 include/linux/autoconf.h "$saveddir/autoconf.h"
718     install -m 644 include/linux/version.h  "$saveddir/version.h"
719     mv include/linux/modules "$saveddir/"
720     echo ${TARGET_ARCH} ${TARGET_CONFIG} ../../savedheaders/${TARGET_ARCH}/${TARGET_CONFIG:-up}/ \
721         >>  "$RPM_BUILD_ROOT/usr/src/linux-${KVERREL}/savedheaders/list"
722     popd >/dev/null
723 }
724
725 save_all_headers()
726 {
727     (( $SAVE_HEADERS )) || return 0
728
729     for arch in $BIGMEM_ARCHS ; do
730         save_headers bigmem $arch
731     done
732
733     for arch in $BOOT_ARCHS ; do
734         save_headers BOOT $arch
735     done
736
737     for arch in $JENSEN_ARCHS ; do
738         save_headers jensen $arch
739     done
740
741     for arch in $SMP_ARCHS ; do
742         save_headers smp $arch
743     done
744
745     for arch in $BIGSMP_ARCHS ; do
746         save_headers bigsmp $arch
747     done
748     for arch in $PSERIES64_ARCHS ; do
749         save_headers pseries64 $arch
750     done
751     for arch in $UP_ARCHS ; do
752         save_headers up $arch
753     done
754 }
755
756 longopts="build,build-lustre,build-kernel,depend-kernel,destdir:,extraversion:"
757 longopts="$longopts,help,install,install-lustre,install-kernel,kerneldir:"
758 longopts="$longopts,save-headers,target:,target-arch:,target-config:,unpack-kernel"
759
760 options=$(getopt -o hj: -l "$longopts" -- "$@")
761
762 eval set -- "$options"
763     
764 while [ "$1" ] ; do
765     case "$1" in
766         '')
767             usage 1
768             ;;
769         --build)
770             BUILD_LUSTRE=1
771             BUILD_KERNEL=1
772             DEPEND_KERNEL=1
773             UNPACK_KERNEL=1
774             shift
775             ;;
776         --build-lustre)
777             BUILD_LUSTRE=1
778             shift
779             ;;
780         --build-kernel)
781             BUILD_KERNEL=1
782             DEPEND_KERNEL=1
783             shift
784             ;;
785         --depend-kernel)
786             DEPEND_KERNEL=1
787             shift
788             ;;
789         --destdir)
790             DESTDIR=$2
791             shift 2
792             ;;
793         --extraversion)
794             EXTRA_VERSION=$2
795             shift 2
796             ;;
797         --help | -h)
798             usage 0
799             ;;
800         --install)
801             INSTALL_LUSTRE=1
802             INSTALL_KERNEL=1
803             shift
804             ;;
805         --install-lustre)
806             INSTALL_LUSTRE=1
807             shift
808             ;;
809         --install-kernel)
810             INSTALL_KERNEL=1
811             shift
812             ;;
813         -j)
814             JOBS=$2
815             shift 2
816             ;;
817         --kerneldir)
818             KERNELDIR=$2
819             shift 2
820             ;;
821         --save-headers)
822             SAVE_HEADERS=1
823             shift
824             ;;
825         --target)
826             TARGET=$2
827             shift 2
828             ;;
829         --target-arch)
830             TARGET_ARCH=$2
831             shift 2
832             ;;
833         --target-config)
834             TARGET_CONFIG=$2
835             shift 2
836             ;;
837         --unpack-kernel)
838             UNPACK_KERNEL=1
839             shift
840             ;;
841         --)
842             shift
843             CONFIGURE_FLAGS=$@
844             break
845             ;; 
846         *)
847             usage 1 "Unrecognized option: $1"
848             ;;
849     esac
850 done
851
852 check_options
853 load_target
854 EXTRA_VERSION_DELIMITER=${EXTRA_VERSION_DELIMITER:-"-"}
855 FULL_VERSION="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
856 if [ -n "$TARGET_CONFIG" ]; then
857     FULL_VERSION="${FULL_VERSION}${TARGET_DELIMITER}${TARGET_CONFIG}"
858 fi
859 setup_ccache_distcc
860
861 extract_kernel
862 patch_kernel
863
864 depend_kernel
865 build_kernel
866
867 if [ -n "$OFED_VERSION" ]; then
868     build_kernel_ib
869 fi
870
871 configure_lustre
872 build_lustre
873
874 build_kms
875
876 install_kernel
877 install_lustre
878
879 install_kms
880
881 cleanup_libmodules
882
883 save_headers
884
885 exit 0