From 1e1991ae65a96fd865921933f89e5e2e3477550d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 7 Apr 2018 11:32:03 +0100 Subject: devtool/oeqa: Ensure added layers set LAYERSERIES_COMPAT Now that we see warnings if LAYERSERIES_COMPAT is unset, the auto generated code from devtool/oeqa needs to set this to avoid warnings which break various tests. (From OE-Core rev: 27568410ebb0d40db3428550704f35199df0e034) Signed-off-by: Richard Purdie --- scripts/devtool | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/devtool b/scripts/devtool index b4bfbb8329..d681a1929a 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -165,6 +165,7 @@ def _create_workspace(workspacedir, config, basepath): f.write('BBFILE_PATTERN_workspacelayer = "^$' + '{LAYERDIR}/"\n') f.write('BBFILE_PATTERN_IGNORE_EMPTY_workspacelayer = "1"\n') f.write('BBFILE_PRIORITY_workspacelayer = "99"\n') + f.write('LAYERSERIES_COMPAT_workspacelayer = "${LAYERSERIES_COMPAT_core}"\n') # Add a README file with open(os.path.join(workspacedir, 'README'), 'w') as f: f.write('This layer was created by the OpenEmbedded devtool utility in order to\n') -- cgit v1.2.3-54-g00ecf