diff options
| author | 2019-12-08 02:06:24 +0900 | |
|---|---|---|
| committer | 2019-12-08 02:06:24 +0900 | |
| commit | 53ae3341302a8a204761ceedd2d24887fb76c096 (patch) | |
| tree | 70285ca8c4d3cb60b5cc863b00d46e07709f1752 | |
| parent | 667039f404c2455588704a7b04f5de3dbeebb3ee (diff) | |
add apex_pubkey and apex_manifest.pb to the bundle module
The two were missing.
Bug: 145678884
Test: m out/dist/mainline_modules_arm64/com.android.tzdata-base.zip and
inspect the content
Change-Id: I7e244561f59e5adce56b6a64f363a413faa106f2
| -rw-r--r-- | apex/builder.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apex/builder.go b/apex/builder.go index 0232c1e4e..aef76facb 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -141,6 +141,8 @@ var ( Command: `${zip2zip} -i $in -o $out ` + `apex_payload.img:apex/${abi}.img ` + `apex_manifest.json:root/apex_manifest.json ` + + `apex_pubkey:root/apex_pubkey ` + + `apex_manifest.pb:root/apex_manifest.pb ` + `AndroidManifest.xml:manifest/AndroidManifest.xml ` + `assets/NOTICE.html.gz:assets/NOTICE.html.gz`, CommandDeps: []string{"${zip2zip}"}, |