2 # ex:ts=4:sw=4:sts=4:et
3 # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
5 # Copyright (C) 2003 Chris Larson
7 # This program is free software; you can redistribute it and/or modify it under
8 # the terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # This program is distributed in the hope that it will be useful, but WITHOUT
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # this program; if not, write to the Free Software Foundation, Inc., 59 Temple
18 # Place, Suite 330, Boston, MA 02111-1307 USA.
21 sys.path.insert(0,os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
28 cfg_oespawn = data.init()
30 bb.msg.set_debug_level(0)
33 print "Usage: bbimage [options ...]"
34 print "Creates an image for a target device from a root filesystem,"
35 print "obeying configuration parameters from the BitBake"
36 print "configuration files, thereby easing handling of deviceisms."
38 print " %s\t\t%s" % ("-r [arg], --root [arg]", "root directory (default=${IMAGE_ROOTFS})")
39 print " %s\t\t%s" % ("-t [arg], --type [arg]", "image type (jffs2[default], cramfs)")
40 print " %s\t\t%s" % ("-n [arg], --name [arg]", "image name (override IMAGE_NAME variable)")
41 print " %s\t\t%s" % ("-v, --version", "output version information and exit")
45 print "BitBake Build Tool Core version %s" % bb.__version__
46 print "BBImage version %s" % __version__
48 def emit_bb(d, base_d = {}):
61 (opts, args) = getopt.getopt(sys.argv[1:], 'vr:t:e:n:', [ 'version', 'root=', 'type=', 'bbfile=', 'name=' ])
62 except getopt.GetoptError:
66 opthash = getopthash(opts)
68 if '--version' in opthash or '-v' in opthash:
73 cfg_bb = parse.handle(os.path.join('conf', 'bitbake.conf'), cfg_bb)
75 fatal("Unable to open bitbake.conf")
79 fatal("Unable to open/parse %s" % os.path.join('conf', 'bitbake.conf'))
85 if '--root' in opthash:
86 rootfs = opthash['--root']
88 rootfs = opthash['-r']
90 if '--type' in opthash:
91 type = opthash['--type']
95 if '--bbfile' in opthash:
96 extra_files.append(opthash['--bbfile'])
98 extra_files.append(opthash['-e'])
100 for f in extra_files:
102 cfg_bb = parse.handle(f, cfg_bb)
104 print "unable to open %s" % f
107 rootfs = data.getVar('IMAGE_ROOTFS', cfg_bb, 1)
110 bb.fatal("IMAGE_ROOTFS not defined")
112 data.setVar('IMAGE_ROOTFS', rootfs, cfg_bb)
114 from copy import copy, deepcopy
115 localdata = data.createCopy(cfg_bb)
117 overrides = data.getVar('OVERRIDES', localdata)
119 bb.fatal("OVERRIDES not defined.")
120 data.setVar('OVERRIDES', '%s:%s' % (overrides, type), localdata)
121 data.update_data(localdata)
122 data.setVar('OVERRIDES', overrides, localdata)
125 data.setVar('IMAGE_NAME', opthash['-n'], localdata)
126 if '--name' in opthash:
127 data.setVar('IMAGE_NAME', opthash['--name'], localdata)
129 topdir = data.getVar('TOPDIR', localdata, 1) or os.getcwd()
131 cmd = data.getVar('IMAGE_CMD', localdata, 1)
133 bb.fatal("IMAGE_CMD not defined")
135 outdir = data.getVar('DEPLOY_DIR_IMAGE', localdata, 1)
137 bb.fatal('DEPLOY_DIR_IMAGE not defined')
140 #depends = data.getVar('IMAGE_DEPENDS', localdata, 1) or ""
142 # bb.note("Spawning bbmake to satisfy dependencies: %s" % depends)
143 # ret = os.system('bbmake %s' % depends)
145 # bb.error("executing bbmake to satisfy dependencies")
147 bb.note("Executing %s" % cmd)
148 data.setVar('image_cmd', cmd, localdata)
149 data.setVarFlag('image_cmd', 'func', 1, localdata)
151 bb.build.exec_func('image_cmd', localdata)
152 except bb.build.FuncFailed:
154 #ret = os.system(cmd)