Add recipe to install device tree config YAML.

New recipe copies the devtree-config.yaml to a place
the device tree generator can find it.

Change-Id: I3ac107986de469ce47a4cd76cb790a8ab60988bc
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/meta-witherspoon/recipes-phosphor/workbook/devtree-config-native.bb b/meta-witherspoon/recipes-phosphor/workbook/devtree-config-native.bb
new file mode 100644
index 0000000..9a16dd6
--- /dev/null
+++ b/meta-witherspoon/recipes-phosphor/workbook/devtree-config-native.bb
@@ -0,0 +1,17 @@
+SUMMARY = "Witherspoon Device Tree Configuration"
+DESCRIPTION = "Provides the device tree configuration file for Witherspoon"
+PR = "r1"
+
+inherit obmc-phosphor-license
+inherit native
+
+SRC_URI += "file://config.yaml"
+
+FILES_${PN} += "${datadir}/devtree"
+
+do_install() {
+    install -d ${D}${datadir}/devtree
+    install -m 0644 config.yaml ${D}${datadir}/devtree/
+}
+
+S = "${WORKDIR}"