* commit 'b75fe4696e847ef49aa9b11693243c00de497808': Fix emulator builds
This commit is contained in:
commit
1343ec169c
1 changed files with 6 additions and 3 deletions
|
@ -342,9 +342,12 @@ def GetBootableImage(name, prebuilt_name, unpack_dir, tree_subdir,
|
|||
else:
|
||||
print "building image from target_files %s..." % (tree_subdir,)
|
||||
fs_config = "META/" + tree_subdir.lower() + "_filesystem_config.txt"
|
||||
return File(name, BuildBootableImage(os.path.join(unpack_dir, tree_subdir),
|
||||
data = BuildBootableImage(os.path.join(unpack_dir, tree_subdir),
|
||||
os.path.join(unpack_dir, fs_config),
|
||||
info_dict))
|
||||
info_dict)
|
||||
if data:
|
||||
return File(name, data)
|
||||
return None
|
||||
|
||||
|
||||
def UnzipTemp(filename, pattern=None):
|
||||
|
|
Loading…
Reference in a new issue