Revert "Include consumerir feature, disable dynamically if not present"

This reverts commit 1936b6256e0fd3d58601f425372f5f680d192dd5.

Many devices are not booting because of this, saying the feature is
present, but not the HAL.
I'm unsure why yet, but this feature is not worth the trouble.
diff --git a/base.mk b/base.mk
index 4dc6810..62f29fc 100644
--- a/base.mk
+++ b/base.mk
@@ -1,8 +1,8 @@
 #Huawei devices don't declare fingerprint and telephony hardware feature
+#TODO: Proper detection
 PRODUCT_COPY_FILES := \
 	frameworks/native/data/etc/android.hardware.fingerprint.xml:system/etc/permissions/android.hardware.fingerprint.xml \
-	frameworks/native/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
-	frameworks/native/data/etc/android.hardware.consumerir.xml:system/etc/permissions/android.hardware.consumerir.xml
+	frameworks/native/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml
 
 #Use a more decent APN config
 PRODUCT_COPY_FILES += \
diff --git a/rw-system.sh b/rw-system.sh
index 8e9b5ef..9b4c3b6 100644
--- a/rw-system.sh
+++ b/rw-system.sh
@@ -63,10 +63,6 @@
     mount -o bind system/phh/empty /system/etc/permissions/android.hardware.fingerprint.xml
 fi
 
-if ! grep android.hardware.ir /vendor/manifest.xml;then
-    mount -o bind system/phh/empty /system/etc/permissions/android.hardware.consumerir.xml
-fi
-
 if getprop ro.hardware |grep -qF qcom && [ -f /sys/class/backlight/panel0-backlight/max_brightness ] && \
         grep -qvE '^255$' /sys/class/backlight/panel0-backlight/max_brightness;then
     setprop persist.sys.qcom-brightness $(cat /sys/class/backlight/panel0-backlight/max_brightness)