xref: /openbmc/u-boot/tools/patman/project.py (revision 0b304a24)
1# Copyright (c) 2012 The Chromium OS Authors.
2#
3# SPDX-License-Identifier:	GPL-2.0+
4#
5
6import os.path
7
8import gitutil
9
10def DetectProject():
11    """Autodetect the name of the current project.
12
13    This looks for signature files/directories that are unlikely to exist except
14    in the given project.
15
16    Returns:
17        The name of the project, like "linux" or "u-boot".  Returns "unknown"
18        if we can't detect the project.
19    """
20    top_level = gitutil.GetTopLevel()
21
22    if os.path.exists(os.path.join(top_level, "include", "u-boot")):
23        return "u-boot"
24    elif os.path.exists(os.path.join(top_level, "kernel")):
25        return "linux"
26
27    return "unknown"
28