soc/intel/xeon_sp: Align resources to 4K
[coreboot2.git] / util / lint / lint-stable-029-kconfig-name-selects
blob78d6070805ee4cf88ac4fb7f5fd232a784a6319f
1 #!/usr/bin/env sh
2 # SPDX-License-Identifier: GPL-2.0-or-later
4 # DESCR: Check that boards don't use select Kconfig.name
6 export LC_ALL=C
7 FAIL=0
9 for board in src/mainboard/*/*; do
10 if [ -f ${board}/Kconfig.name ] && grep -q "select " "${board}/Kconfig.name"; then
11 echo "Mainboard ${board} uses 'select' in Kconfig.name"
12 FAIL=1
14 done
16 exit ${FAIL}