summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYifan Hong2017-08-25 19:55:33 -0500
committerYifan Hong2017-08-28 19:37:33 -0500
commit9a8b1a7cec9f39953001a2f113cb976ae73eb211 (patch)
tree6092d925f5f9717790d06e54614afd505d9bf75e /Android.bp
parent4c34fee9175766bf69b53c4d75ea251ef976185b (diff)
downloadplatform-system-libvintf-9a8b1a7cec9f39953001a2f113cb976ae73eb211.tar.gz
platform-system-libvintf-9a8b1a7cec9f39953001a2f113cb976ae73eb211.tar.xz
platform-system-libvintf-9a8b1a7cec9f39953001a2f113cb976ae73eb211.zip
assemble_vintf: accept arch specific kernel fragments
It is now allowed to provide the following arg: --kernel=3.18:.../android-base.cfg:.../android-base-arm64.cfg assemble_vintf detects the name of these files and sets conditions accordingly. For example, * android-base.cfg refer to common configs (no conditions) * android-base-foo-bar.cfg refer to configs that are conditioned on CONFIG_FOO_BAR being set. Also, android-base.cfg must exist for each version. Test: m system_compatibility_matrix.xml -j Bug: 64124223 Change-Id: Ib852b9f0c3ce6addce18473480f3da2f221f8d92 Merged-In: Ib852b9f0c3ce6addce18473480f3da2f221f8d92
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index 62e9d0d..2b39ad8 100644
--- a/Android.bp
+++ b/Android.bp
@@ -93,7 +93,8 @@ cc_binary_host {
93 name: "assemble_vintf", 93 name: "assemble_vintf",
94 defaults: ["libvintf-defaults"], 94 defaults: ["libvintf-defaults"],
95 shared_libs: [ 95 shared_libs: [
96 "libvintf" 96 "libvintf",
97 "libbase",
97 ], 98 ],
98 srcs: [ 99 srcs: [
99 "assemble_vintf.cpp" 100 "assemble_vintf.cpp"