diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-04-22 12:32:02 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-29 07:58:44 +0100 |
commit | 514a87877e61d63626c21a61a1824c131031489d (patch) | |
tree | 368738886e4758c1095c9f5de50c7fcdfb0f8801 /scripts/lib/wic/imager/direct.py | |
parent | 8d747c8b438ea7cf24e924a537bf76e8bbc8445e (diff) | |
download | poky-514a87877e61d63626c21a61a1824c131031489d.tar.gz |
wic: add system_id argument to Image.add_partition
Added new argument to add_partition call to pass partition
system id down the stack.
[YOCTO #9096]
(From OE-Core rev: f2733df697192c0010c17b7bbb02f8679cb8f313)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/imager/direct.py')
-rw-r--r-- | scripts/lib/wic/imager/direct.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/wic/imager/direct.py b/scripts/lib/wic/imager/direct.py index a1b4249651..1937042e1a 100644 --- a/scripts/lib/wic/imager/direct.py +++ b/scripts/lib/wic/imager/direct.py | |||
@@ -267,7 +267,8 @@ class DirectImageCreator(BaseImageCreator): | |||
267 | align=part.align, | 267 | align=part.align, |
268 | no_table=part.no_table, | 268 | no_table=part.no_table, |
269 | part_type=part.part_type, | 269 | part_type=part.part_type, |
270 | uuid=part.uuid) | 270 | uuid=part.uuid, |
271 | system_id=part.system_id) | ||
271 | 272 | ||
272 | if fstab_path: | 273 | if fstab_path: |
273 | shutil.move(fstab_path + ".orig", fstab_path) | 274 | shutil.move(fstab_path + ".orig", fstab_path) |