diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-12-08 15:19:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-13 22:47:28 +0000 |
commit | 8d4121459334349f10bfb0f4cda00a8461aab245 (patch) | |
tree | 06835d3592a6077cf6427ce1a9a18fc479d6384d /scripts | |
parent | f63c75cc0da4f64ed2d769690122a34d40f7af49 (diff) | |
download | openembedded-core-8d4121459334349f10bfb0f4cda00a8461aab245.tar.gz openembedded-core-8d4121459334349f10bfb0f4cda00a8461aab245.tar.bz2 openembedded-core-8d4121459334349f10bfb0f4cda00a8461aab245.zip |
wic: rename command line option -p -> -s
Short variant of wic command line option --skip-build-check
is incorretly named -p. It's named -s in wic help and Yocto
documentation.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/wic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wic b/scripts/wic index fe2c33f0e7..1ad16665e7 100755 --- a/scripts/wic +++ b/scripts/wic @@ -107,7 +107,7 @@ def wic_create_subcommand(args, usage_str): parser.add_option("-n", "--native-sysroot", dest="native_sysroot", help="path to the native sysroot containing the tools " "to use to build the image") - parser.add_option("-p", "--skip-build-check", dest="build_check", + parser.add_option("-s", "--skip-build-check", dest="build_check", action="store_false", default=True, help="skip the build check") parser.add_option("-f", "--build-rootfs", action="store_true", help="build rootfs") parser.add_option("-c", "--compress-with", choices=("gzip", "bzip2", "xz"), |