diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-07-17 10:04:04 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-21 12:36:35 +0100 |
commit | 5689139b3cd862e2df49f6b21171f513e8a46c60 (patch) | |
tree | 896b0faddf29a1962f203cdbf9e99d69e8fba8ab | |
parent | 27202954ce7abda22f7e81c2d72a80f0fa7006d8 (diff) | |
download | openembedded-core-5689139b3cd862e2df49f6b21171f513e8a46c60.tar.gz openembedded-core-5689139b3cd862e2df49f6b21171f513e8a46c60.tar.bz2 openembedded-core-5689139b3cd862e2df49f6b21171f513e8a46c60.zip |
wic: fix calculation of partition number
Total number of partitions should be taken into account when calculating
real partition number for msdos partition table. The number can be
different for the 4th partition: it can be 4 if there are 4 partitions in
the table and 5 if there are more than 4 partitions in the table. In the
latter case number 4 is occupied by extended partition.
[YOCTO #11790]
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | scripts/lib/wic/plugins/imager/direct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/wic/plugins/imager/direct.py b/scripts/lib/wic/plugins/imager/direct.py index aa9cc9f4e3..f20d8433f1 100644 --- a/scripts/lib/wic/plugins/imager/direct.py +++ b/scripts/lib/wic/plugins/imager/direct.py @@ -313,7 +313,7 @@ class PartitionedImage(): part.realnum = 0 else: realnum += 1 - if self.ptable_format == 'msdos' and realnum > 3: + if self.ptable_format == 'msdos' and realnum > 3 and len(partitions) > 4: part.realnum = realnum + 1 continue part.realnum = realnum |