66 lines
2.3 KiB
Python
Executable File
66 lines
2.3 KiB
Python
Executable File
# Copyright (C) 2012 Colin Walters <walters@verbum.org>
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library 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
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
import os,sys,subprocess,tempfile,re,shutil
|
|
import argparse
|
|
import time
|
|
import urlparse
|
|
import json
|
|
from StringIO import StringIO
|
|
|
|
from . import builtins
|
|
from .ostbuildlog import log, fatal
|
|
from . import ostbuildrc
|
|
from . import privileged_subproc
|
|
|
|
class OstbuildDeployQemu(builtins.Builtin):
|
|
name = "deploy-qemu"
|
|
short_description = "Extract data from shadow repository to qemu"
|
|
|
|
def __init__(self):
|
|
builtins.Builtin.__init__(self)
|
|
|
|
def execute(self, argv):
|
|
parser = argparse.ArgumentParser(description=self.short_description)
|
|
parser.add_argument('--prefix')
|
|
parser.add_argument('--snapshot')
|
|
parser.add_argument('targets', nargs='*')
|
|
|
|
args = parser.parse_args(argv)
|
|
self.args = args
|
|
|
|
self.parse_config()
|
|
self.parse_snapshot(args.prefix, args.snapshot)
|
|
|
|
if len(args.targets) > 0:
|
|
targets = args.targets
|
|
else:
|
|
targets = []
|
|
prefix = self.snapshot['prefix']
|
|
for target_component_type in ['runtime', 'devel']:
|
|
for architecture in self.snapshot['architectures']:
|
|
name = '%s-%s-%s' % (prefix, architecture, target_component_type)
|
|
targets.append(name)
|
|
|
|
helper = privileged_subproc.PrivilegedSubprocess()
|
|
shadow_path = os.path.join(self.workdir, 'shadow-repo')
|
|
child_args = ['ostbuild', 'privhelper-deploy-qemu', shadow_path]
|
|
child_args.extend(targets)
|
|
helper.spawn_sync(child_args)
|
|
|
|
builtins.register(OstbuildDeployQemu)
|