diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/wic/utils/partitionedfs.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/lib/wic/utils/partitionedfs.py b/scripts/lib/wic/utils/partitionedfs.py index 9da4a7f2b4..4170ec1918 100644 --- a/scripts/lib/wic/utils/partitionedfs.py +++ b/scripts/lib/wic/utils/partitionedfs.py | |||
@@ -110,7 +110,8 @@ class Image(object): | |||
110 | 'align': align, # Partition alignment | 110 | 'align': align, # Partition alignment |
111 | 'no_table' : no_table, # Partition does not appear in partition table | 111 | 'no_table' : no_table, # Partition does not appear in partition table |
112 | 'part_type' : part_type, # Partition type | 112 | 'part_type' : part_type, # Partition type |
113 | 'uuid': uuid} # Partition UUID | 113 | 'uuid': uuid, # Partition UUID |
114 | 'system_id': system_id} # Partition system id | ||
114 | 115 | ||
115 | self.__add_partition(part) | 116 | self.__add_partition(part) |
116 | 117 | ||
@@ -310,6 +311,10 @@ class Image(object): | |||
310 | exec_native_cmd("parted -s %s set %d %s on" % \ | 311 | exec_native_cmd("parted -s %s set %d %s on" % \ |
311 | (disk['disk'].device, part['num'], flag_name), | 312 | (disk['disk'].device, part['num'], flag_name), |
312 | self.native_sysroot) | 313 | self.native_sysroot) |
314 | if part['system_id']: | ||
315 | exec_native_cmd("sfdisk --part-type %s %s %s" % \ | ||
316 | (disk['disk'].device, part['num'], part['system_id']), | ||
317 | self.native_sysroot) | ||
313 | 318 | ||
314 | # Parted defaults to enabling the lba flag for fat16 partitions, | 319 | # Parted defaults to enabling the lba flag for fat16 partitions, |
315 | # which causes compatibility issues with some firmware (and really | 320 | # which causes compatibility issues with some firmware (and really |