2017-06-14 13:36:37 +02:00
|
|
|
# kas - setup tool for bitbake based projects
|
|
|
|
#
|
|
|
|
# Copyright (c) Siemens AG, 2017
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
This module contains the implementation of the kas configuration.
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import logging
|
|
|
|
import errno
|
2017-06-21 13:32:56 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
from distro import id as get_distro_id
|
|
|
|
except ImportError:
|
|
|
|
import platform
|
|
|
|
|
|
|
|
def get_distro_id():
|
|
|
|
"""
|
|
|
|
Wrapper around platform.dist to simulate distro.id
|
|
|
|
platform.dist is deprecated and will be removed in python 3.7
|
|
|
|
Use the 'distro' package instead.
|
|
|
|
"""
|
|
|
|
# pylint: disable=deprecated-method
|
|
|
|
return platform.dist()[0]
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
from .repos import Repo
|
2017-06-28 12:43:57 +02:00
|
|
|
from .libkas import run_cmd, repos_fetch, repo_checkout
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
__license__ = 'MIT'
|
|
|
|
__copyright__ = 'Copyright (c) Siemens AG, 2017'
|
|
|
|
|
|
|
|
|
|
|
|
class Config:
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
This is an abstract class, that defines the interface of the
|
|
|
|
kas configuration.
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
def __init__(self):
|
2017-06-19 12:50:19 +02:00
|
|
|
self.__kas_work_dir = os.environ.get('KAS_WORK_DIR', os.getcwd())
|
2017-06-21 13:32:56 +02:00
|
|
|
self.environ = {}
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
self._config = {}
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def build_dir(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
The path of the build directory.
|
|
|
|
"""
|
2017-06-19 12:50:19 +02:00
|
|
|
return os.path.join(self.__kas_work_dir, 'build')
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def kas_work_dir(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
The path to the kas work directory.
|
|
|
|
"""
|
2017-06-19 12:50:19 +02:00
|
|
|
return self.__kas_work_dir
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
def setup_environ(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Sets the environment variables for process that are
|
|
|
|
started by kas.
|
|
|
|
"""
|
|
|
|
distro_id = get_distro_id()
|
2017-06-26 16:07:54 +02:00
|
|
|
if distro_id in ['fedora', 'SuSE', 'opensuse']:
|
2017-06-14 13:36:37 +02:00
|
|
|
self.environ = {'LC_ALL': 'en_US.utf8',
|
|
|
|
'LANG': 'en_US.utf8',
|
|
|
|
'LANGUAGE': 'en_US'}
|
2017-06-21 13:32:56 +02:00
|
|
|
elif distro_id in ['Ubuntu', 'debian']:
|
2017-06-14 13:36:37 +02:00
|
|
|
self.environ = {'LC_ALL': 'en_US.UTF-8',
|
|
|
|
'LANG': 'en_US.UTF-8',
|
|
|
|
'LANGUAGE': 'en_US:en'}
|
|
|
|
else:
|
|
|
|
logging.warning('kas: Unsupported distro. No default locales set.')
|
|
|
|
self.environ = {}
|
|
|
|
|
|
|
|
def get_repo_ref_dir(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
The path to the directory that contains the repository references.
|
|
|
|
"""
|
|
|
|
# pylint: disable=no-self-use
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
return os.environ.get('KAS_REPO_REF_DIR', None)
|
|
|
|
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
def get_proxy_config(self):
|
|
|
|
"""
|
|
|
|
Returns the proxy settings
|
|
|
|
"""
|
2017-06-28 14:48:39 +02:00
|
|
|
proxy_config = self._config.get('proxy_config', {})
|
|
|
|
return {var_name: os.environ.get(var_name,
|
|
|
|
proxy_config.get(var_name, ''))
|
|
|
|
for var_name in ['http_proxy',
|
|
|
|
'https_proxy',
|
|
|
|
'no_proxy']}
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
|
|
|
|
def get_repos(self):
|
|
|
|
"""
|
|
|
|
Returns the list of repos.
|
|
|
|
"""
|
|
|
|
# pylint: disable=no-self-use
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
def pre_hook(self, fname):
|
|
|
|
"""
|
|
|
|
Returns a function that is executed before every command or None.
|
|
|
|
"""
|
|
|
|
# pylint: disable=unused-argument
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
def post_hook(self, fname):
|
|
|
|
"""
|
|
|
|
Returs a function that is executed after every command or None.
|
|
|
|
"""
|
|
|
|
# pylint: disable=unused-argument
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_hook(self, fname):
|
|
|
|
"""
|
|
|
|
Returns a function that is executed instead of the command or None.
|
|
|
|
"""
|
|
|
|
# pylint: disable=unused-argument
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_bitbake_target(self):
|
|
|
|
"""
|
|
|
|
Return the bitbake target
|
|
|
|
"""
|
2017-06-28 14:48:39 +02:00
|
|
|
return os.environ.get('KAS_TARGET',
|
|
|
|
self._config.get('target',
|
|
|
|
'core-image-minimal'))
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
|
|
|
|
def get_bblayers_conf_header(self):
|
|
|
|
"""
|
|
|
|
Returns the bblayers.conf header
|
|
|
|
"""
|
|
|
|
return '\n'.join(self._config.get('bblayers_conf_header', {}).values())
|
|
|
|
|
|
|
|
def get_local_conf_header(self):
|
|
|
|
"""
|
|
|
|
Returns the local.conf header
|
|
|
|
"""
|
|
|
|
return '\n'.join(self._config.get('local_conf_header', {}).values())
|
|
|
|
|
|
|
|
def get_machine(self):
|
|
|
|
"""
|
|
|
|
Returns the machine
|
|
|
|
"""
|
2017-06-28 14:48:39 +02:00
|
|
|
return os.environ.get('KAS_MACHINE',
|
|
|
|
self._config.get('machine', 'qemu'))
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
|
|
|
|
def get_distro(self):
|
|
|
|
"""
|
|
|
|
Returns the distro
|
|
|
|
"""
|
2017-06-28 14:48:39 +02:00
|
|
|
return os.environ.get('KAS_DISTRO',
|
|
|
|
self._config.get('distro', 'poky'))
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
|
|
|
|
def get_gitlabci_config(self):
|
|
|
|
"""
|
|
|
|
Returns the GitlabCI configuration
|
|
|
|
"""
|
|
|
|
return self._config.get('gitlabci_config', '')
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
class ConfigPython(Config):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Implementation of a configuration that uses a Python script.
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
def __init__(self, filename, target):
|
2017-06-21 13:32:56 +02:00
|
|
|
# pylint: disable=exec-used
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
super().__init__()
|
|
|
|
self.filename = os.path.abspath(filename)
|
|
|
|
try:
|
2017-06-21 13:32:56 +02:00
|
|
|
with open(self.filename) as fds:
|
2017-06-14 13:36:37 +02:00
|
|
|
env = {}
|
2017-06-21 13:32:56 +02:00
|
|
|
data = fds.read()
|
2017-06-14 13:36:37 +02:00
|
|
|
exec(data, env)
|
|
|
|
self._config = env
|
|
|
|
except IOError:
|
|
|
|
raise IOError(errno.ENOENT, os.strerror(errno.ENOENT),
|
|
|
|
self.filename)
|
|
|
|
|
|
|
|
self.create_config(target)
|
|
|
|
self.setup_environ()
|
|
|
|
|
|
|
|
def __str__(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
output = 'target: {}\n'.format(self.target)
|
|
|
|
output += 'repos:\n'
|
|
|
|
for repo in self.get_repos():
|
|
|
|
output += ' {}\n'.format(repo.__str__())
|
|
|
|
output += 'environ:\n'
|
|
|
|
for key, value in self.environ.items():
|
|
|
|
output += ' {} = {}\n'.format(key, value)
|
|
|
|
output += 'proxy:\n'
|
|
|
|
for key, value in self.get_proxy_config().items():
|
|
|
|
output += ' {} = {}\n'.format(key, value)
|
|
|
|
return output
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
def pre_hook(self, fname):
|
|
|
|
try:
|
|
|
|
self._config[fname + '_prepend'](self)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def post_hook(self, fname):
|
|
|
|
try:
|
|
|
|
self._config[fname + '_append'](self)
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_hook(self, fname):
|
|
|
|
try:
|
|
|
|
return self._config[fname]
|
|
|
|
except KeyError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def create_config(self, target):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Sets the configuration for `target`
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
self.target = target
|
|
|
|
self.repos = self._config['get_repos'](self, target)
|
|
|
|
|
|
|
|
def get_proxy_config(self):
|
|
|
|
return self._config['get_proxy_config']()
|
|
|
|
|
|
|
|
def get_repos(self):
|
|
|
|
return iter(self.repos)
|
|
|
|
|
|
|
|
def get_target(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Returns the target
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
return self.target
|
|
|
|
|
|
|
|
def get_bitbake_target(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Return the bitbake target
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
try:
|
|
|
|
return self._config['get_bitbake_target'](self)
|
|
|
|
except KeyError:
|
|
|
|
return self.target
|
|
|
|
|
|
|
|
def get_bblayers_conf_header(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Returns the bblayers.conf header
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
try:
|
|
|
|
return self._config['get_bblayers_conf_header']()
|
|
|
|
except KeyError:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
def get_local_conf_header(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Returns the local.conf header
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
try:
|
|
|
|
return self._config['get_local_conf_header']()
|
2017-06-21 13:32:56 +02:00
|
|
|
except KeyError:
|
2017-06-14 13:36:37 +02:00
|
|
|
return ''
|
|
|
|
|
|
|
|
def get_machine(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Returns the machine
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
try:
|
|
|
|
return self._config['get_machine'](self)
|
|
|
|
except KeyError:
|
|
|
|
return 'qemu'
|
|
|
|
|
|
|
|
def get_distro(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Returns the distro
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
try:
|
|
|
|
return self._config['get_distro'](self)
|
|
|
|
except KeyError:
|
|
|
|
return 'poky'
|
|
|
|
|
|
|
|
def get_gitlabci_config(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Returns the GitlabCI configuration
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
try:
|
|
|
|
return self._config['get_gitlabci_config'](self)
|
|
|
|
except KeyError:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigStatic(Config):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
Implements the static kas configuration based on config files.
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, filename, _):
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
from .includehandler import GlobalIncludes, IncludeException
|
2017-06-14 13:36:37 +02:00
|
|
|
super().__init__()
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
self.setup_environ()
|
|
|
|
self.filename = os.path.abspath(filename)
|
|
|
|
self.handler = GlobalIncludes(self.filename)
|
2017-06-28 12:43:56 +02:00
|
|
|
|
|
|
|
repo_paths = {}
|
|
|
|
missing_repo_names_old = []
|
|
|
|
(self._config, missing_repo_names) = \
|
|
|
|
self.handler.get_config(repos=repo_paths)
|
|
|
|
|
|
|
|
while missing_repo_names:
|
|
|
|
if missing_repo_names == missing_repo_names_old:
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
raise IncludeException('Could not fetch all repos needed by '
|
|
|
|
'includes.')
|
2017-06-28 12:43:56 +02:00
|
|
|
|
|
|
|
repo_dict = self.get_repo_dict()
|
|
|
|
missing_repos = [repo_dict[repo_name]
|
|
|
|
for repo_name in missing_repo_names]
|
|
|
|
|
2017-06-28 12:43:57 +02:00
|
|
|
repos_fetch(self, missing_repos)
|
|
|
|
|
2017-06-28 12:43:56 +02:00
|
|
|
for repo in missing_repos:
|
|
|
|
repo_checkout(self, repo)
|
|
|
|
|
|
|
|
repo_paths = {r: repo_dict[r].path for r in repo_dict}
|
|
|
|
|
|
|
|
missing_repo_names_old = missing_repo_names
|
|
|
|
(self._config, missing_repo_names) = \
|
|
|
|
self.handler.get_config(repos=repo_paths)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
def get_repos(self):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
Returns the list of repos.
|
|
|
|
"""
|
|
|
|
return list(self.get_repo_dict().values())
|
|
|
|
|
|
|
|
def get_repo_dict(self):
|
|
|
|
"""
|
|
|
|
Returns a dictionary containing the repositories with
|
|
|
|
their name (as it is defined in the config file) as key
|
|
|
|
and the `Repo` instances as value.
|
|
|
|
"""
|
|
|
|
repo_config_dict = self._config.get('repos', {})
|
|
|
|
repo_dict = {}
|
|
|
|
for repo in repo_config_dict:
|
|
|
|
|
|
|
|
repo_config_dict[repo] = repo_config_dict[repo] or {}
|
|
|
|
layers_dict = repo_config_dict[repo].get('layers', {})
|
|
|
|
layers = list(filter(lambda x, laydict=layers_dict:
|
|
|
|
str(laydict[x]).lower() not in
|
|
|
|
['disabled', 'excluded', 'n', 'no', '0',
|
|
|
|
'false'],
|
|
|
|
layers_dict))
|
|
|
|
url = repo_config_dict[repo].get('url', None)
|
|
|
|
name = repo_config_dict[repo].get('name', repo)
|
|
|
|
refspec = repo_config_dict[repo].get('refspec', None)
|
|
|
|
path = repo_config_dict[repo].get('path', None)
|
|
|
|
|
|
|
|
if url is None:
|
|
|
|
# No git operation on repository
|
|
|
|
if path is None:
|
|
|
|
# In-tree configuration
|
|
|
|
path = os.path.dirname(self.filename)
|
|
|
|
(_, output) = run_cmd(['/usr/bin/git',
|
|
|
|
'rev-parse',
|
|
|
|
'--show-toplevel'],
|
|
|
|
cwd=path,
|
|
|
|
env=self.environ)
|
|
|
|
path = output.strip()
|
|
|
|
|
|
|
|
url = path
|
2017-06-21 13:32:56 +02:00
|
|
|
rep = Repo(url=url,
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
path=path,
|
2017-06-21 13:32:57 +02:00
|
|
|
layers=layers)
|
2017-06-21 13:32:56 +02:00
|
|
|
rep.disable_git_operations()
|
2017-06-14 13:36:37 +02:00
|
|
|
else:
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
path = path or os.path.join(self.kas_work_dir, name)
|
2017-06-21 13:32:56 +02:00
|
|
|
rep = Repo(url=url,
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
path=path,
|
|
|
|
refspec=refspec,
|
2017-06-21 13:32:57 +02:00
|
|
|
layers=layers)
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
repo_dict[repo] = rep
|
|
|
|
return repo_dict
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
def load_config(filename, target):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Return configuration generated from `filename`.
|
|
|
|
"""
|
|
|
|
# pylint: disable=redefined-variable-type
|
|
|
|
|
|
|
|
(_, ext) = os.path.splitext(filename)
|
2017-06-14 13:36:37 +02:00
|
|
|
if ext == '.py':
|
|
|
|
cfg = ConfigPython(filename, target)
|
added initial implementation of a include handler
Splitting configuration files into multiple files and implementing an
include mechanism allows to handle configurations more flexible and
allowing following scenarios:
- including kas configuration file from external meta layer into
own project
- splitting many different similar configurations into multiple files
with only a couple of common files
To include file its necessary to add a 'includes' entry into the kas
configuration. To include files from the same repo, do it like this:
-----
includes:
- ../base/base_include.yml
-----
The path is relative to the current configuration file. If they start
with a path seperator ("/") they are absolute.
To include files from a different repository, do it like this:
-----
includes:
- file: bsps/my_machine_include.yml
repo: collected_machines
repos:
collected_machines:
url: https://url.to.git.repo/
revspec: master
-----
You have to make sure that the repository definition is available
in your current file, or in any include that is available at this
point.
Yaml ("*.yml") and Json ("*.json") files are supported.
Included in this patch are also some changes to the configuration
file structure. Here is an overview:
The value of the 'repos' key is a dictionary that maps a repo identifier
to a dictionary that contains 5 entries:
- url: The url to the repository. If that is missing, no git operations
are used
- refspec: The git refspec of the repository that is used. If that is
missing the latest commit of the default branch is used.
- name: The is defines under which name the repository is stored. If
that is missing the repository identifier is used
- path: The path where the repository is stored. If no url is given and
a path is missing, the repository is referencing the repository under
which the configuration file is stored. If no url is given and a path is
specified, the repository is referencing a directory where layers might
be stored. If an url is specified, path can be used to overwrite the
default (kas_work_dir + repo.name) checkout directory.
- layers: This contains a dictionary of layers, that should be included
into the bblayers.conf. The keys are paths relative to the repository
and the values can be used to exclude layers if they are one of
"excluded", "disabled", "false", "0", "n", or "no". Also boolean values
are accepted. Any other value, including "None" means that this layer is
included into the bblayers.conf. If "layers" is missing or empty, the
repository itself is included into the bblayers. If this is specified, the
repository itself is not included into the bblayers.conf.
Signed-off-by: Claudius Heine <ch@denx.de>
2017-06-21 13:32:58 +02:00
|
|
|
elif ext in ['.json', '.yml']:
|
|
|
|
cfg = ConfigStatic(filename, target)
|
2017-06-14 13:36:37 +02:00
|
|
|
else:
|
|
|
|
logging.error('Config file extenstion not recognized')
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
return cfg
|