meta-ibm: Add send_event_logs_to_host setting

This will be used so that during manufacturing test the PEL (Platform
Event Log) code that runs inside phosphor-log-manager can be told not to
send PELs to the host as that is not desired in some cases.

The D-Bus path is: /xyz/openbmc_project/logging/send_event_logs_to_host
and it uses the xyz.openbmc_project.Object.Enable interface that
provides an Enabled property.  The default value is Enabled = true.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: Ic8a78849228f5e4071904e148cf759eecc6c016c
diff --git a/recipes-phosphor/settings/phosphor-settings-manager/ibm_settings.override.yml b/recipes-phosphor/settings/phosphor-settings-manager/ibm_settings.override.yml
new file mode 100644
index 0000000..33a1ec7
--- /dev/null
+++ b/recipes-phosphor/settings/phosphor-settings-manager/ibm_settings.override.yml
@@ -0,0 +1,5 @@
+/xyz/openbmc_project/logging/send_event_logs_to_host:
+    - Interface: xyz.openbmc_project.Object.Enable
+      Properties:
+          Enabled:
+              Default: 'true'
diff --git a/recipes-phosphor/settings/phosphor-settings-manager_%.bbappend b/recipes-phosphor/settings/phosphor-settings-manager_%.bbappend
new file mode 100644
index 0000000..9dd3575
--- /dev/null
+++ b/recipes-phosphor/settings/phosphor-settings-manager_%.bbappend
@@ -0,0 +1,2 @@
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
+SRC_URI_append = " file://ibm_settings.override.yml"