Define skeleton code of vmnic(Virtual Machine Network Interface Creator)
Purpose of this change is to define skeleton code of vmnic, so that
com.android.virt APEX contain the initial version of vmnic rust binary
with flag guarding. Vmnic called by other components is the scope of
following change, not this one.
Bug: 340376951
Test: adb shell ls /apex/com.android.virt/bin
Change-Id: Ic389944ecf4a98568a4d1771778844dbadeb2bf3
diff --git a/Android.bp b/Android.bp
index dcf67dd..3b6b8b5 100644
--- a/Android.bp
+++ b/Android.bp
@@ -27,6 +27,7 @@
"release_avf_enable_dice_changes",
"release_avf_enable_llpvm_changes",
"release_avf_enable_multi_tenant_microdroid_vm",
+ "release_avf_enable_network",
"release_avf_enable_remote_attestation",
"release_avf_enable_vendor_modules",
"release_avf_enable_virt_cpufreq",
@@ -52,6 +53,9 @@
release_avf_enable_multi_tenant_microdroid_vm: {
cfgs: ["multi_tenant"],
},
+ release_avf_enable_network: {
+ cfgs: ["network"],
+ },
release_avf_enable_remote_attestation: {
cfgs: ["remote_attestation"],
},