mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:49:00 +02:00

This adds the SPDX-License-Identifier license headers to the majority of our source files to make it clearer exactly which license files are under. The bulk of the files are under GPL v2.0 with one found to be under V2.0 or later, some under MIT and some have dual license. There are some files which are potentially harder to classify where we've imported upstream code and those can be handled specifically in later commits. The COPYING file is replaced with LICENSE.X files which contain the full license texts. (Bitbake rev: ff237c33337f4da2ca06c3a2c49699bc26608a6b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
import argparse
|
|
import logging
|
|
import os
|
|
|
|
logger = logging.getLogger('bitbake-layers')
|
|
|
|
|
|
class LayerPlugin():
|
|
def __init__(self):
|
|
self.tinfoil = None
|
|
self.bblayers = []
|
|
|
|
def tinfoil_init(self, tinfoil):
|
|
self.tinfoil = tinfoil
|
|
self.bblayers = (self.tinfoil.config_data.getVar('BBLAYERS') or "").split()
|
|
layerconfs = self.tinfoil.config_data.varhistory.get_variable_items_files('BBFILE_COLLECTIONS', self.tinfoil.config_data)
|
|
self.bbfile_collections = {layer: os.path.dirname(os.path.dirname(path)) for layer, path in layerconfs.items()}
|
|
|
|
@staticmethod
|
|
def add_command(subparsers, cmdname, function, parserecipes=True, *args, **kwargs):
|
|
"""Convert docstring for function to help."""
|
|
docsplit = function.__doc__.splitlines()
|
|
help = docsplit[0]
|
|
if len(docsplit) > 1:
|
|
desc = '\n'.join(docsplit[1:])
|
|
else:
|
|
desc = help
|
|
subparser = subparsers.add_parser(cmdname, *args, help=help, description=desc, formatter_class=argparse.RawTextHelpFormatter, **kwargs)
|
|
subparser.set_defaults(func=function, parserecipes=parserecipes)
|
|
return subparser
|
|
|
|
def get_layer_name(self, layerdir):
|
|
return os.path.basename(layerdir.rstrip(os.sep))
|