blob: 782c183c246958413316f6e44b934ae43bb109ec [file] [log] [blame]
Martin Roth21c99af2016-11-24 13:16:28 -07001#!/bin/sh
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2016 Google Inc.
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# DESCR: Check that saved config files are miniconfigs
16
17LC_ALL=C export LC_ALL
18
19SYMBOLS='CONFIG_ARCH_\|CONFIG_MAINBOARD_HAS_'
20
21# Use git grep if the code is in a git repo, otherwise use grep.
22if [ -n "$(command -v git)" ] && [ -d .git ]; then
23 GREP="git grep -l"
24else
25 GREP="grep -rl"
26fi
27
28#look for a couple of things that should only be set by select keywords
29for file in \
30 $($GREP "$SYMBOLS" configs) ; do \
31 echo "Error: $file seems to be a full config"; \
32 done