blob: 9115fcdb5617cdcb7f72dbcf23bdd523f32528e6 [file] [log] [blame]
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07001#!/bin/bash
2#
3# Build a kvm-ready Linux kernel from the tree in the current directory.
4#
Paul E. McKenney5bfd7d32018-04-23 14:03:00 -07005# Usage: kvm-build.sh config-template build-dir resdir
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -07006#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
Paul E. McKenney0e342a82013-12-03 09:54:18 -080018# along with this program; if not, you can access it online at
19# http://www.gnu.org/licenses/gpl-2.0.html.
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070020#
21# Copyright (C) IBM Corporation, 2011
22#
23# Authors: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
24
25config_template=${1}
26if test -z "$config_template" -o ! -f "$config_template" -o ! -r "$config_template"
27then
28 echo "kvm-build.sh :$config_template: Not a readable file"
29 exit 1
30fi
31builddir=${2}
Paul E. McKenney5bfd7d32018-04-23 14:03:00 -070032resdir=${3}
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070033
Paul E. McKenneyb038c582017-08-30 15:33:49 -070034T=${TMPDIR-/tmp}/test-linux.sh.$$
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070035trap 'rm -rf $T' 0
36mkdir $T
37
Paul E. McKenneyd62c9832017-05-01 17:49:29 -070038cp ${config_template} $T/config
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070039cat << ___EOF___ >> $T/config
Paul E. McKenney2f66dbc2014-02-26 11:16:07 -080040CONFIG_INITRAMFS_SOURCE="$TORTURE_INITRD"
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070041CONFIG_VIRTIO_PCI=y
42CONFIG_VIRTIO_CONSOLE=y
43___EOF___
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070044
Paul E. McKenney5bfd7d32018-04-23 14:03:00 -070045configinit.sh $T/config O=$builddir $resdir
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070046retval=$?
47if test $retval -gt 1
48then
49 exit 2
50fi
51ncpus=`cpus2use.sh`
Paul E. McKenney5bfd7d32018-04-23 14:03:00 -070052make O=$builddir -j$ncpus $TORTURE_KMAKE_ARG > $resdir/Make.out 2>&1
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070053retval=$?
Paul E. McKenney5bfd7d32018-04-23 14:03:00 -070054if test $retval -ne 0 || grep "rcu[^/]*": < $resdir/Make.out | egrep -q "Stop|Error|error:|warning:" || egrep -q "Stop|Error|error:" < $resdir/Make.out
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070055then
56 echo Kernel build error
Paul E. McKenney5bfd7d32018-04-23 14:03:00 -070057 egrep "Stop|Error|error:|warning:" < $resdir/Make.out
Paul E. McKenneyc87b9c62013-09-28 14:12:21 -070058 echo Run aborted.
59 exit 3
60fi