aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/lib/image/engine.py
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@linux.intel.com>2013-09-19 04:32:19 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-10-01 22:53:52 +0100
commitf87acc5e59d3c2c39ff171b5557977dab4c8f4a6 (patch)
treeef0017d066a319e38aba507ef0ff85d1d863a17a /scripts/lib/image/engine.py
parent31f0360f1fd4ebc9dfcaed42d1c50d2448b4632e (diff)
downloadopenembedded-core-contrib-f87acc5e59d3c2c39ff171b5557977dab4c8f4a6.tar.gz
wic: Add OpenEmbedded-specific implementation
Reuses the mic/livecd infrastructure but heavily subclasses and modifies it to adapt to the special needs of building images from existing OpenEmbedded build artifacts. In addition to the OE-specific mic objects and modifications to the underlying infrastructure, this adds a mechanism to allow OE kickstart files to be 'canned' and made available to users via the 'wic list images' command. Two initial OE kickstart files have been added as canned .wks files: directdisk, which implements the same thing as the images created by directdisk.bbclass, and mkefidisk, which can essentially be used as a replacement for mkefidisk.sh. Of course, since creation of these images are now driven by .wks files rather than being hard-coded into class files or scripts, they can be easily modified to generate different variations on those images. They also don't require root priveleges, since they don't use mount to create the images. They don't however write to media like mkefidisk.sh does, but rather create images that can be written onto media. 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>
Diffstat (limited to 'scripts/lib/image/engine.py')
-rw-r--r--scripts/lib/image/engine.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py
index a9b530cc04..be29222df1 100644
--- a/scripts/lib/image/engine.py
+++ b/scripts/lib/image/engine.py
@@ -37,6 +37,12 @@ import subprocess
import shutil
import os, sys, errno
+from mic import msger, creator
+from mic.utils import cmdln, misc, errors
+from mic.conf import configmgr
+from mic.plugin import pluginmgr
+from mic.__version__ import VERSION
+from mic.utils.oe.misc import *
def verify_build_env():
@@ -216,6 +222,24 @@ def wic_create(args, wks_file, rootfs_dir, bootimg_dir, kernel_dir,
print "BUILDDIR not found, exiting. (Did you forget to source oe-init-build-env?)"
sys.exit(1)
+ direct_args = list()
+ direct_args.insert(0, oe_builddir)
+ direct_args.insert(0, image_output_dir)
+ direct_args.insert(0, wks_file)
+ direct_args.insert(0, rootfs_dir)
+ direct_args.insert(0, bootimg_dir)
+ direct_args.insert(0, kernel_dir)
+ direct_args.insert(0, native_sysroot)
+ direct_args.insert(0, hdddir)
+ direct_args.insert(0, staging_data_dir)
+ direct_args.insert(0, "direct")
+
+ cr = creator.Creator()
+
+ cr.main(direct_args)
+
+ print "\nThe image(s) were created using OE kickstart file:\n %s" % wks_file
+
def wic_list(args, scripts_path, properties_file):
"""