Whamcloud - gitweb
b=19975
[fs/lustre-release.git] / build / lbuild-rhel5
1 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
2
3 # increment this if you have made a change that should force a new kernel
4 # to build built
5 #BUILD_GEN=1
6 #BUILD_GEN=2    # bz19952: remove -lustre tag from kernel RPM names
7 BUILD_GEN=3     # bz19975 enable the building of src.rpms by default
8
9 DEVEL_KERNEL_TYPE="devel"
10
11 prepare_and_build_srpm() {
12
13     pushd $TOPDIR >/dev/null
14     local GCC_VER=""
15     read GCC_VER < <($CC --version)
16     GCC_VER=${GCC_VER##* }
17     if [[ $GCC_VER = 4.3* ]]; then
18         # add the gcc 4.3 kernel build fix patch to it
19         cat <<"EOF" >> $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch
20 diff -urp linux-2.6.18.rawops/Makefile linux-2.6.18.races/Makefile
21 --- linux-2.6.18.rawops/Makefile        2007-02-08 19:00:31.000000000 +0200
22 +++ linux-2.6.18.rawops/Makefile        2007-02-14 19:23:49.000000000 +0200
23 @@ -506,6 +506,9 @@ KBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
24  # disable pointer signed / unsigned warnings in gcc 4.0
25  CFLAGS += $(call cc-option,-Wno-pointer-sign,)
26
27 +# workaround to avoid gcc 4.3 emitting libgcc calls (see gcc bug #32044)
28 +CFLAGS += $(call cc-option,-fno-tree-scev-cprop,)
29 +
30  # Default kernel image to build when no specific target is given.
31  # KBUILD_IMAGE may be overruled on the command line or
32  # set in the environment
33 EOF
34     fi
35
36     # create the buildid
37     local buildid="_lustre${EXTRA_VERSION##*_lustre}"
38
39     # edit the SPEC with our changes
40     sed -i -e 's/^\(%define signmodules \).*/\10/' \
41            -e "s/^#% \(define buildid\).*/%\1 ${buildid}/" \
42            -e '/-e $RPM_SOURCE_DIR\/kabi_whitelist_/i\
43     rm -f $RPM_SOURCE_DIR/kabi_whitelist_%{_target_cpu}$Flavour' \
44            -e '/_sourcedir\/kabitool -b \./a\
45     cp $RPM_BUILD_ROOT/kabi_whitelist $RPM_SOURCE_DIR/kabi_whitelist_%{_target_cpu}$Flavour' \
46            -e '/^# empty final patch file to facilitate testing of kernel patches/i\
47 # adds Lustre patches\
48 Patch99995: linux-%{kversion}-lustre.patch' \
49            -e '/^# conditionally applied test patch for debugging convenience/i\
50 # lustre patch\
51 %patch99995 -p1\
52 ' \
53            -e '/^%prep$/,/^# END OF PATCH APPLICATIONS$/s/kernel-%{kversion}/%{name}-%{kversion}/g' \
54            -e '/find $RPM_BUILD_ROOT\/lib\/modules\/$KernelVer/a\
55     cp -a fs/ext3/* $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/fs/ext3' \
56           SPECS/kernel-2.6.spec
57
58     if $KERNEL_LUSTRE_NAMING; then
59         # these are all of the changes needed because we change the package names
60         # to kernel-lustre-*.  these should all go away when we stop this insanity
61         sed -i -e 's/^\(Name:.*kernel\)/\1-lustre/' \
62                -e '/^Provides: glibc-kernheaders = /a\
63 Provides: kernel-headers = %{rpmversion}-%{release}
64 Obsoletes: kernel-headers
65 ' \
66                -e '/^Provides: kernel-%{_target_cpu} = %{rpmversion}-%{release}$/a\
67 Provides: kernel = %{rpmversion}-%{release}
68 ' \
69                -e '/^Provides: kernel-devel-%{_target_cpu} = %{rpmversion}-%{release}$/a\
70 Provides: kernel-devel = %{rpmversion}-%{release}
71 Obsoletes: kernel-devel
72 ' \
73                -e '/^Provides: %{name}-debuginfo-common-%{_target_cpu} = %{KVERREL}$/a\
74 Provides: kernel-debuginfo-common = %{KVERREL}
75 Obsoletes: kernel-debuginfo-common
76 ' \
77                -e '/^Provides: %{name}-debuginfo-%{_target_cpu} = %{KVERREL}$/a\
78 Provides: kernel-debuginfo = %{KVERREL}
79 Obsoletes: kernel-debuginfo
80 ' \
81               SPECS/kernel-2.6.spec
82     fi
83
84     # XXX - a building-on-Ubuntu hack
85     if grep -q "Ubuntu" /etc/issue; then
86         sed  -i -e 's/^\(BuildPreReq: .*\)$/#NOU \1/g' \
87                -e 's/^\(BuildRequires: .*\)$/#NOU \1/g' \
88           SPECS/kernel-2.6.spec
89     fi
90
91     # finally, work around RH bug 491775
92     # XXX - i wonder if we will need to do this enough to formalize a
93     #       patching system.  let's assume not for the time being.
94     patch -s -p0 <<"EOF"
95 --- SPECS/kernel-2.6.spec.dist  2009-03-23 20:30:55.000000000 -0400
96 +++ SPECS/kernel-2.6.spec       2009-03-23 20:37:03.000000000 -0400
97 @@ -6961,6 +6961,10 @@
98      cd include
99      cp -a acpi config keys linux math-emu media mtd net pcmcia rdma rxrpc scsi sound video asm asm-generic $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
100      cp -a `readlink asm` $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
101 +    if [ "$Arch" = "i386" ]; then
102 +      mkdir -p $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/asm-x86_64
103 +      cp -a asm-x86_64/{stacktrace,k8,pci-direct}.h $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include/asm-x86_64
104 +    fi
105      if [ "$Arch" = "x86_64" ]; then
106        cp -a asm-i386 $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/include
107      fi
108 EOF
109
110     popd >/dev/null
111
112     # this concept of being able to build a list of targets with a single
113     # lbuild is a fine idea, but in reality I think it's (very) broken.  I
114     # don't even think the lustre.spec can handle being called with "--target
115     # <multiple arches>".  It certainly can't handle the issue where each
116     # arch has it's own kernel location.
117     # but we will do the best we can and put the plumbing in place so that
118     # this could work when the other broken bits are fixed.
119     # in reality, our current use of lbuild only ever has a single arch in
120     # $BUILD_ARCHS
121     local arch
122     local targets=""
123     for arch in $BUILD_ARCHS; do
124         # XXX - ok.  so here's a hack that needs to be fixed properly
125         #       ppc64 was merged to ppc some time ago pre 2.6.18
126         if [ $arch = ppc64 ]; then
127             arch=ppc
128         fi
129         targets="--target $arch $targets"
130         # copy our .config into the RPM build tree
131         (echo "# $(basearch $arch)"; cat $CONFIG_FILE) > \
132             SOURCES/kernel-2.6.18-$arch.config
133
134         # XXX - hackity hack -- until we get (or generate from the base
135         #                       config) configs for xen and debug
136         local f=""
137         for f in SOURCES/kernel-${lnxmaj}-*.config; do
138             grep -q "^CONFIG_SD_IOSTATS=y" $f || \
139                 echo "CONFIG_SD_IOSTATS=y" >> $f
140         done
141     done
142
143     # do we need any special rpm build options
144     local rpmbuildopt="-bb"
145     if $DO_SRC; then
146         rpmbuildopt="-ba"
147     fi
148     # stupid Ubuntu's rpm doesn't do debuginfo properly
149     if [ ! -f /usr/lib/rpm/debugedit ]; then
150         rpmbuildopt="$rpmbuildopt --without debuginfo"
151     fi
152
153     # XXX - need to figure this kabichk crap out -- it fails the build
154     rpmbuildopt="$rpmbuildopt --without kabichk"
155
156     # now build it
157     if ! $RPMBUILD $rpmbuildopt $targets --with baseonly \
158                    --define "_topdir $TOPDIR" \
159                    $TOPDIR/SPECS/kernel-2.6.spec >&2; then
160         fatal 1 "Failed to build kernel RPM"
161     fi
162
163 }
164
165 devel_kernel_name() {
166     local lustre=${1:-false}
167
168     if $lustre; then
169         echo "kernel-lustre-$DEVEL_KERNEL_TYPE"
170     else
171         echo "kernel-$DEVEL_KERNEL_TYPE"
172     fi
173
174 }
175
176 rpm_BUILD_kernel_dirname() {
177     local rpmsmptype="$1"
178     local lnxmaj="$2"
179     local lnxmin="$3"
180     local arch="$4"
181
182     local lustre=""
183     if $KERNEL_LUSTRE_NAMING; then
184         $lustre="-lustre"
185     fi
186     echo kernel${lustre}${lnxmaj}${lnxmin}/linux-${lnxmaj}.$arch
187 }