summaryrefslogtreecommitdiffstats
path: root/util/lint/lint-stable-029-kconfig-name-selects
blob: 78d6070805ee4cf88ac4fb7f5fd232a784a6319f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env sh
# SPDX-License-Identifier: GPL-2.0-or-later
#
# DESCR: Check that boards don't use select Kconfig.name

export LC_ALL=C
FAIL=0

for board in src/mainboard/*/*; do
  if [ -f ${board}/Kconfig.name ] && grep -q "select " "${board}/Kconfig.name"; then
    echo "Mainboard ${board} uses 'select' in Kconfig.name"
    FAIL=1
  fi
done

exit ${FAIL}