mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

cmdln.py https://pypi.python.org/pypi/cmdln was used in creator.py to parse image plugin options and arguments. There is no need in such a sofisticated API to do this simple task. Standard option parser optparse.OptionParser can do it just fine. Modified Creator class to work with option parser. Removed cmdln.py from the wic codebase. (From OE-Core rev: 1e5220f74830b99cf8340a4f6977399b5cf49871) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
103 lines
3.1 KiB
Python
103 lines
3.1 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
#
|
|
# Copyright (c) 2013, Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty 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.
|
|
#
|
|
# DESCRIPTION
|
|
# This implements the 'direct' imager plugin class for 'wic'
|
|
#
|
|
# AUTHORS
|
|
# Tom Zanussi <tom.zanussi (at] linux.intel.com>
|
|
#
|
|
|
|
from wic.utils import errors
|
|
from wic.conf import configmgr
|
|
|
|
import wic.imager.direct as direct
|
|
from wic.pluginbase import ImagerPlugin
|
|
|
|
class DirectPlugin(ImagerPlugin):
|
|
"""
|
|
Install a system into a file containing a partitioned disk image.
|
|
|
|
An image file is formatted with a partition table, each partition
|
|
created from a rootfs or other OpenEmbedded build artifact and dd'ed
|
|
into the virtual disk. The disk image can subsequently be dd'ed onto
|
|
media and used on actual hardware.
|
|
"""
|
|
|
|
name = 'direct'
|
|
|
|
@classmethod
|
|
def __rootfs_dir_to_dict(cls, rootfs_dirs):
|
|
"""
|
|
Gets a string that contain 'connection=dir' splitted by
|
|
space and return a dict
|
|
"""
|
|
krootfs_dir = {}
|
|
for rootfs_dir in rootfs_dirs.split(' '):
|
|
k, v = rootfs_dir.split('=')
|
|
krootfs_dir[k] = v
|
|
|
|
return krootfs_dir
|
|
|
|
@classmethod
|
|
def do_create(cls, opts, *args):
|
|
"""
|
|
Create direct image, called from creator as 'direct' cmd
|
|
"""
|
|
if len(args) != 8:
|
|
raise errors.Usage("Extra arguments given")
|
|
|
|
native_sysroot = args[0]
|
|
kernel_dir = args[1]
|
|
bootimg_dir = args[2]
|
|
rootfs_dir = args[3]
|
|
|
|
creatoropts = configmgr.create
|
|
ksconf = args[4]
|
|
|
|
image_output_dir = args[5]
|
|
oe_builddir = args[6]
|
|
compressor = args[7]
|
|
|
|
krootfs_dir = cls.__rootfs_dir_to_dict(rootfs_dir)
|
|
|
|
configmgr._ksconf = ksconf
|
|
|
|
creator = direct.DirectImageCreator(oe_builddir,
|
|
image_output_dir,
|
|
krootfs_dir,
|
|
bootimg_dir,
|
|
kernel_dir,
|
|
native_sysroot,
|
|
compressor,
|
|
creatoropts)
|
|
|
|
try:
|
|
creator.create()
|
|
creator.assemble()
|
|
creator.finalize()
|
|
creator.print_outimage_info()
|
|
|
|
except errors.CreatorError:
|
|
raise
|
|
finally:
|
|
creator.cleanup()
|
|
|
|
return 0
|