aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2014-07-24 01:22:42 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-24 12:31:33 +0100
commit0036b36e333a68c6d30a6bf5c21bfd4fd3e8441b (patch)
tree1fcf6085162b5facf567fc7924125db061efe09d
parent3f191b7cfe95aea4d4e96babf001d62d45dd3aaa (diff)
downloadbitbake-0036b36e333a68c6d30a6bf5c21bfd4fd3e8441b.tar.gz
bitbake: remove choices for dump-signatures
The SIGNATURE_HANDLER can be defined by the user, so we can't use choices. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake b/bin/bitbake
index 39aa3ec38..b8acd6e63 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -140,7 +140,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters):
action = "store_true", dest = "dry_run", default = False)
parser.add_option("-S", "--dump-signatures", help = "Dump out the signature construction information, with no task execution. The SIGNATURE_HANDLER parameter is passed to the handler. Two common values are none and printdiff but the handler may define more/less. none means only dump the signature, printdiff means compare the dumped signature with the cached one.",
- action = "append", dest = "dump_signatures", default = [], type="choice", choices=("none", "printdiff"), metavar="SIGNATURE_HANDLER")
+ action = "append", dest = "dump_signatures", default = [], metavar="SIGNATURE_HANDLER")
parser.add_option("-p", "--parse-only", help = "Quit after parsing the BB recipes.",
action = "store_true", dest = "parse_only", default = False)