Omni: Add LowerFPS Bootanimantion

Some devices like TF101 can only take a 100FPS boot animation
any higher fps than that just causes a black screen making
the user think it is bootlooping
this fixes that

Board flag = BOARD_NEEDS_LOWFPS_BOOTANI := true

Change-Id: I34c4ce4ee9177151cc2a7f5efd45f3b3997af91b
diff --git a/config/common.mk b/config/common.mk
index c3d39a3..acaf090 100644
--- a/config/common.mk
+++ b/config/common.mk
@@ -1,8 +1,13 @@
 PRODUCT_BRAND ?= omni
 
-# bootanimation
+# bootanimation (Some devices cant go over 100fps for a bootani)
+ifeq ($(BOARD_NEEDS_LOWFPS_BOOTANI),)
+PRODUCT_COPY_FILES += \
+    vendor/omni/prebuilt/bootanimation/lowfps-bootanimation.zip:system/media/bootanimation.zip
+else
 PRODUCT_COPY_FILES += \
     vendor/omni/prebuilt/bootanimation/bootanimation.zip:system/media/bootanimation.zip
+endif
 
 ifeq ($(PRODUCT_GMS_CLIENTID_BASE),)
 PRODUCT_PROPERTY_OVERRIDES += \
diff --git a/prebuilt/bootanimation/lowfps-bootanimation.zip b/prebuilt/bootanimation/lowfps-bootanimation.zip
new file mode 100644
index 0000000..5c1d0b9
--- /dev/null
+++ b/prebuilt/bootanimation/lowfps-bootanimation.zip
Binary files differ