blob: 824960e7f2000491d01a8c73e565dbd345f876c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/bin/bash
SRC=/root
kernel_src_dir=kernel
config_file="arch/x86/configs/opnfv.config"
VERSION="1.0.OPNFV"
output_dir="$1"
usage () {
echo "usage: ${0} output_dir"
exit 1
}
if [[ -z "$@" ]]; then
usage
fi
if [ ! -d ${output_dir} -o ! -w ${output_dir} ] ; then
echo "${0}: Output directory '${output_dir}' does not exist or cannot be written"
exit 1
fi
if [ ! -d ${kernel_src_dir} ] ; then
echo "${0}: Directory '${kernel_src_dir}' does not exist, run this script from the root of kvmfornfv source tree"
exit 1
fi
quirks() {
#
# Apply out of tree patches
#
for i in $SRC/kvmfornfv/patches/$1/*.patch
do
if [ -f "$i" ]
then
echo "Applying: $i"
patch -p1 <$i
fi
done
}
quirks kernel
cd kernel
if [ ! -f ${config_file} ] ; then
echo "${0}: ${config_file} does not exist"
exit 1
fi
# Workaround build bug on Ubuntu 14.04
cat <<EOF > arch/x86/boot/install.sh
#!/bin/sh
cp -a -- "\$2" "\$4/vmlinuz-\$1"
EOF
# Configure the kernel
cp $config_file .config
make oldconfig </dev/null
# Build the kernel debs
make-kpkg clean
fakeroot make-kpkg --initrd --revision=$VERSION kernel_image kernel_headers
make
mv /root/kvmfornfv/linux-* /root/kvmfornfv/build_output
|