Never build bootloader with dynamic partition support

Our Android build is adjusted so it doesn't require any non-compatible
changes in the bootloader. So when building the bootloader in a tree
with dynamic partition support we still need to build it without dynamic
partition support so that Android can boot correctly.

Issue: FP3-A11#40
Change-Id: I908fb7625aca356292ae0711fe346ab3071e6615
diff --git a/AndroidBoot.mk b/AndroidBoot.mk
index 4644514..12fa301 100644
--- a/AndroidBoot.mk
+++ b/AndroidBoot.mk
@@ -59,11 +59,8 @@
   VERIFIED_BOOT_2 := VERIFIED_BOOT_2=0
 endif
 
-ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true)
-  DYNAMIC_PARTITION_SUPPORT := DYNAMIC_PARTITION_SUPPORT=1
-else
-  DYNAMIC_PARTITION_SUPPORT := DYNAMIC_PARTITION_SUPPORT=0
-endif
+# Always build without full dynamic partition support
+DYNAMIC_PARTITION_SUPPORT := DYNAMIC_PARTITION_SUPPORT=0
 
 ifeq ($(PRODUCT_VIRTUAL_AB_OTA),true)
   VIRTUAL_AB_OTA := VIRTUAL_AB_OTA=1