Whamcloud - gitweb
more useful cvsrc
[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     local K_SRC="K_SRC"
515     # ofed 1.3 had a bug in the rpm spec
516     if [ "$OFED_VERSION" = "1.3" ]; then
517         K_SRC="KSRC"
518     fi
519     $RPMBUILD --rebuild --define 'build_kernel_ib 1' --define 'build_kernel_ib_devel 1' \
520               --define "_topdir $(lbuild_topdir)" --target ${TARGET_ARCH} \
521               --define "KVERSION ${FULL_VERSION}" \
522               --define "$K_SRC ${PWD}/linux" \
523               --define "LIB_MOD_DIR /lib/modules/${FULL_VERSION}" \
524               --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
525
526     if [ ${PIPESTATUS[0]} != 0 ]; then
527         fatal 1 "Error building kernel-ib"
528     fi
529
530     pushd "$TOPDIR" >/dev/null
531     rm -rf kernel-ib-devel
532     mkdir kernel-ib-devel
533     cd kernel-ib-devel
534     local rpm=$(ls $(lbuild_topdir)/RPMS/*/kernel-ib-devel-${OFED_VERSION}-${FULL_VERSION//-/_}.*.rpm)
535     rpm2cpio -itv < $rpm | cpio -id
536     CONFIGURE_FLAGS="--with-o2ib=$(pwd)/usr/src/ofa_kernel ${CONFIGURE_FLAGS}"
537     popd >/dev/null
538 }
539
540
541 configure_lustre()
542 {
543     return 0
544     (( $BUILD_LUSTRE )) || return 0
545     pushd "$TOPDIR" >/dev/null
546     [ -f Makefile ] && make -s clean
547     [ -f configure ] || sh ./autogen.sh
548     ./configure --with-linux=$PWD/linux $CONFIGURE_FLAGS || \
549         fatal 1 "Error configuring Lustre."
550     popd >/dev/null
551 }
552
553 build_lustre()
554 {
555     (( $BUILD_LUSTRE )) || return 0
556     set_make
557     pushd "$TOPDIR" >/dev/null
558     sed \
559         -e s^@VERSION@^${LUSTRE_VERSION}^g \
560         -e s^@LINUXRELEASE@^${FULL_VERSION}^g \
561         -e s^@RELEASE@^${FULL_VERSION//-/_}^g \
562         -e s^@ac_configure_args@^"--with-linux=${PWD}/linux ${CONFIGURE_FLAGS}"^g \
563         < lustre.spec.in \
564         > lustre.spec
565     $RPMBUILD --target ${TARGET_ARCH} -bb lustre.spec \
566         --define "_tmppath $TMPDIR" \
567         --define "_topdir $(lbuild_topdir)" || \
568         fatal 1 "Error building Lustre rpms."
569     # $MAKE_J "$MAKE_CC" || fatal 1 "Error building Lustre."
570     popd >/dev/null
571 }
572
573 install_kernel()
574 {
575     (( $INSTALL_KERNEL )) || return 0
576     set_make
577     pushd "$TOPDIR/linux" >/dev/null
578     mkdir -p "$DESTDIR/boot"
579
580     install -m 644 System.map "$DESTDIR/boot/System.map-${FULL_VERSION}"
581     # install -m 644 module-info ...
582     install -m 644 "$CONFIG_FILE" "$DESTDIR/boot/config-${FULL_VERSION}"
583
584     mkdir -p "$DESTDIR/dev/shm"
585     mkdir -p "$DESTDIR/lib/modules/${FULL_VERSION}"
586
587     $MAKE "$MAKE_CC" INSTALL_MOD_PATH="$DESTDIR" KERNELRELEASE="$FULL_VERSION" \
588         -s modules_install || \
589         fatal 1 "Error installing modules."
590
591     case "$TARGET_ARCH" in
592         i386 | i586 | i686 | athlon)
593             cp arch/i386/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         x86_64)
598             cp arch/x86_64/boot/bzImage "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
599             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
600             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
601             ;;
602         ppc | ppc64)
603             cp vmlinux "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
604             ln -sf "$DESTDIR/boot/vmlinux-${FULL_VERSION}" "../lib/modules/${FULL_VERSION}/vmlinux" 
605             ;;
606         ia64)
607             gzip -cfv vmlinux > vmlinuz
608             mkdir -p "$DESTDIR/boot/efi/redhat"
609             install -m 755 vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
610             install -m 755 vmlinuz "$DESTDIR/boot/efi/redhat/vmlinuz-${FULL_VERSION}"
611             ln -sf "../../../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/efi/redhat/vmlinux-${FULL_VERSION}"
612             ln -sf "efi/redhat/vmlinux-${FULL_VERSION}" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
613             ln -sf "efi/redhat/vmlinuz-${FULL_VERSION}" "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
614             ;;
615         *)
616             cp vmlinuz "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
617             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/vmlinux-${FULL_VERSION}"
618             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux-${FULL_VERSION}" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
619
620             ;;
621     esac
622     if [ -e init/kerntypes.o ] ; then
623         cp init/kerntypes.o "$DESTDIR/boot/Kerntypes-${FULL_VERSION}"
624     fi
625
626     popd >/dev/null
627 }
628
629 cleanup_libmodules()
630 {
631     (( $INSTALL_LUSTRE )) || return 0
632
633     KVERREL="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
634     i="$DESTDIR/lib/modules/${FULL_VERSION}"
635
636     rm -f $i/build
637     rm -f $i/source
638
639     if (( $LINUX26 )) ; then
640         ln -sf ../../../usr/src/linux-${KVERREL}-obj/${TARGET_ARCH}/${TARGET_CONFIG} $i/build
641         ln -sf ../../../usr/src/linux-${KVERREL} $i/source
642     else
643         ln -sf ../../../usr/src/linux-${KVERREL} $i/build
644     fi
645 }
646
647 install_lustre()
648 {
649     (( $INSTALL_LUSTRE )) || return 0
650     return 0
651     set_make
652     pushd "$TOPDIR" >/dev/null
653     $MAKE "$MAKE_CC" -s install "DESTDIR=$DESTDIR" KERNELRELEASE="$FULL_VERSION" || fatal 1 "Error installing Lustre."
654     popd >/dev/null
655 }
656
657 build_kms()
658 {
659     (( $BUILD_KERNEL )) || return 0
660     (( $SUSEBUILD )) || return 0
661     set_make
662     mkdir -p "${TOPDIR}/modules-${FULL_VERSION}"
663     for dir in /usr/src/kernel-modules/* ; do
664         # we are replacing lustre-lite, so don't include it
665         if [ "${dir##*/}" != "lustre-lite" -a -e $dir/Makefile ]; then
666             build_dir="${TOPDIR}/modules-${FULL_VERSION}/${dir##*/}"
667             cp -a $dir $build_dir
668             # these modules are terrible, and don't all build
669             $MAKE_J "$MAKE_CC" -C $build_dir modules KERNEL_SOURCE="${TOPDIR}/linux"
670         fi
671     done
672 }
673
674 symver()
675 {
676     local file=$1 name=${1%.ko}
677     nm $file \
678     | sed -ne 's,^0*\([0-9a-f]\{8\}\) A __crc_\(.*\),0x\1\t\2\t'"$name"',p'
679 }
680
681 install_kms()
682 {
683     (( $INSTALL_KERNEL )) || return 0
684     (( $LINUX26 )) || return 0
685     set_make
686     for build_dir in "${TOPDIR}/modules-${FULL_VERSION}/*" ; do
687         [ -d $build_dir ] || continue
688         # these modules are terrible, and don't all build
689         $MAKE "$MAKE_CC" -C $build_dir KERNEL_SOURCE="${TOPDIR}/linux" INSTALL_MOD_PATH="$DESTDIR" 
690     done
691     local symvers_file="${DESTDIR}/boot/symvers-${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}-${TARGET_ARCH}"
692     if [ -n "$TARGET_CONFIG" ]; then
693         symvers_file="${symvers_file}${TARGET_DELIMITER}${TARGET_CONFIG}"
694     fi
695     symvers_file="$symvers_file.gz"
696     (   symver vmlinux
697         moddir="${DESTDIR}/lib/modules/${FULL_VERSION}"
698         cd $moddir/kernel
699         for module in $(find * -name '*.ko'); do
700             symver $module
701         done
702         cd $moddir
703         for module in $(find * -path 'kernel/*' -prune -o \
704                            -name '*.ko' -print); do
705             symver $module
706         done
707     ) | sort -u -k2 | gzip -c9 > $symvers_file
708 }
709
710 save_headers()
711 {
712     (( $SAVE_HEADERS )) || return 0
713
714     echo "Saving headers for ${TARGET_CONFIG:-up} ${TARGET_ARCH}..."
715     pushd linux >/dev/null
716
717     KVERREL="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
718     # deal with the kernel headers that are version specific
719     
720     saveddir="$RPM_BUILD_ROOT/usr/src/linux-${KVERREL}/savedheaders/${TARGET_ARCH}/${TARGET_CONFIG:-up}"
721     mkdir -p "$saveddir"
722     install -m 644 include/linux/autoconf.h "$saveddir/autoconf.h"
723     install -m 644 include/linux/version.h  "$saveddir/version.h"
724     mv include/linux/modules "$saveddir/"
725     echo ${TARGET_ARCH} ${TARGET_CONFIG} ../../savedheaders/${TARGET_ARCH}/${TARGET_CONFIG:-up}/ \
726         >>  "$RPM_BUILD_ROOT/usr/src/linux-${KVERREL}/savedheaders/list"
727     popd >/dev/null
728 }
729
730 save_all_headers()
731 {
732     (( $SAVE_HEADERS )) || return 0
733
734     for arch in $BIGMEM_ARCHS ; do
735         save_headers bigmem $arch
736     done
737
738     for arch in $BOOT_ARCHS ; do
739         save_headers BOOT $arch
740     done
741
742     for arch in $JENSEN_ARCHS ; do
743         save_headers jensen $arch
744     done
745
746     for arch in $SMP_ARCHS ; do
747         save_headers smp $arch
748     done
749
750     for arch in $BIGSMP_ARCHS ; do
751         save_headers bigsmp $arch
752     done
753     for arch in $PSERIES64_ARCHS ; do
754         save_headers pseries64 $arch
755     done
756     for arch in $UP_ARCHS ; do
757         save_headers up $arch
758     done
759 }
760
761 longopts="build,build-lustre,build-kernel,depend-kernel,destdir:,extraversion:"
762 longopts="$longopts,help,install,install-lustre,install-kernel,kerneldir:"
763 longopts="$longopts,save-headers,target:,target-arch:,target-config:,unpack-kernel"
764
765 options=$(getopt -o hj: -l "$longopts" -- "$@")
766
767 eval set -- "$options"
768     
769 while [ "$1" ] ; do
770     case "$1" in
771         '')
772             usage 1
773             ;;
774         --build)
775             BUILD_LUSTRE=1
776             BUILD_KERNEL=1
777             DEPEND_KERNEL=1
778             UNPACK_KERNEL=1
779             shift
780             ;;
781         --build-lustre)
782             BUILD_LUSTRE=1
783             shift
784             ;;
785         --build-kernel)
786             BUILD_KERNEL=1
787             DEPEND_KERNEL=1
788             shift
789             ;;
790         --depend-kernel)
791             DEPEND_KERNEL=1
792             shift
793             ;;
794         --destdir)
795             DESTDIR=$2
796             shift 2
797             ;;
798         --extraversion)
799             EXTRA_VERSION=$2
800             shift 2
801             ;;
802         --help | -h)
803             usage 0
804             ;;
805         --install)
806             INSTALL_LUSTRE=1
807             INSTALL_KERNEL=1
808             shift
809             ;;
810         --install-lustre)
811             INSTALL_LUSTRE=1
812             shift
813             ;;
814         --install-kernel)
815             INSTALL_KERNEL=1
816             shift
817             ;;
818         -j)
819             JOBS=$2
820             shift 2
821             ;;
822         --kerneldir)
823             KERNELDIR=$2
824             shift 2
825             ;;
826         --save-headers)
827             SAVE_HEADERS=1
828             shift
829             ;;
830         --target)
831             TARGET=$2
832             shift 2
833             ;;
834         --target-arch)
835             TARGET_ARCH=$2
836             shift 2
837             ;;
838         --target-config)
839             TARGET_CONFIG=$2
840             shift 2
841             ;;
842         --unpack-kernel)
843             UNPACK_KERNEL=1
844             shift
845             ;;
846         --)
847             shift
848             CONFIGURE_FLAGS=$@
849             break
850             ;; 
851         *)
852             usage 1 "Unrecognized option: $1"
853             ;;
854     esac
855 done
856
857 check_options
858 load_target
859 EXTRA_VERSION_DELIMITER=${EXTRA_VERSION_DELIMITER:-"-"}
860 FULL_VERSION="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
861 if [ -n "$TARGET_CONFIG" ]; then
862     FULL_VERSION="${FULL_VERSION}${TARGET_DELIMITER}${TARGET_CONFIG}"
863 fi
864 setup_ccache_distcc
865
866 extract_kernel
867 patch_kernel
868
869 depend_kernel
870 build_kernel
871
872 if [ -n "$OFED_VERSION" ]; then
873     build_kernel_ib
874 fi
875
876 configure_lustre
877 build_lustre
878
879 build_kms
880
881 install_kernel
882 install_lustre
883
884 install_kms
885
886 cleanup_libmodules
887
888 save_headers
889
890 exit 0