diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2014-07-04 19:11:49 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-10 17:38:34 +0100 |
commit | 40769b7cc0cd94ce6f8ee93f01d64c76d9b8578e (patch) | |
tree | a9e69d8d182c73d7c95f85e3eb6320f99b79845d /scripts/lib/image | |
parent | ae33bda011ce0c0a0e0dcd36bb38ba0186fa353d (diff) | |
download | poky-40769b7cc0cd94ce6f8ee93f01d64c76d9b8578e.tar.gz |
wic: Add command to list available source plugins
Add a 'wic list source-plugins' command enabling users to get a list
of valid partition --sources. This is useful not only for determining
sources to use in .wks partition statements, but also for making sense
of errors in .wks partition processing.
(From OE-Core rev: 37db9423e7872012fabde67e8858db5b512832f6)
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/image')
-rw-r--r-- | scripts/lib/image/engine.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py index 1256236304..b850bb9bfe 100644 --- a/scripts/lib/image/engine.py +++ b/scripts/lib/image/engine.py | |||
@@ -174,6 +174,16 @@ def list_canned_image_help(scripts_path, fullpath): | |||
174 | break | 174 | break |
175 | 175 | ||
176 | 176 | ||
177 | def list_source_plugins(): | ||
178 | """ | ||
179 | List the available source plugins i.e. plugins available for --source. | ||
180 | """ | ||
181 | plugins = pluginmgr.get_source_plugins() | ||
182 | |||
183 | for plugin in plugins: | ||
184 | print " %s" % plugin | ||
185 | |||
186 | |||
177 | def wic_create(args, wks_file, rootfs_dir, bootimg_dir, kernel_dir, | 187 | def wic_create(args, wks_file, rootfs_dir, bootimg_dir, kernel_dir, |
178 | native_sysroot, hdddir, staging_data_dir, scripts_path, | 188 | native_sysroot, hdddir, staging_data_dir, scripts_path, |
179 | image_output_dir, debug, properties_file, properties=None): | 189 | image_output_dir, debug, properties_file, properties=None): |
@@ -258,6 +268,9 @@ def wic_list(args, scripts_path, properties_file): | |||
258 | if args[0] == "images": | 268 | if args[0] == "images": |
259 | list_canned_images(scripts_path) | 269 | list_canned_images(scripts_path) |
260 | return True | 270 | return True |
271 | elif args[0] == "source-plugins": | ||
272 | list_source_plugins() | ||
273 | return True | ||
261 | elif args[0] == "properties": | 274 | elif args[0] == "properties": |
262 | return True | 275 | return True |
263 | else: | 276 | else: |