summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-04-03 13:37:30 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-04-06 16:45:34 +0100
commit70ee928f8f4152f198f4db61517c958d54f1c0a7 (patch)
tree00848366dd472e37402091c1fb940080412c0247 /bitbake/lib/bb/command.py
parent9435b6cf10efb11c4ad206e06665321b058d943e (diff)
downloadpoky-70ee928f8f4152f198f4db61517c958d54f1c0a7.tar.gz
bitbake: tinfoil: Add back ability to parse on top of a datastore
This option was removed recently as we didn't realise the layerindex relies upon it. Add back the API which it turns out can be supported as long as we assume the datastore passed in is a remote datastore which it usually would be unless created locally. (Bitbake rev: 4618da2094189e4d814b7d65672cb65c86c0626a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 2879950933..6abf38668b 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -499,8 +499,7 @@ class CommandsSync:
499 appends = params[1] 499 appends = params[1]
500 appendlist = params[2] 500 appendlist = params[2]
501 if len(params) > 3: 501 if len(params) > 3:
502 config_data_dict = params[3] 502 config_data = command.remotedatastores[params[3]]
503 config_data = command.remotedatastores.receive_datastore(config_data_dict)
504 else: 503 else:
505 config_data = None 504 config_data = None
506 505