Merge "BuildBootImage: Add secondstage image support"

This commit is contained in:
Ying Wang 2014-07-31 17:05:36 +00:00 committed by Gerrit Code Review
commit 38868b9bed
1 changed files with 5 additions and 0 deletions

View File

@ -292,6 +292,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")