#!/system/bin/sh

model=`getprop ro.product.model`

if [ "$model" = "LGLS740" ] || [ "$model" = "LGLS740" ]; then
	mount -o remount,rw /system
	chmod 000 /system/etc/permissions/android.hardware.nfc.xml
	chmod 000 /system/etc/permissions/android.hardware.nfc.hce.xml
	chmod 000 /system/lib/hw/nfc.msm8226.so
	chmod 000 /system/app/Nfc.apk
	mount -o remount,ro /system
fi
