Whamcloud - gitweb
77b4fa4c6f9dffdfa6c9a026b13e036799b1ba51
[fs/lustre-release.git] / contrib / lbuild / lbuild-rhel8
1 # vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
2
3 source ${LBUILD_DIR}/lbuild-rhel
4
5 # increment this if you have made a change that should force a new kernel
6 # to build built
7 BUILD_GEN+=".0"
8
9 SPEC_NAME="kernel.spec"
10 DEVEL_PATH_ARCH_DELIMETER="."
11 USE_KABI=false
12
13 # force local definition of %dist into ~/.rpmmacros
14 # to avoid verbose extended strings like ".el8.centos"
15 # in kernel version and rpm names
16 #
17 RMAC=$HOME/.rpmmacros
18 grep '^%dist' $RMAC &> /dev/null || echo '%dist .el8' >> $RMAC
19
20 # We modify the RHEL8 kmodtool script, because it expects
21 # the kernel source to be in the correct packaged RHEL location.
22 # lbuild does not put the source in correct packaged RHEL location.
23 RHEL_KMODTOOL=/usr/lib/rpm/redhat/kmodtool
24 LBUILD_KMODTOOL="${LBUILD_DIR}/rhel8/kmodtool"
25 cp  $RHEL_KMODTOOL $LBUILD_KMODTOOL
26 pushd ${LBUILD_DIR}/rhel8
27 patch -p1 < kmodtool.patch
28 # Replace the hardcoded /usr/src/kernels with our build path
29 tmp="${TOPDIR}/reused/usr/src/kernels"
30 tmp="${tmp//\//\\/}"
31 sed -i "s/\/usr\/src\/kernels/${tmp}/g" ${LBUILD_DIR}/rhel8/kmodtool
32 chmod 755 kmodtool
33 popd
34 # Next we replace %kernel_module_package with one that is nearly
35 # identical, but calls lbuild's modified kmodtool script.
36 # We need to cleanout the previous entry
37 sed -i "/^%kernel_module_package/,/^)}$/d" $RMAC
38 sed -e "s|REPLACE_ME|$LBUILD_KMODTOOL|" -e "s/\/usr\/src\/kernels/${tmp}/g" \
39     ${LBUILD_DIR}/rhel8/rpmmacros.template > ${LBUILD_DIR}/rhel8/rpmmacros
40 cat ${LBUILD_DIR}/rhel8/rpmmacros >> $RMAC
41
42 patch_spec_rhel8() {
43     sed -i -e '/Provides: kernel-uname-r =/a\
44 Provides: kernel-lustre = %{KVRA}%{?1:.%{1}}\\' \
45            -e '/Provides: kernel-devel-uname-r =/a\
46 Provides: kernel-devel-lustre = %{KVRA}%{?1:.%{1}}\\' \
47            -e '/find $RPM_BUILD_ROOT\/lib\/modules\/$KernelVer/a\
48     cp -a fs/ext4/* $RPM_BUILD_ROOT/lib/modules/$KernelVer/build/fs/ext4' \
49           SPECS/$SPEC_NAME 2>&1 ||
50         fatal 1 "Error while editing SPECS/$SPEC_NAME"
51 }
52
53 patch_spec() {
54     local buildid="$1"
55
56     # the el8 .spec file requires patch names to begin with "patch-3."
57     # so rename the lustre patch from lbuild to one the .spec will like
58     mv $TOPDIR/SOURCES/linux-${lnxmaj}-lustre.patch \
59         $TOPDIR/SOURCES/patch-${lnxmaj}-lustre.patch
60
61     # edit the SPEC with our changes
62     patch_spec_rhel8 "$buildid"
63     sed -i -e '/^# empty final patch to facilitate testing of kernel patches/i\
64 # adds Lustre patches\
65 Patch99995: patch-%{version}-lustre.patch' \
66            -e '/^ApplyOptionalPatch linux-kernel-test.patch/i\
67 \
68 # lustre patch\
69 ApplyOptionalPatch patch-%{version}-lustre.patch\
70 ' \
71            -e '/rm -f include\/generated\/kernel.cross/i\
72   # lustre kernel config.\
73   if [ -f %{_topdir}/lustre/lustre/kernel_patches/kernel_configs/kernel-%{version}-4.18-rhel8-%{_target_cpu}.config ]; then\
74     echo "# $Arch" > configs/kernel-%{version}-%{_target_cpu}.config\
75     cat %{_topdir}/lustre/lustre/kernel_patches/kernel_configs/kernel-%{version}-4.18-rhel8-%{_target_cpu}.config >> configs/kernel-%{version}-%{_target_cpu}.config\
76   fi'\
77            -e '/^# Dynamically generate kernel/a echo "CONFIG_BH_LRU_SIZE=16" >> config-generic'\
78           SPECS/$SPEC_NAME 2>&1 || \
79         fatal 1 "Error while editing SPECS/$SPEC_NAME"
80
81
82     return 0
83
84 }
85
86 unpack_linux_devel_rpm-rhel8() {
87     local callers_rpm="$1"
88
89     unpack_linux_devel_rpm-rhel "$callers_rpm"
90
91
92     return 0
93
94 }
95
96 get_rpmbuildopts() {
97
98     if $KERNEL_LUSTRE_NAMING; then
99         echo -e "--define \"variant -lustre\" \c"
100     fi
101     echo "--with firmware"
102
103     return 0
104
105 }
106
107 find_linux_rpm-rhel8() {
108     local prefix="$1"
109     local wanted_kernel="$2"
110     local pathtorpms=${3:-"$KERNELRPMSBASE/$lnxmaj/$DISTROMAJ/$TARGET_ARCH"}
111
112     find_linux_rpm-rhel "$prefix" "$wanted_kernel" "$pathtorpms"
113
114 }
115
116 kernel_srpm_location() {
117
118     echo "http://vault.centos.org/centos/8/updates/Source/SPackages/"
119
120 }
121
122 kernel_debuginfo_location() {
123
124         echo "http://debuginfo.centos.org/8/x86_64/"
125
126 }
127
128 cleanup_rpmmacros() {
129         sed -i "/^%kernel_module_package/,/^)}$/d" $RMAC
130 }
131
132 apply_kmod_requires_conflicts() {
133     if $PATCHLESS; then
134         # don't allow the patched kernel to be considered as a valid kernel
135         # for the patchless client
136         echo "Conflicts:      kernel-lustre" >> rpm/kmp-lustre.preamble
137     fi
138 }