northbridge: Remove unneeded include <pc80/mc146818rtc.h>
[coreboot.git] / util / lint / lint-stable-005-board-status
blob952a9b5c6f203bd6b7f70329ca52d75128333858
1 #!/bin/sh
2 # This file is part of the coreboot project.
4 # Copyright (C) 2014 Vladimir Serbinenko <phcoder@gmail.com>
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.
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.
16 # DESCR: Check that every board has a meaningful board_info.txt
18 LC_ALL=C export LC_ALL
19 for mobodir in $(git ls-files src/mainboard | sed -n 's,^\(src/mainboard/[^/]*/[^/]*\)/.*$,\1,p'|sort|uniq); do
20 board_info="$mobodir/board_info.txt"
21 if ! [ -f "$board_info" ]; then
22 echo "No $board_info found"
23 continue
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)
29 "")
30 echo "$board_info doesn't contain 'Category' tag"
31 continue
34 echo "$board_info specifies unknown category '$category'"
35 continue
37 esac
38 done
40 exit 0