From: Ed Bartosh <ed.bartosh@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [wic][PATCH v2 1/9] wic: Add --use-uuid partition option
Date: Fri, 5 Jun 2015 10:17:08 +0300 [thread overview]
Message-ID: <1433488636-4540-2-git-send-email-ed.bartosh@linux.intel.com> (raw)
In-Reply-To: <1433488636-4540-1-git-send-email-ed.bartosh@linux.intel.com>
Added --use-uuid option to the configuration of wks parser.
Processing of this option will be implemented in the following
commits.
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
diff --git a/scripts/lib/wic/kickstart/custom_commands/partition.py b/scripts/lib/wic/kickstart/custom_commands/partition.py
index 5d033bb..7d04738 100644
--- a/scripts/lib/wic/kickstart/custom_commands/partition.py
+++ b/scripts/lib/wic/kickstart/custom_commands/partition.py
@@ -51,6 +51,7 @@ class Wic_PartData(Mic_PartData):
self.no_table = kwargs.get("no-table", False)
self.extra_space = kwargs.get("extra-space", "10M")
self.overhead_factor = kwargs.get("overhead-factor", 1.3)
+ self.use_uuid = kwargs.get("use-uuid", False)
self.source_file = ""
self.size = 0
@@ -65,6 +66,8 @@ class Wic_PartData(Mic_PartData):
retval += " --rootfs-dir=%s" % self.rootfs
if self.no_table:
retval += " --no-table"
+ if self.use_uuid:
+ retval += " --use-uuid"
retval += " --extra-space=%d" % self.extra_space
retval += " --overhead-factor=%f" % self.overhead_factor
@@ -561,4 +564,7 @@ class Wic_Partition(Mic_Partition):
op.add_option("--overhead-factor", dest="overhead_factor",
action="callback", callback=overhead_cb, type="float",
nargs=1, default=1.3)
+ op.add_option("--use-uuid", dest="use_uuid", action="store_true",
+ default=False)
+
return op
--
2.1.4
next prev parent reply other threads:[~2015-06-05 9:10 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-05 7:17 [wic][PATCH v2 0/9] UUID support Ed Bartosh
2015-06-05 7:17 ` Ed Bartosh [this message]
2015-06-05 7:17 ` [wic][PATCH v2 2/9] wic: Generate random uuid for partition Ed Bartosh
2015-06-05 7:17 ` [wic][PATCH v2 3/9] wic: Fix format string Ed Bartosh
2015-06-05 7:17 ` [wic][PATCH v2 4/9] wic: Refactored getting root device name Ed Bartosh
2015-06-05 7:17 ` [wic][PATCH v2 5/9] wic: Add parameter 'uuid' to Image.add_partition method Ed Bartosh
2015-06-05 7:17 ` [wic][PATCH v2 6/9] wic: Set type GUID and UUID for partition Ed Bartosh
2015-06-05 7:17 ` [wic][PATCH v2 7/9] wic: Use partition UUID in directdisk-gpt Ed Bartosh
2015-06-05 7:17 ` [wic][PATCH v2 8/9] wic: oe-selftest: Configure testing of gpt/UUID image Ed Bartosh
2015-06-05 7:17 ` [wic][PATCH v2 9/9] wic: Add help for --part-type and --use-uuid options Ed Bartosh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1433488636-4540-2-git-send-email-ed.bartosh@linux.intel.com \
--to=ed.bartosh@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox