summaryrefslogtreecommitdiffstats
path: root/conf/distro/sota.conf.inc
diff options
context:
space:
mode:
authorMing Liu <liu.ming50@gmail.com>2020-01-26 22:14:20 +0100
committerMing Liu <liu.ming50@gmail.com>2020-01-26 22:27:42 +0100
commit5a1aeb33bebdd73387e649122fa1f33dbe965243 (patch)
treee6d03b8a83f8da92b31afa08dcd118c5e78058ac /conf/distro/sota.conf.inc
parent2b64ba13985bd016d919fac794b4ba00d2495ecf (diff)
downloadmeta-updater-pr/669.tar.gz
meta: move HOSTTOOLS definitions to sota.conf.incpr/669
HOSTTOOLS and HOSTTOOLS_NONFATAL are global variables that being handled in base_eventhandler, so they must be defined in config files or in INHERIT classes or classes being inherited by base.bbclass, or else we might run into the following problems: ``` $ bitbake pkgname $ bitbake imgname ``` the HOSTTOOLS and HOSTTOOLS_NONFATAL in the above image recipe, for instance, 'repo python' in image_repo_manifest.bbclass, they would not be copied to HOSTTOOLS_DIR. Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Diffstat (limited to 'conf/distro/sota.conf.inc')
-rw-r--r--conf/distro/sota.conf.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/distro/sota.conf.inc b/conf/distro/sota.conf.inc
index 69d729c..53192e5 100644
--- a/conf/distro/sota.conf.inc
+++ b/conf/distro/sota.conf.inc
@@ -17,4 +17,5 @@ INHERIT += "reproducible_build_simple"
17export SOURCE_DATE_EPOCH = "0" 17export SOURCE_DATE_EPOCH = "0"
18REPRODUCIBLE_TIMESTAMP_ROOTFS = "0" 18REPRODUCIBLE_TIMESTAMP_ROOTFS = "0"
19 19
20HOSTTOOLS_append = " sync sha256sum" 20HOSTTOOLS += "git sync repo python sha256sum"
21HOSTTOOLS_NONFATAL += "java"