blob: 952a9b5c6f203bd6b7f70329ca52d75128333858 [file] [log] [blame]
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +02001#!/bin/sh
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2014 Vladimir Serbinenko <phcoder@gmail.com>
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, or (at your option)
9# any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020016# DESCR: Check that every board has a meaningful board_info.txt
17
18LC_ALL=C export LC_ALL
Martin Roth92658db2016-03-16 15:58:23 -060019for mobodir in $(git ls-files src/mainboard | sed -n 's,^\(src/mainboard/[^/]*/[^/]*\)/.*$,\1,p'|sort|uniq); do
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020020 board_info="$mobodir/board_info.txt"
21 if ! [ -f "$board_info" ]; then
Vladimir Serbinenkob46f5892014-08-17 23:53:14 +020022 echo "No $board_info found"
Martin Roth92658db2016-03-16 15:58:23 -060023 continue
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020024 fi
25 category="$(sed -n 's#^Category: \(.*\)$#\1#p' < "$board_info")"
26 case "$category" in
27 desktop|server|laptop|half|mini|settop|"eval"|sbc|emulation|misc)
28 ;;
29 "")
Vladimir Serbinenkob46f5892014-08-17 23:53:14 +020030 echo "$board_info doesn't contain 'Category' tag"
Martin Roth92658db2016-03-16 15:58:23 -060031 continue
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020032 ;;
33 *)
Vladimir Serbinenkob46f5892014-08-17 23:53:14 +020034 echo "$board_info specifies unknown category '$category'"
Martin Roth92658db2016-03-16 15:58:23 -060035 continue
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020036 ;;
37 esac
38done
39
40exit 0