blob: 013d84a2651c8959e6bb58886b7d55c1de0e1aea [file] [log] [blame]
Patrick Georgi40ad8422011-05-21 22:18:59 +00001#!/bin/sh
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2011 Patrick Georgi <patrick@georgi-clan.de>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; version 2 of the License.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18#
19# DESCR: Check that build directories can be chosen freely
20
21# $1: command to test for GNU make
22search_make() {
Stefan Reinauer57879c92012-07-31 16:47:25 -070023if [ -n "`$1 --version 2>&1 | grep GNU`" ]; then MAKE=$1; fi
Patrick Georgi40ad8422011-05-21 22:18:59 +000024}
25
26# if $1 and $2 differ, exit with failure
27compare_output() {
28if ! [ "$1" = "$2" ]; then
29 echo \'$1\' should be \'$2\'
30 exit 1
31fi
32}
33
34# $1: object directory
35run_printall() {
Patrick Georgifadbe5f2014-05-17 18:26:38 +020036$MAKE CONFIG_USE_BLOBS=n CONFIG_CCACHE=n NOMKDIR=1 \
Stefan Reinauer57879c92012-07-31 16:47:25 -070037 DOTCONFIG=$TMPCONFIG obj=$1 printall | \
38 sed -e "s,^ *,," -e "s,^r.mstage-objs:=,," \
39 -e "s,mainboard/[^/]*/[^/]*/,.../,g" | \
Zheng Bao615304c2012-09-17 16:38:22 +080040 tr " " "\n" | GREP_OPTIONS= grep "/static.*\.[co]" | sort | \
Stefan Reinauer57879c92012-07-31 16:47:25 -070041 tr '\012\015' ' ' | sed -e "s, *, ,g" -e "s, *$,,"
Patrick Georgi40ad8422011-05-21 22:18:59 +000042}
43
44# find GNU make
Zheng Bao684b8ab2012-09-28 20:13:19 +080045MAKE=
Patrick Georgi40ad8422011-05-21 22:18:59 +000046search_make make
Zheng Bao684b8ab2012-09-28 20:13:19 +080047[ -z $MAKE ] && search_make gmake
48[ -z $MAKE ] && search_make gnumake
Patrick Georgi40ad8422011-05-21 22:18:59 +000049
50if [ "$MAKE" = "" ]; then
51 echo Could not identify GNU make
52 exit 1
53fi
54
55# prepare a config to use
Nico Huber1bfe3742013-07-02 16:39:28 +020056TMPOBJ=`mktemp .tmpobj.XXXXXX`
57rm $TMPOBJ
58mkdir -p ${TMPOBJ}
Patrick Georgi9c7467e2012-02-25 15:33:43 +010059TMPCONFIG=`mktemp .tmpconfig.XXXXXX`
Patrick Georgi40ad8422011-05-21 22:18:59 +000060rm -f $TMPCONFIG
Nico Huber1bfe3742013-07-02 16:39:28 +020061$MAKE obj=$TMPOBJ DOTCONFIG=$TMPCONFIG allyesconfig >/dev/null
Patrick Georgi40ad8422011-05-21 22:18:59 +000062
63# look up parent directory
Zheng Bao9b757dc2012-09-28 20:14:38 +080064CURRENTDIR=`pwd -P`
65PARENTDIR=`dirname $CURRENTDIR`
Patrick Georgi40ad8422011-05-21 22:18:59 +000066
Patrick Georgif33e3952012-11-25 17:10:47 +010067compare_output "`run_printall build`" "build/.../static.c build/.../static.c build/.../static.romstage.o"
68compare_output "`run_printall ../obj`" "$PARENTDIR/obj/.../static.c $PARENTDIR/obj/.../static.c $PARENTDIR/obj/.../static.romstage.o"
69compare_output "`run_printall /tmp`" "/tmp/.../static.c /tmp/.../static.c /tmp/.../static.romstage.o"
70compare_output "`run_printall /../tmp`" "/tmp/.../static.c /tmp/.../static.c /tmp/.../static.romstage.o"
Patrick Georgi40ad8422011-05-21 22:18:59 +000071
Nico Huber1bfe3742013-07-02 16:39:28 +020072rm -rf $TMPCONFIG $TMPOBJ
Patrick Georgi40ad8422011-05-21 22:18:59 +000073