From f60c6a2172bceeb5682dcb738a02c4bf26176566 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 29 Sep 2015 14:07:59 +0100 Subject: cookerdata: Rename BBPKGS -> BBTARGETS BBPKGS is a confusing name from before we tried to straighten out our terminology. Its also a mostly unknown variable that isn't in wide use. I've been asked about it recently and before people start relying more heavily on it, I'd like to rename it BBTARGETS which better describes what it does. Its not currently in the manuals, I'd prefer to document it under the better name. I've not provided any migration path for the variable since I believe its unused currently. It allows the targets to built to be specified from a conf file in addition to those on the commandline. Signed-off-by: Richard Purdie --- lib/bb/cookerdata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py index f19c2838..a3fa5525 100644 --- a/lib/bb/cookerdata.py +++ b/lib/bb/cookerdata.py @@ -63,9 +63,9 @@ class ConfigParameters(object): raise Exception("Unable to set configuration option 'cmd' on the server: %s" % error) if not self.options.pkgs_to_build: - bbpkgs, error = server.runCommand(["getVariable", "BBPKGS"]) + bbpkgs, error = server.runCommand(["getVariable", "BBTARGETS"]) if error: - raise Exception("Unable to get the value of BBPKGS from the server: %s" % error) + raise Exception("Unable to get the value of BBTARGETS from the server: %s" % error) if bbpkgs: self.options.pkgs_to_build.extend(bbpkgs.split()) -- cgit v1.2.3