meta-phosphor: remove exe perms from udev rules

Remove execute permssions from udev rules to avoid errors like:

systemd-udevd[110]: Configuration file /lib/udev/rules.d/70-iio.rules is
marked executable. Please remove executable permission bits. Proceeding
anyway.

Change-Id: I0c203854b942121687175d1a84f93f21ea1b2af2
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/recipes-phosphor/leds/phosphor-led-sysfs_git.bb b/recipes-phosphor/leds/phosphor-led-sysfs_git.bb
index dfacbb7..052aa85 100644
--- a/recipes-phosphor/leds/phosphor-led-sysfs_git.bb
+++ b/recipes-phosphor/leds/phosphor-led-sysfs_git.bb
@@ -24,5 +24,5 @@
 
 do_install_append() {
         install -d ${D}/${base_libdir}/udev/rules.d/
-        install ${WORKDIR}/70-leds.rules ${D}/${base_libdir}/udev/rules.d/
+        install -m 0644 ${WORKDIR}/70-leds.rules ${D}/${base_libdir}/udev/rules.d/
 }
diff --git a/recipes-phosphor/sensors/phosphor-hwmon_git.bb b/recipes-phosphor/sensors/phosphor-hwmon_git.bb
index 4e059bd..3207df4 100644
--- a/recipes-phosphor/sensors/phosphor-hwmon_git.bb
+++ b/recipes-phosphor/sensors/phosphor-hwmon_git.bb
@@ -46,8 +46,8 @@
 do_install_append() {
 
         install -d ${D}/${base_libdir}/udev/rules.d/
-        install ${WORKDIR}/70-hwmon.rules ${D}/${base_libdir}/udev/rules.d/
-        install ${WORKDIR}/70-iio.rules ${D}/${base_libdir}/udev/rules.d/
+        install -m 0644 ${WORKDIR}/70-hwmon.rules ${D}/${base_libdir}/udev/rules.d/
+        install -m 0644 ${WORKDIR}/70-iio.rules ${D}/${base_libdir}/udev/rules.d/
 
         install -d ${D}${bindir}
         install -m 0755 ${WORKDIR}/start_hwmon.sh ${D}${bindir}