blob: 6f58e7ddd06f4d85f8c4d056de23de80ce255c61 [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
Alex Thiessen73f19dc2018-01-16 23:05:48 +000022if [ -n "$(command -v git)" ] && \
23 [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]
24then
Martin Rothadcba942016-11-28 13:16:24 -070025 git ls-tree -r HEAD | \
26 grep ^120000 | \
27 cut -f2 | \
28 grep -v "$EXCLUDED_DIRS"
29else
30 # If the code isn't in a git repo, print everything
31 find . -type l | \
32 sed 's|\.\/||' | \
33 grep -v "$EXCLUDED_DIRS"
34fi