blob: 7865f559d99fc7e101bc55449e69459ee0b407f0 [file] [log] [blame]
Martin Rothadcba942016-11-28 13:16:24 -07001#!/bin/sh
2# This file is part of the coreboot project.
3#
4# Copyright (C) 2016 Google Inc.
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.
9#
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.
14#
15# DESCR: Report any symbolic links
16
17LC_ALL=C export LC_ALL
18
19EXCLUDED_DIRS='^3rdparty\|^site-local'
20
21# If the code is in a git repo, only print files that are checked in
22if [ -n "$(command -v git)" ] && [ -d .git ]; then
23 git ls-tree -r HEAD | \
24 grep ^120000 | \
25 cut -f2 | \
26 grep -v "$EXCLUDED_DIRS"
27else
28 # If the code isn't in a git repo, print everything
29 find . -type l | \
30 sed 's|\.\/||' | \
31 grep -v "$EXCLUDED_DIRS"
32fi
33