mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
wic: Add new argument to direct plugin
Added 'compressor' argument to Direct plugin API to pass a name of compressor utility. (From OE-Core rev: 34c583274c2908351e3a84dd629302f1975f2f0d) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
40349f1325
commit
597cba650c
@@ -62,7 +62,7 @@ class DirectPlugin(ImagerPlugin):
|
||||
"""
|
||||
Create direct image, called from creator as 'direct' cmd
|
||||
"""
|
||||
if len(args) != 7:
|
||||
if len(args) != 8:
|
||||
raise errors.Usage("Extra arguments given")
|
||||
|
||||
native_sysroot = args[0]
|
||||
@@ -75,6 +75,7 @@ class DirectPlugin(ImagerPlugin):
|
||||
|
||||
image_output_dir = args[5]
|
||||
oe_builddir = args[6]
|
||||
compressor = args[7]
|
||||
|
||||
krootfs_dir = cls.__rootfs_dir_to_dict(rootfs_dir)
|
||||
|
||||
@@ -86,6 +87,7 @@ class DirectPlugin(ImagerPlugin):
|
||||
bootimg_dir,
|
||||
kernel_dir,
|
||||
native_sysroot,
|
||||
compressor,
|
||||
creatoropts)
|
||||
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user