northbridge: Remove unneeded include <pc80/mc146818rtc.h>
[coreboot.git] / util / lint / lint-stable-018-symlinks
blob6f58e7ddd06f4d85f8c4d056de23de80ce255c61
1 #!/bin/sh
2 # This file is part of the coreboot project.
4 # Copyright (C) 2016 Google Inc.
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.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # DESCR: Report any symbolic links
17 LC_ALL=C export LC_ALL
19 EXCLUDED_DIRS='^3rdparty\|^site-local'
21 # If the code is in a git repo, only print files that are checked in
22 if [ -n "$(command -v git)" ] && \
23 [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]
24 then
25 git ls-tree -r HEAD | \
26 grep ^120000 | \
27 cut -f2 | \
28 grep -v "$EXCLUDED_DIRS"
29 else
30 # If the code isn't in a git repo, print everything
31 find . -type l | \
32 sed 's|\.\/||' | \
33 grep -v "$EXCLUDED_DIRS"