scripts/lib/bsp/help.py: Changed help of yocto-bsp to match latest syntax

With the changes to migrate from optparse to argparse there was a syntax change that needs an update in the help. This is basically just the change of 'properties' and 'property' from positional arguments to options. This patch makes the required changes.

[YOCTO #8321]

(From meta-yocto rev: b171379b5ca54d55ea763421794a651e71bbda91)

Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Humberto Ibarra 2016-07-04 15:33:34 -05:00 committed by Richard Purdie
parent 479d15b326
commit 4e889c04ba
1 changed files with 8 additions and 8 deletions

View File

@ -183,9 +183,9 @@ DESCRIPTION
yocto_bsp_list_usage = """ yocto_bsp_list_usage = """
usage: yocto-bsp list karch usage: yocto-bsp list karch
yocto-bsp list <karch> properties yocto-bsp list <karch> --properties
[-o <JSON PROPERTY FILE> | --outfile <JSON PROPERTY_FILE>] [-o <JSON PROPERTY FILE> | --outfile <JSON PROPERTY_FILE>]
yocto-bsp list <karch> property <xxx> yocto-bsp list <karch> --property <xxx>
[-o <JSON PROPERTY FILE> | --outfile <JSON PROPERTY_FILE>] [-o <JSON PROPERTY FILE> | --outfile <JSON PROPERTY_FILE>]
This command enumerates the complete set of possible values for a This command enumerates the complete set of possible values for a
@ -213,9 +213,9 @@ NAME
SYNOPSIS SYNOPSIS
yocto-bsp list karch yocto-bsp list karch
yocto-bsp list <karch> properties yocto-bsp list <karch> --properties
[--o <JSON PROPERTY FILE> | -outfile <JSON PROPERTY_FILE>] [--o <JSON PROPERTY FILE> | -outfile <JSON PROPERTY_FILE>]
yocto-bsp list <karch> property <xxx> yocto-bsp list <karch> --property <xxx>
[--o <JSON PROPERTY FILE> | -outfile <JSON PROPERTY_FILE>] [--o <JSON PROPERTY FILE> | -outfile <JSON PROPERTY_FILE>]
DESCRIPTION DESCRIPTION
@ -246,9 +246,9 @@ DESCRIPTION
object will consist of the set of name:value pairs corresponding object will consist of the set of name:value pairs corresponding
to the (possibly nested) dictionary of properties defined by the to the (possibly nested) dictionary of properties defined by the
input statements used by the BSP. Some example output for the input statements used by the BSP. Some example output for the
'list properties' command: 'list --properties' command:
$ yocto-bsp list arm properties $ yocto-bsp list arm --properties
"touchscreen" : { "touchscreen" : {
"msg" : Does your BSP have a touchscreen? (y/N) "msg" : Does your BSP have a touchscreen? (y/N)
"default" : n "default" : n
@ -310,11 +310,11 @@ DESCRIPTION
name:value pairs corresponding to the array of property values name:value pairs corresponding to the array of property values
associated with the property. associated with the property.
$ yocto-bsp list i386 property xserver_choice $ yocto-bsp list i386 --property xserver_choice
["xserver_vesa", "VESA xserver support"] ["xserver_vesa", "VESA xserver support"]
["xserver_i915", "i915 xserver support"] ["xserver_i915", "i915 xserver support"]
$ yocto-bsp list arm property base_kbranch_linux_yocto_3_0 $ yocto-bsp list arm --property base_kbranch_linux_yocto_3_0
Getting branches from remote repo git://git.yoctoproject.org/linux-yocto-3.0... Getting branches from remote repo git://git.yoctoproject.org/linux-yocto-3.0...
["yocto/base", "yocto/base"] ["yocto/base", "yocto/base"]
["yocto/eg20t", "yocto/eg20t"] ["yocto/eg20t", "yocto/eg20t"]