diff options
author | Ross Burton <ross.burton@intel.com> | 2015-07-07 15:44:33 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-07 16:18:34 +0100 |
commit | 18d71ed16ed3fd0ef0036280612503e33f840587 (patch) | |
tree | 47d36e6f41fc8b729af43562931760c48dcbcd5a /bitbake/lib/bb | |
parent | 62caaa4d6d1e3585c94c34af91e94d1b0deba8c3 (diff) | |
download | poky-18d71ed16ed3fd0ef0036280612503e33f840587.tar.gz |
bitbake: main: add skeleton documentation for the recipe:do_task syntax
The incredibly useful recipe:do_task syntax on the command line isn't documented
at all. This isn't much but it's better than nothing.
(Bitbake rev: 7f4c07886ecff4ac77fdd2165bedd179099fcf19)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rwxr-xr-x | bitbake/lib/bb/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py index 49dc8d5b59..ee72328f4e 100755 --- a/bitbake/lib/bb/main.py +++ b/bitbake/lib/bb/main.py | |||
@@ -83,7 +83,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): | |||
83 | def parseCommandLine(self, argv=sys.argv): | 83 | def parseCommandLine(self, argv=sys.argv): |
84 | parser = optparse.OptionParser( | 84 | parser = optparse.OptionParser( |
85 | version = "BitBake Build Tool Core version %s" % bb.__version__, | 85 | version = "BitBake Build Tool Core version %s" % bb.__version__, |
86 | usage = """%prog [options] [recipename/target ...] | 86 | usage = """%prog [options] [recipename/target recipe:do_task ...] |
87 | 87 | ||
88 | Executes the specified task (default is 'build') for a given set of target recipes (.bb files). | 88 | Executes the specified task (default is 'build') for a given set of target recipes (.bb files). |
89 | It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which | 89 | It is assumed there is a conf/bblayers.conf available in cwd or in BBPATH which |