diff options
author | João Henrique Ferreira de Freitas <joaohf@gmail.com> | 2014-05-14 22:37:27 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-21 09:08:11 +0100 |
commit | 1f3e312211f277a1befd707a59a0c0a9bf6cbcbc (patch) | |
tree | a984557b24745f2bb6c79265bdc966e025a68002 /scripts/wic | |
parent | 937a0da0861abb7656762b2a3fb69eb275dd4a9a (diff) | |
download | openembedded-core-1f3e312211f277a1befd707a59a0c0a9bf6cbcbc.tar.gz openembedded-core-1f3e312211f277a1befd707a59a0c0a9bf6cbcbc.tar.bz2 openembedded-core-1f3e312211f277a1befd707a59a0c0a9bf6cbcbc.zip |
wic: add support to look in all layers and get .wks file
.wks file are looked in 'scripts/lib/image/canned-wks' directory on all
BBLAYERS variable returned by bitbake environment. If found, it will
be used.
The user could create your own .wks and keep it inside its layers. For
now the path must be <layer-dir>/scripts/lib/image/canned-wks.
Signed-off-by: João Henrique Ferreira de Freitas <joaohf@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/wic')
-rwxr-xr-x | scripts/wic | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/wic b/scripts/wic index 442334030f..2d3fd09d71 100755 --- a/scripts/wic +++ b/scripts/wic @@ -214,6 +214,12 @@ def wic_list_subcommand(args, usage_str): (options, args) = parser.parse_args(args) + bitbake_env_lines = find_bitbake_env_lines(None) + if not bitbake_env_lines: + print "Couldn't get bitbake environment, exiting." + sys.exit(1) + set_bitbake_env_lines(bitbake_env_lines) + if not wic_list(args, scripts_path, options.properties_file): logging.error("Bad list arguments, exiting\n") parser.print_help() |