blob: 61813eaa10f8828792ec9ef506ca046967634770 [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
Patrick Georgif9d72522014-08-16 22:50:57 +020019for mobodir in $(git diff --diff-filter ACMR --name-only 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"
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020023 exit 1
24 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"
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020031 exit 1
32 ;;
33 *)
Vladimir Serbinenkob46f5892014-08-17 23:53:14 +020034 echo "$board_info specifies unknown category '$category'"
Vladimir Serbinenkofb2a9a92014-08-15 02:06:00 +020035 exit 1
36 ;;
37 esac
38done
39
40exit 0