diff options
author | Maciej Borzecki <maciej.borzecki@rndity.com> | 2016-11-10 13:18:35 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-15 15:19:55 +0000 |
commit | 2eeed4838b7e1941b9dded9679c97d87e38e18d6 (patch) | |
tree | 5dac8d2fac527d8c309a6d7383b31c150cd5d331 /scripts/lib/wic/utils/partitionedfs.py | |
parent | 294410cce3569fa4c29c2bbc300435303fee2050 (diff) | |
download | poky-2eeed4838b7e1941b9dded9679c97d87e38e18d6.tar.gz |
wic: fix function comment typos
Fix typos in documentation of Image.add_partition() and
Image.__format_disks().
(From OE-Core rev: f5bf7bf253224912c66bab89f48ff63a73e0d698)
Signed-off-by: Maciej Borzecki <maciej.borzecki@rndity.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/utils/partitionedfs.py')
-rw-r--r-- | scripts/lib/wic/utils/partitionedfs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/wic/utils/partitionedfs.py b/scripts/lib/wic/utils/partitionedfs.py index cb03009fc7..9e76487844 100644 --- a/scripts/lib/wic/utils/partitionedfs.py +++ b/scripts/lib/wic/utils/partitionedfs.py | |||
@@ -92,7 +92,7 @@ class Image(): | |||
92 | def add_partition(self, size, disk_name, mountpoint, source_file=None, fstype=None, | 92 | def add_partition(self, size, disk_name, mountpoint, source_file=None, fstype=None, |
93 | label=None, fsopts=None, boot=False, align=None, no_table=False, | 93 | label=None, fsopts=None, boot=False, align=None, no_table=False, |
94 | part_type=None, uuid=None, system_id=None): | 94 | part_type=None, uuid=None, system_id=None): |
95 | """ Add the next partition. Prtitions have to be added in the | 95 | """ Add the next partition. Partitions have to be added in the |
96 | first-to-last order. """ | 96 | first-to-last order. """ |
97 | 97 | ||
98 | ks_pnum = len(self.partitions) | 98 | ks_pnum = len(self.partitions) |
@@ -292,7 +292,7 @@ class Image(): | |||
292 | # even number of sectors. | 292 | # even number of sectors. |
293 | if part['mountpoint'] == "/boot" and part['fstype'] in ["vfat", "msdos"] \ | 293 | if part['mountpoint'] == "/boot" and part['fstype'] in ["vfat", "msdos"] \ |
294 | and part['size'] % 2: | 294 | and part['size'] % 2: |
295 | msger.debug("Substracting one sector from '%s' partition to " \ | 295 | msger.debug("Subtracting one sector from '%s' partition to " \ |
296 | "get even number of sectors for the partition" % \ | 296 | "get even number of sectors for the partition" % \ |
297 | part['mountpoint']) | 297 | part['mountpoint']) |
298 | part['size'] -= 1 | 298 | part['size'] -= 1 |