Whamcloud - gitweb
LU-184 Keep orphan on failover umount
[fs/lustre-release.git] / build / lbuild-rhel
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 for all releases of this distribution (only -- if you want
5 # to force a kernel build on all distributions, update the BUILD_GEN variable
6 # in build/lbuild)
7 #BUILD_GEN+=".0"
8 BUILD_GEN+=".1" # refactor both rhel5 and rhel6
9
10 DEVEL_KERNEL_TYPE="devel"
11 RPM_HELPERS_DIR="/usr/lib/rpm/redhat"
12
13 # a method which can be overriden by the release specific code
14 get_rpmbuildopts() {
15
16     return 0
17
18 }
19
20 # patching common to all releases
21 patch_spec_common() {
22
23     sed -i -e 's/^\(%define signmodules \).*/\10/' \
24            -e '/find $RPM_BUILD_ROOT\/lib\/modules\/$KernelVer/a\
25     cp -a fs/ext3/* $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/fs/ext3 \
26     cp -a fs/ext4/* $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/fs/ext4' \
27           SPECS/$SPEC_NAME 2>&1 || \
28         fatal 1 "Error while editing SPECS/$SPEC_NAME"
29
30     # XXX - a building-on-Ubuntu hack
31     if grep -q "Ubuntu" /etc/issue; then
32         sed  -i -e 's/^\(BuildPreReq: .*\)$/#NOU \1/g' \
33                -e 's/^\(BuildRequires: .*\)$/#NOU \1/g' \
34                -e 's/sha512hmac/md5sum/g' \
35             SPECS/$SPEC_NAME 2>&1 || \
36                 fatal 1 "Error while editing SPECS/$SPEC_NAME"
37     fi
38
39
40 }
41
42 prepare_and_build_srpm() {
43
44     pushd $TOPDIR >/dev/null
45
46     # create the buildid
47     local buildid="_lustre${EXTRA_VERSION##*_lustre}"
48
49     # edit the SPEC with our changes
50     patch_spec
51
52     popd >/dev/null
53
54     # this concept of being able to build a list of targets with a single
55     # lbuild is a fine idea, but in reality I think it's (very) broken.  I
56     # don't even think the lustre.spec can handle being called with "--target
57     # <multiple arches>".  It certainly can't handle the issue where each
58     # arch has it's own kernel location.
59     # but we will do the best we can and put the plumbing in place so that
60     # this could work when the other broken bits are fixed.
61     # in reality, our current use of lbuild only ever has a single arch in
62     # $BUILD_ARCHS
63     local arch
64     local targets=""
65     for arch in $BUILD_ARCHS; do
66         # XXX - ok.  so here's a hack that needs to be fixed properly
67         #       ppc64 was merged to ppc some time ago pre 2.6.18
68         if [ $arch = ppc64 ]; then
69             arch=ppc
70         fi
71         targets="--target $arch $targets"
72         # copy our .config into the RPM build tree
73         (echo "# $(basearch $arch)"; cat $CONFIG_FILE) > \
74             SOURCES/kernel-$lnxmaj-$arch.config
75
76         # XXX - hackity hack -- until we get (or generate from the base
77         #                       config) configs for xen and debug
78         local f=""
79         for f in SOURCES/kernel-${lnxmaj}-*.config; do
80             grep -q "^CONFIG_SD_IOSTATS=y" $f || \
81                 echo "CONFIG_SD_IOSTATS=y" >> $f
82         done
83     done
84
85     # do we need any special rpm build options
86     local rpmbuildopt="-bb"
87     if $DO_SRC; then
88         rpmbuildopt="-ba"
89     fi
90
91     # stupid Ubuntu's rpm doesn't do debuginfo properly
92     if [ ! -f /usr/lib/rpm/debugedit ]; then
93         rpmbuildopt="$rpmbuildopt --without debuginfo"
94     fi
95
96     # XXX - need to figure this kabichk crap out -- it fails the build
97     rpmbuildopt="$rpmbuildopt --without kabichk"
98
99     # get any release specific build options
100     rpmbuildopt="$rpmbuildopt $(get_rpmbuildopts)"
101
102     # now build it
103     if ! eval $RPMBUILD $rpmbuildopt $targets --with baseonly \
104                    --define \"_topdir $TOPDIR\" \
105                    --define \"buildid $buildid\" \
106                    --define \"_tmppath $TMPDIR\" \
107                    $TOPDIR/SPECS/$SPEC_NAME 2>&1; then
108         return 1
109     fi
110
111     # for informative purposes, display a diff between the .config that
112     # was actually built and what we proposed as a .config
113     echo "Diffs between $(basename $CONFIG_FILE) and the built kernel's .config:"
114     diff -u $CONFIG_FILE $TOPDIR/BUILD/kernel-${lnxmaj}-${lnxrel}/linux-${lnxmaj}-${lnxrel}.${BUILD_ARCHS# }/.config
115
116     return 0
117
118 }
119
120 devel_kernel_name() {
121     local lustre=${1:-false}
122
123     if $lustre; then
124         echo "kernel-lustre-$DEVEL_KERNEL_TYPE"
125     else
126         echo "kernel-$DEVEL_KERNEL_TYPE"
127     fi
128
129 }
130
131 rpm_BUILD_kernel_dirname() {
132     local rpmsmptype="$1"
133     local lnxmaj="$2"
134     local lnxmin="$3"
135     local arch="$4"
136
137     local lustre=""
138     if $KERNEL_LUSTRE_NAMING; then
139         $lustre="-lustre"
140     fi
141     echo kernel${lustre}${lnxmaj}${lnxmin}/linux-${lnxmaj}.$arch
142 }
143
144 find_linux_devel_paths() {
145     local path="$1"
146     local ARCH=$TARGET_ARCH
147
148     # If DEVEL_PATH_ARCH is set, use it. Added for fc11 as it needs i586 string for i686.
149     if [ $DEVEL_PATH_ARCH ];then
150         ARCH=$DEVEL_PATH_ARCH
151     fi
152
153     LINUX=$path/usr/src/kernels/${lnxmaj}${lnxmin}-${lnxrel}${DEVEL_PATH_ARCH_DELIMETER:-"-"}${ARCH}
154     # RHEL doesn't have the -obj tree
155     LINUXOBJ=""
156     # XXX - i don't think we need this any more
157     #LINUXRELEASE=$(find_linux_release "$LINUX")
158     #if [ -z "$LINUXRELEASE" ]; then
159     #    echo "Failed to find linux release in $LINUX"
160     #    return 255
161     #fi
162
163     return 0
164 }
165
166 unpack_linux_devel_rpm-rhel() {
167     local callers_rpm="$1"
168
169     # now just sanity check that everything needed to build properly versioned
170     # modules is in place
171     if [ ! -f usr/src/kernels/${lnxmaj}${lnxmin}-${lnxrel}${DEVEL_PATH_ARCH_DELIMETER:-"-"}$TARGET_ARCH/Module.symvers ]; then
172         fatal 1 "cannot build kernel modules: the Kernel's Module.symvers is missing."
173     fi
174
175     return 0
176
177 }
178
179 # this of course requires a sudo rule on the builder for real RHEL:
180 # hudson ALL= NOPASSWD: /usr/bin/yumdownloader
181 # also must disable the requiretty attribute in the sudoers file
182 find_linux_rpm-rhel() {
183     local prefix="$1"
184     local wanted_kernel="$2"
185     local pathtorpms=${3:-"${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}/${TARGET_ARCH}"}
186
187     local tmpdir=$(mktemp -d $pathtorpms/yumXXXXXX)
188     local sudo=""
189     if [ "$(lsb_release -s -i)" = "RedHatEnterpriseServer" ]; then
190         sudo="sudo"
191     fi
192     $sudo yumdownloader --destdir "$tmpdir" kernel-devel-"$wanted_kernel" > /dev/null
193     local rpm=$(cd $tmpdir; echo *)
194     mv "$tmpdir/$rpm" "$pathtorpms"
195     rmdir $tmpdir
196     echo "$rpm"
197
198     return 0
199
200 }