From 1f3e312211f277a1befd707a59a0c0a9bf6cbcbc Mon Sep 17 00:00:00 2001 From: João Henrique Ferreira de Freitas Date: Wed, 14 May 2014 22:37:27 -0300 Subject: wic: add support to look in all layers and get .wks file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .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 /scripts/lib/image/canned-wks. Signed-off-by: João Henrique Ferreira de Freitas Signed-off-by: Saul Wold --- scripts/wic | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scripts/wic') 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() -- cgit 1.2.3-korg