utils/gpt_parser.py: fix partitions names
authorArtem Bityutskiy <artem.bityutskiy@intel.com>
Mon, 9 Dec 2013 10:23:36 +0000 (12:23 +0200)
committerArtem Bityutskiy <artem.bityutskiy@intel.com>
Mon, 9 Dec 2013 11:58:35 +0000 (13:58 +0200)
commit519f89a5518cb24806e0cb10d466c7347dab7597
tree777be0d73da7edd5a4b2c82d0deccbf3db44298c
parentb97c30a6e565f0977417168d502e04cec535a226
utils/gpt_parser.py: fix partitions names

This patch fixes https://bugs.tizen.org/jira/browse/TIVI-1727.

The problem is that we are using 'UTF-16' encoder name, and it adds BOM
(http://en.wikipedia.org/wiki/Byte_order_mark#UTF-16), and BOM breaks
tools like parted.

The GPT spec says that the partition name is UCS-16 Little Endian, so fix this
by using 'UTF-16LE' instead, which will not add BOM.

I've verified that this fixes TIVI-1727 indeed.

Change-Id: If2fff219177bed877873512457b6355dd0118011
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@intel.com>
mic/utils/gpt_parser.py