Whamcloud - gitweb
b=15482
[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         rm -f $logfile
441         # now notify if resulting .config is different than $CONFIG_FILE
442         local tmpfile=$(mktemp /tmp/XXXXXX)
443         diff -I '^#.*' -u "$CONFIG_FILE" .config >$tmpfile
444         if [ -s $tmpfile ]; then
445             { cat <<EOF
446 To: qa@lists.clusterfs.com
447 Subject: kernel_config change 
448
449 The result of a make oldconfig on file $CONFIG_FILE resulted in a
450 difference when compared to .config in the following way:
451
452 EOF
453             cat $tmpfile
454             echo -e "\n\nPlease consider updating $CONFIG_FILE."
455             # not sure these are entirely useful.  the above and "patch" are good
456             #echo -e "\nThe entire new .config file:\n"
457             #cat .config
458             } | sendmail -fqa@clusterfs.com -t
459         fi
460         rm -f $tmpfile
461     fi
462
463     case "$VERSION" in
464         2.6*)
465             $MAKE "$MAKE_CC" include/asm
466             ;;
467         2.4*)
468             $MAKE "$MAKE_CC" symlinks
469             $MAKE "$MAKE_CC" dep || fatal 1 "Error running make dep"
470             ;;
471     esac
472     $MAKE "$MAKE_CC" include/linux/version.h || fatal 1 "Error making include/linux/version.h"
473 }
474
475 build_kernel()
476 {
477     (( $BUILD_KERNEL )) || return 0
478     set_make
479     echo "Building kernel in $PWD..."
480     case "$TARGET_ARCH" in
481         i386 | i586 | i686 | athlon | x86_64)
482             $MAKE_J "$MAKE_CC" bzImage || fatal 1 "Error making bzImage."
483             ;;
484     ia64 | ppc | ppc64)
485             $MAKE_J "$MAKE_CC" vmlinux || fatal 1 "Error making vmlinux."
486             ;;
487         *)
488             $MAKE_J "$MAKE_CC" boot || fatal 1 "Error making boot."
489             ;;
490     esac
491     $MAKE_J "$MAKE_CC" modules || fatal 1 "Error building modules."
492
493     popd >/dev/null
494 }
495
496 configure_lustre()
497 {
498     return 0
499     (( $BUILD_LUSTRE )) || return 0
500     pushd "$TOPDIR" >/dev/null
501     [ -f Makefile ] && make -s clean
502     [ -f configure ] || sh ./autogen.sh
503     ./configure --with-linux=$PWD/linux $CONFIGURE_FLAGS || \
504         fatal 1 "Error configuring Lustre."
505     popd >/dev/null
506 }
507
508 build_lustre()
509 {
510     (( $BUILD_LUSTRE )) || return 0
511     set_make
512     pushd "$TOPDIR" >/dev/null
513     sed \
514         -e s^@VERSION@^${LUSTRE_VERSION}^g \
515         -e s^@LINUXRELEASE@^${FULL_VERSION}^g \
516         -e s^@RELEASE@^${FULL_VERSION//-/_}^g \
517         -e s^@ac_configure_args@^"--with-linux=${PWD}/linux ${CONFIGURE_FLAGS}"^g \
518         < lustre.spec.in \
519         > lustre.spec
520     $RPMBUILD --target ${TARGET_ARCH} -bb lustre.spec \
521         --define "_tmppath $TMPDIR" \
522         --define "_topdir $(lbuild_topdir)" || \
523         fatal 1 "Error building Lustre rpms."
524     # $MAKE_J "$MAKE_CC" || fatal 1 "Error building Lustre."
525     popd >/dev/null
526 }
527
528 install_kernel()
529 {
530     (( $INSTALL_KERNEL )) || return 0
531     set_make
532     pushd "$TOPDIR/linux" >/dev/null
533     mkdir -p "$DESTDIR/boot"
534
535     install -m 644 System.map "$DESTDIR/boot/System.map-${FULL_VERSION}"
536     # install -m 644 module-info ...
537     install -m 644 "$CONFIG_FILE" "$DESTDIR/boot/config-${FULL_VERSION}"
538
539     mkdir -p "$DESTDIR/dev/shm"
540     mkdir -p "$DESTDIR/lib/modules/${FULL_VERSION}"
541
542     $MAKE "$MAKE_CC" INSTALL_MOD_PATH="$DESTDIR" KERNELRELEASE="$FULL_VERSION" \
543         -s modules_install || \
544         fatal 1 "Error installing modules."
545
546     case "$TARGET_ARCH" in
547         i386 | i586 | i686 | athlon)
548             cp arch/i386/boot/bzImage "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
549             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
550             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
551             ;;
552         x86_64)
553             cp arch/x86_64/boot/bzImage "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
554             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
555             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
556             ;;
557         ppc | ppc64)
558             cp vmlinux "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
559             ln -sf "$DESTDIR/boot/vmlinux-${FULL_VERSION}" "../lib/modules/${FULL_VERSION}/vmlinux" 
560             ;;
561         ia64)
562             gzip -cfv vmlinux > vmlinuz
563             mkdir -p "$DESTDIR/boot/efi/redhat"
564             install -m 755 vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/"
565             install -m 755 vmlinuz "$DESTDIR/boot/efi/redhat/vmlinuz-${FULL_VERSION}"
566             ln -sf "../../../lib/modules/${FULL_VERSION}/vmlinux" "$DESTDIR/boot/efi/redhat/vmlinux-${FULL_VERSION}"
567             ln -sf "efi/redhat/vmlinux-${FULL_VERSION}" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
568             ln -sf "efi/redhat/vmlinuz-${FULL_VERSION}" "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
569             ;;
570         *)
571             cp vmlinuz "$DESTDIR/boot/vmlinuz-${FULL_VERSION}"
572             cp vmlinux "$DESTDIR/lib/modules/${FULL_VERSION}/vmlinux-${FULL_VERSION}"
573             ln -sf "../lib/modules/${FULL_VERSION}/vmlinux-${FULL_VERSION}" "$DESTDIR/boot/vmlinux-${FULL_VERSION}"
574
575             ;;
576     esac
577     if [ -e init/kerntypes.o ] ; then
578         cp init/kerntypes.o "$DESTDIR/boot/Kerntypes-${FULL_VERSION}"
579     fi
580
581     popd >/dev/null
582 }
583
584 cleanup_libmodules()
585 {
586     (( $INSTALL_LUSTRE )) || return 0
587
588     KVERREL="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
589     i="$DESTDIR/lib/modules/${FULL_VERSION}"
590
591     rm -f $i/build
592     rm -f $i/source
593
594     if (( $LINUX26 )) ; then
595         ln -sf ../../../usr/src/linux-${KVERREL}-obj/${TARGET_ARCH}/${TARGET_CONFIG} $i/build
596         ln -sf ../../../usr/src/linux-${KVERREL} $i/source
597     else
598         ln -sf ../../../usr/src/linux-${KVERREL} $i/build
599     fi
600 }
601
602 install_lustre()
603 {
604     (( $INSTALL_LUSTRE )) || return 0
605     return 0
606     set_make
607     pushd "$TOPDIR" >/dev/null
608     $MAKE "$MAKE_CC" -s install "DESTDIR=$DESTDIR" KERNELRELEASE="$FULL_VERSION" || fatal 1 "Error installing Lustre."
609     popd >/dev/null
610 }
611
612 build_kms()
613 {
614     (( $BUILD_KERNEL )) || return 0
615     (( $SUSEBUILD )) || return 0
616     set_make
617     mkdir -p "${TOPDIR}/modules-${FULL_VERSION}"
618     for dir in /usr/src/kernel-modules/* ; do
619         # we are replacing lustre-lite, so don't include it
620         if [ "${dir##*/}" != "lustre-lite" -a -e $dir/Makefile ]; then
621             build_dir="${TOPDIR}/modules-${FULL_VERSION}/${dir##*/}"
622             cp -a $dir $build_dir
623             # these modules are terrible, and don't all build
624             $MAKE_J "$MAKE_CC" -C $build_dir modules KERNEL_SOURCE="${TOPDIR}/linux"
625         fi
626     done
627 }
628
629 symver()
630 {
631     local file=$1 name=${1%.ko}
632     nm $file \
633     | sed -ne 's,^0*\([0-9a-f]\{8\}\) A __crc_\(.*\),0x\1\t\2\t'"$name"',p'
634 }
635
636 install_kms()
637 {
638     (( $INSTALL_KERNEL )) || return 0
639     (( $LINUX26 )) || return 0
640     set_make
641     for build_dir in "${TOPDIR}/modules-${FULL_VERSION}/*" ; do
642         [ -d $build_dir ] || continue
643         # these modules are terrible, and don't all build
644         $MAKE "$MAKE_CC" -C $build_dir KERNEL_SOURCE="${TOPDIR}/linux" INSTALL_MOD_PATH="$DESTDIR" 
645     done
646     local symvers_file="${DESTDIR}/boot/symvers-${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}-${TARGET_ARCH}"
647     if [ -n "$TARGET_CONFIG" ]; then
648         symvers_file="${symvers_file}${TARGET_DELIMITER}${TARGET_CONFIG}"
649     fi
650     symvers_file="$symvers_file.gz"
651     (   symver vmlinux
652         moddir="${DESTDIR}/lib/modules/${FULL_VERSION}"
653         cd $moddir/kernel
654         for module in $(find * -name '*.ko'); do
655             symver $module
656         done
657         cd $moddir
658         for module in $(find * -path 'kernel/*' -prune -o \
659                            -name '*.ko' -print); do
660             symver $module
661         done
662     ) | sort -u -k2 | gzip -c9 > $symvers_file
663 }
664
665 save_headers()
666 {
667     (( $SAVE_HEADERS )) || return 0
668
669     echo "Saving headers for ${TARGET_CONFIG:-up} ${TARGET_ARCH}..."
670     pushd linux >/dev/null
671
672     KVERREL="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
673     # deal with the kernel headers that are version specific
674     
675     saveddir="$RPM_BUILD_ROOT/usr/src/linux-${KVERREL}/savedheaders/${TARGET_ARCH}/${TARGET_CONFIG:-up}"
676     mkdir -p "$saveddir"
677     install -m 644 include/linux/autoconf.h "$saveddir/autoconf.h"
678     install -m 644 include/linux/version.h  "$saveddir/version.h"
679     mv include/linux/modules "$saveddir/"
680     echo ${TARGET_ARCH} ${TARGET_CONFIG} ../../savedheaders/${TARGET_ARCH}/${TARGET_CONFIG:-up}/ \
681         >>  "$RPM_BUILD_ROOT/usr/src/linux-${KVERREL}/savedheaders/list"
682     popd >/dev/null
683 }
684
685 save_all_headers()
686 {
687     (( $SAVE_HEADERS )) || return 0
688
689     for arch in $BIGMEM_ARCHS ; do
690         save_headers bigmem $arch
691     done
692
693     for arch in $BOOT_ARCHS ; do
694         save_headers BOOT $arch
695     done
696
697     for arch in $JENSEN_ARCHS ; do
698         save_headers jensen $arch
699     done
700
701     for arch in $SMP_ARCHS ; do
702         save_headers smp $arch
703     done
704
705     for arch in $BIGSMP_ARCHS ; do
706         save_headers bigsmp $arch
707     done
708     for arch in $PSERIES64_ARCHS ; do
709         save_headers pseries64 $arch
710     done
711     for arch in $UP_ARCHS ; do
712         save_headers up $arch
713     done
714 }
715
716 longopts="build,build-lustre,build-kernel,depend-kernel,destdir:,extraversion:"
717 longopts="$longopts,help,install,install-lustre,install-kernel,kerneldir:"
718 longopts="$longopts,save-headers,target:,target-arch:,target-config:,unpack-kernel"
719
720 options=$(getopt -o hj: -l "$longopts" -- "$@")
721
722 eval set -- "$options"
723     
724 while [ "$1" ] ; do
725     case "$1" in
726         '')
727             usage 1
728             ;;
729         --build)
730             BUILD_LUSTRE=1
731             BUILD_KERNEL=1
732             DEPEND_KERNEL=1
733             UNPACK_KERNEL=1
734             shift
735             ;;
736         --build-lustre)
737             BUILD_LUSTRE=1
738             shift
739             ;;
740         --build-kernel)
741             BUILD_KERNEL=1
742             DEPEND_KERNEL=1
743             shift
744             ;;
745         --depend-kernel)
746             DEPEND_KERNEL=1
747             shift
748             ;;
749         --destdir)
750             DESTDIR=$2
751             shift 2
752             ;;
753         --extraversion)
754             EXTRA_VERSION=$2
755             shift 2
756             ;;
757         --help | -h)
758             usage 0
759             ;;
760         --install)
761             INSTALL_LUSTRE=1
762             INSTALL_KERNEL=1
763             shift
764             ;;
765         --install-lustre)
766             INSTALL_LUSTRE=1
767             shift
768             ;;
769         --install-kernel)
770             INSTALL_KERNEL=1
771             shift
772             ;;
773         -j)
774             JOBS=$2
775             shift 2
776             ;;
777         --kerneldir)
778             KERNELDIR=$2
779             shift 2
780             ;;
781         --save-headers)
782             SAVE_HEADERS=1
783             shift
784             ;;
785         --target)
786             TARGET=$2
787             shift 2
788             ;;
789         --target-arch)
790             TARGET_ARCH=$2
791             shift 2
792             ;;
793         --target-config)
794             TARGET_CONFIG=$2
795             shift 2
796             ;;
797         --unpack-kernel)
798             UNPACK_KERNEL=1
799             shift
800             ;;
801         --)
802             shift
803             CONFIGURE_FLAGS=$@
804             break
805             ;; 
806         *)
807             usage 1 "Unrecognized option: $1"
808             ;;
809     esac
810 done
811
812 check_options
813 load_target
814 EXTRA_VERSION_DELIMITER=${EXTRA_VERSION_DELIMITER:-"-"}
815 FULL_VERSION="${VERSION}${EXTRA_VERSION_DELIMITER}${EXTRA_VERSION}"
816 if [ -n "$TARGET_CONFIG" ]; then
817     FULL_VERSION="${FULL_VERSION}${TARGET_DELIMITER}${TARGET_CONFIG}"
818 fi
819 setup_ccache_distcc
820
821 extract_kernel
822 patch_kernel
823
824 depend_kernel
825 build_kernel
826
827 configure_lustre
828 build_lustre
829
830 build_kms
831
832 install_kernel
833 install_lustre
834
835 install_kms
836
837 cleanup_libmodules
838
839 save_headers
840
841 exit 0