soc/intel/xeon_sp: Align resources to 4K
[coreboot2.git] / util / lint / lint-stable-017-configs
blob5be744570a58c8e1b602e0ca45d3884de89110a9
1 #!/usr/bin/env sh
3 # SPDX-License-Identifier: GPL-2.0-only
5 # DESCR: Check that saved config files are miniconfigs
7 LINTDIR="$(
8 cd -- "$(dirname "$0")" > /dev/null 2>&1 || return
9 pwd -P
12 # shellcheck source=helper_functions.sh
13 . "${LINTDIR}/helper_functions.sh"
15 SYMBOLS='CONFIG_MAINBOARD_DIR\|CONFIG_MAINBOARD_HAS_'
17 #look for a couple of things that should only be set by select keywords
18 for file in \
19 $(${GREP_FILES} -l "$SYMBOLS" configs) ; do \
20 echo "Error: $file seems to be a full config"; \
21 done