rb5.mk: Skip installing Venus driver modules for now

Having trouble with Venus drivers on RB5 a lot lately.
Fw loading for Venus is broken, to begin with, ever since
the FW_LOADER_USER_HELPER_FALLBACK kernel config is dropped
from gki_defconfig in android-mainline kernel. And even
though the fw loading will fail, the driver still create
/dev/video{0,1} nodes which are highly unstable and cause
kernel to panic at times.

So lets skip installing Venus driver modules for the time
being, while we wait for a viable fix to land upstream.

Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
Change-Id: I67d7f51ff29ad5f5d46e03f958cc401c4f541a42
diff --git a/rb5.mk b/rb5.mk
index 06e648e..dc70674 100644
--- a/rb5.mk
+++ b/rb5.mk
@@ -21,6 +21,7 @@
 ifeq ($(RB5_USES_GKI), true)
   RB5_MODS := $(wildcard $(RB5_KERNEL_DIR)/*.ko)
   ifneq ($(RB5_MODS),)
-    BOARD_VENDOR_RAMDISK_KERNEL_MODULES += $(RB5_MODS)
+    RB5_SKIP_MODS := %/venus-core.ko %/venus-dec.ko %/venus-enc.ko
+    BOARD_VENDOR_RAMDISK_KERNEL_MODULES := $(filter-out $(RB5_SKIP_MODS),$(RB5_MODS))
   endif
 endif