diff options
author | Parthiban Nallathambi <pn@denx.de> | 2018-02-20 16:49:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-04 11:35:40 +0000 |
commit | 8eb7e66246cf7c72dc68862f1c287029080a2e8a (patch) | |
tree | a3ee613773e6401274372ebf2dc0e39fcd64e85c /scripts/lib/wic/partition.py | |
parent | 088b3b8c4c041caa73bdcfc2e897bd1d0f4f679b (diff) | |
download | poky-8eb7e66246cf7c72dc68862f1c287029080a2e8a.tar.gz |
wic: Add post operation hook for SourcePlugin
do_post_partition hook is needed if some operations like security signing
the parition needs to be done. source plugins can make use of this to implement
post operatiosn in do_post_partition. do_post_partition is called after
do_prepare_partition if present.
(From OE-Core rev: 5055489b9ab3fda32a285d0d165d080d11a4d432)
Signed-off-by: Parthiban Nallathambi <pn@denx.de>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/partition.py')
-rw-r--r-- | scripts/lib/wic/partition.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/lib/wic/partition.py b/scripts/lib/wic/partition.py index 72f2e2708f..d4558621a9 100644 --- a/scripts/lib/wic/partition.py +++ b/scripts/lib/wic/partition.py | |||
@@ -185,6 +185,9 @@ class Partition(): | |||
185 | plugin.do_prepare_partition(self, srcparams_dict, creator, | 185 | plugin.do_prepare_partition(self, srcparams_dict, creator, |
186 | cr_workdir, oe_builddir, bootimg_dir, | 186 | cr_workdir, oe_builddir, bootimg_dir, |
187 | kernel_dir, rootfs_dir, native_sysroot) | 187 | kernel_dir, rootfs_dir, native_sysroot) |
188 | plugin.do_post_partition(self, srcparams_dict, creator, | ||
189 | cr_workdir, oe_builddir, bootimg_dir, | ||
190 | kernel_dir, rootfs_dir, native_sysroot) | ||
188 | 191 | ||
189 | # further processing required Partition.size to be an integer, make | 192 | # further processing required Partition.size to be an integer, make |
190 | # sure that it is one | 193 | # sure that it is one |