diff options
author | Humberto Ibarra <humberto.ibarra.lopez@intel.com> | 2016-07-04 15:33:32 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-07 13:38:13 +0100 |
commit | 4ab8650eebce905f6c6eb8fc6f1b042389bc992e (patch) | |
tree | 83c944c9d4c9c8e5f0eb62898cf825381b9cdd41 | |
parent | 4252ec78a491f2828fb39d2087ace6e4c1339414 (diff) | |
download | poky-4ab8650eebce905f6c6eb8fc6f1b042389bc992e.tar.gz |
scripts/yocto-bsp: Removing version from yocto-bsp
The version option is not maintained and is useless inside this script.
There is no reason for this script to have an independent version value.
[YOCTO #8321]
(From meta-yocto rev: 8f8790e56d00f2eaaf6508fb1909335f1fbef5ff)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-x | scripts/yocto-bsp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/yocto-bsp b/scripts/yocto-bsp index 0d36370519..ac6cfa07b0 100755 --- a/scripts/yocto-bsp +++ b/scripts/yocto-bsp | |||
@@ -30,8 +30,6 @@ | |||
30 | # Tom Zanussi <tom.zanussi (at] intel.com> | 30 | # Tom Zanussi <tom.zanussi (at] intel.com> |
31 | # | 31 | # |
32 | 32 | ||
33 | __version__ = "0.1.0" | ||
34 | |||
35 | import os | 33 | import os |
36 | import sys | 34 | import sys |
37 | import optparse | 35 | import optparse |
@@ -122,8 +120,7 @@ def start_logging(loglevel): | |||
122 | 120 | ||
123 | 121 | ||
124 | def main(): | 122 | def main(): |
125 | parser = optparse.OptionParser(version = "yocto-bsp version %s" % __version__, | 123 | parser = optparse.OptionParser(usage = yocto_bsp_usage) |
126 | usage = yocto_bsp_usage) | ||
127 | 124 | ||
128 | parser.disable_interspersed_args() | 125 | parser.disable_interspersed_args() |
129 | parser.add_option("-D", "--debug", dest = "debug", action = "store_true", | 126 | parser.add_option("-D", "--debug", dest = "debug", action = "store_true", |