Merge "BuildBootImage: Add secondstage image support [DO NOT MERGE]" into lmp-dev

This commit is contained in:
Pat Tjin
2014-08-14 18:37:06 +00:00
committed by Android (Google) Code Review

View File

@@ -303,6 +303,11 @@ def BuildBootableImage(sourcedir, fs_config_file, info_dict=None):
cmd = [mkbootimg, "--kernel", os.path.join(sourcedir, "kernel")]
fn = os.path.join(sourcedir, "second")
if os.access(fn, os.F_OK):
cmd.append("--second")
cmd.append(fn)
fn = os.path.join(sourcedir, "cmdline")
if os.access(fn, os.F_OK):
cmd.append("--cmdline")