generic-poky/scripts/lib/mic/3rdparty/pykickstart/commands/method.py

187 lines
6.4 KiB
Python
Raw Normal View History

wic: Add mic w/pykickstart This is the starting point for the implemention described in [YOCTO 3847] which came to the conclusion that it would make sense to use kickstart syntax to implement image creation in OpenEmbedded. I subsequently realized that there was an existing tool that already implemented image creation using kickstart syntax, the Tizen/Meego mic tool. As such, it made sense to use that as a starting point - this commit essentially just copies the relevant Python code from the MIC tool to the scripts/lib dir, where it can be accessed by the previously created wic tool. Most of this will be removed or renamed by later commits, since we're initially focusing on partitioning only. Care should be taken so that we can easily add back any additional functionality should we decide later to expand the tool, though (we may also want to contribute our local changes to the mic tool to the Tizen project if it makes sense, and therefore should avoid gratuitous changes to the original code if possible). Added the /mic subdir from Tizen mic repo as a starting point: git clone git://review.tizen.org/tools/mic.git For reference, the top commit: commit 20164175ddc234a17b8a12c33d04b012347b1530 Author: Gui Chen <gui.chen@intel.com> Date: Sun Jun 30 22:32:16 2013 -0400 bump up to 0.19.2 Also added the /plugins subdir, moved to under the /mic subdir (to match the default plugin_dir location in mic.conf.in, which was renamed to yocto-image.conf (moved and renamed by later patches) and put into /scripts. (From OE-Core rev: 31f0360f1fd4ebc9dfcaed42d1c50d2448b4632e) Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2013-08-24 15:31:34 +00:00
#
# Chris Lumens <clumens@redhat.com>
#
# Copyright 2007, 2009 Red Hat, Inc.
#
# This copyrighted material is made available to anyone wishing to use, modify,
# copy, or redistribute it subject to the terms and conditions of the GNU
# General Public License v.2. This program is distributed in the hope that it
# will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
# implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat
# trademarks that are incorporated in the source code or documentation are not
# subject to the GNU General Public License and may only be used or replicated
# with the express permission of Red Hat, Inc.
#
from pykickstart.base import *
from pykickstart.errors import *
from pykickstart.options import *
import gettext
_ = lambda x: gettext.ldgettext("pykickstart", x)
class FC3_Method(KickstartCommand):
removedKeywords = KickstartCommand.removedKeywords
removedAttrs = KickstartCommand.removedAttrs
def __init__(self, writePriority=0, *args, **kwargs):
KickstartCommand.__init__(self, writePriority, *args, **kwargs)
self.method = kwargs.get("method", "")
# Set all these attributes so calls to this command's __call__
# method can set them. However we don't want to provide them as
# arguments to __init__ because method is special.
self.biospart = None
self.partition = None
self.server = None
self.dir = None
self.url = None
def __str__(self):
retval = KickstartCommand.__str__(self)
if self.method == "cdrom":
retval += "# Use CDROM installation media\ncdrom\n"
elif self.method == "harddrive":
msg = "# Use hard drive installation media\nharddrive --dir=%s" % self.dir
if self.biospart is not None:
retval += msg + " --biospart=%s\n" % self.biospart
else:
retval += msg + " --partition=%s\n" % self.partition
elif self.method == "nfs":
retval += "# Use NFS installation media\nnfs --server=%s --dir=%s\n" % (self.server, self.dir)
elif self.method == "url":
retval += "# Use network installation\nurl --url=\"%s\"\n" % self.url
return retval
def _getParser(self):
op = KSOptionParser()
# method = "cdrom" falls through to the return
if self.currentCmd == "harddrive":
op.add_option("--biospart", dest="biospart")
op.add_option("--partition", dest="partition")
op.add_option("--dir", dest="dir", required=1)
elif self.currentCmd == "nfs":
op.add_option("--server", dest="server", required=1)
op.add_option("--dir", dest="dir", required=1)
elif self.currentCmd == "url":
op.add_option("--url", dest="url", required=1)
return op
def parse(self, args):
self.method = self.currentCmd
op = self._getParser()
(opts, extra) = op.parse_args(args=args, lineno=self.lineno)
self._setToSelf(op, opts)
if self.currentCmd == "harddrive":
if self.biospart is None and self.partition is None or \
self.biospart is not None and self.partition is not None:
raise KickstartValueError, formatErrorMsg(self.lineno, msg=_("One of biospart or partition options must be specified."))
return self
class FC6_Method(FC3_Method):
removedKeywords = FC3_Method.removedKeywords
removedAttrs = FC3_Method.removedAttrs
def __init__(self, writePriority=0, *args, **kwargs):
FC3_Method.__init__(self, writePriority, *args, **kwargs)
# Same reason for this attribute as the comment in FC3_Method.
self.opts = None
def __str__(self):
retval = KickstartCommand.__str__(self)
if self.method == "cdrom":
retval += "# Use CDROM installation media\ncdrom\n"
elif self.method == "harddrive":
msg = "# Use hard drive installation media\nharddrive --dir=%s" % self.dir
if self.biospart is not None:
retval += msg + " --biospart=%s\n" % self.biospart
else:
retval += msg + " --partition=%s\n" % self.partition
elif self.method == "nfs":
retval += "# Use NFS installation media\nnfs --server=%s --dir=%s" % (self.server, self.dir)
if self.opts is not None:
retval += " --opts=\"%s\"" % self.opts
retval += "\n"
elif self.method == "url":
retval += "# Use network installation\nurl --url=\"%s\"\n" % self.url
return retval
def _getParser(self):
op = FC3_Method._getParser(self)
if self.currentCmd == "nfs":
op.add_option("--opts", dest="opts")
return op
class F13_Method(FC6_Method):
removedKeywords = FC6_Method.removedKeywords
removedAttrs = FC6_Method.removedAttrs
def __init__(self, *args, **kwargs):
FC6_Method.__init__(self, *args, **kwargs)
# And same as all the other __init__ methods.
self.proxy = ""
def __str__(self):
retval = FC6_Method.__str__(self)
if self.method == "url" and self.proxy:
retval = retval.strip()
retval += " --proxy=\"%s\"\n" % self.proxy
return retval
def _getParser(self):
op = FC6_Method._getParser(self)
if self.currentCmd == "url":
op.add_option("--proxy")
return op
class F14_Method(F13_Method):
removedKeywords = F13_Method.removedKeywords
removedAttrs = F13_Method.removedAttrs
def __init__(self, *args, **kwargs):
F13_Method.__init__(self, *args, **kwargs)
self.noverifyssl = False
def __str__(self):
retval = F13_Method.__str__(self)
if self.method == "url" and self.noverifyssl:
retval = retval.strip()
retval += " --noverifyssl\n"
return retval
def _getParser(self):
op = F13_Method._getParser(self)
if self.currentCmd == "url":
op.add_option("--noverifyssl", action="store_true", default=False)
return op
RHEL6_Method = F14_Method