Add support for Isar build system
Isar allows to build Debian-based images using bitbake and the usual layer structures. It's very similar to OE, we just need to account for a different init script name. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
committed by
Daniel Wagner
parent
f3cee3b296
commit
013af80599
@@ -28,7 +28,7 @@ import logging
|
||||
import shutil
|
||||
import os
|
||||
from .libkas import (ssh_cleanup_agent, ssh_setup_agent, ssh_no_host_key_check,
|
||||
run_cmd, get_oe_environ)
|
||||
run_cmd, get_build_environ)
|
||||
|
||||
__license__ = 'MIT'
|
||||
__copyright__ = 'Copyright (c) Siemens AG, 2017'
|
||||
@@ -168,7 +168,7 @@ class SetupEnviron(Command):
|
||||
return 'setup_environ'
|
||||
|
||||
def execute(self, config):
|
||||
config.environ.update(get_oe_environ(config, config.build_dir))
|
||||
config.environ.update(get_build_environ(config, config.build_dir))
|
||||
|
||||
|
||||
class WriteConfig(Command):
|
||||
|
Reference in New Issue
Block a user