wic: set partition system id

Used sfdisk to set partition system id if --system-id parameter
is used for a partition in wks file.

[YOCTO #9096]

(From OE-Core rev: a1f7f7e61fd20fb6319825648930f7b6aa0e0cee)

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>
This commit is contained in:
Ed Bartosh 2016-04-22 12:32:03 +03:00 committed by Richard Purdie
parent 514a87877e
commit 5bc1e42b03
1 changed files with 6 additions and 1 deletions

View File

@ -110,7 +110,8 @@ class Image(object):
'align': align, # Partition alignment
'no_table' : no_table, # Partition does not appear in partition table
'part_type' : part_type, # Partition type
'uuid': uuid} # Partition UUID
'uuid': uuid, # Partition UUID
'system_id': system_id} # Partition system id
self.__add_partition(part)
@ -310,6 +311,10 @@ class Image(object):
exec_native_cmd("parted -s %s set %d %s on" % \
(disk['disk'].device, part['num'], flag_name),
self.native_sysroot)
if part['system_id']:
exec_native_cmd("sfdisk --part-type %s %s %s" % \
(disk['disk'].device, part['num'], part['system_id']),
self.native_sysroot)
# Parted defaults to enabling the lba flag for fat16 partitions,
# which causes compatibility issues with some firmware (and really