configs: Add Compatible iface to IBM systems

Add the xyz.openbmc_project.Inventory.Decorator.Compatible interface to
the IBM chassis configs to identify the various chassis models.

This acts the same as the IBMCompatibleSystem interface that is
currently used and will eventually replace it.  For now it will exist
along side it until all of the code switches over to use it, and then
IBMCompatibleSystem will be removed.

Tested:
```
busctl get-property xyz.openbmc_project.EntityManager \
/xyz/openbmc_project/inventory/system/chassis/Rainier_2U_Chassis \
xyz.openbmc_project.Inventory.Decorator.Compatible Names

as 2 "com.ibm.Hardware.Chassis.Model.Rainier2U" "com.ibm.Hardware.Chassis.Model.Rainier"
```

Change-Id: Iac9b45f57e53c4ed1917c5fc10091b2ccf981d58
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/configurations/bonnell.json b/configurations/bonnell.json
index 9aeedb0..cddd47d 100644
--- a/configurations/bonnell.json
+++ b/configurations/bonnell.json
@@ -12,5 +12,10 @@
     "Probe": [
         "com.ibm.ipzvpd.VSBP({'IM': [80, 0, 64, 0]})"
     ],
-    "Type": "Chassis"
+    "Type": "Chassis",
+    "xyz.openbmc_project.Inventory.Decorator.Compatible": {
+        "Names": [
+            "com.ibm.Hardware.Chassis.Model.Bonnell"
+        ]
+    }
 }
diff --git a/configurations/everest.json b/configurations/everest.json
index 9bf1465..7e566ad 100644
--- a/configurations/everest.json
+++ b/configurations/everest.json
@@ -22,5 +22,10 @@
     "Probe": [
         "com.ibm.ipzvpd.VSBP({'IM': [80, 0, 48, 0]})"
     ],
-    "Type": "Chassis"
+    "Type": "Chassis",
+    "xyz.openbmc_project.Inventory.Decorator.Compatible": {
+        "Names": [
+            "com.ibm.Hardware.Chassis.Model.Everest"
+        ]
+    }
 }
diff --git a/configurations/rainier_1s4u_chassis.json b/configurations/rainier_1s4u_chassis.json
index ae89249..6f297be 100644
--- a/configurations/rainier_1s4u_chassis.json
+++ b/configurations/rainier_1s4u_chassis.json
@@ -23,5 +23,11 @@
     "Probe": [
         "com.ibm.ipzvpd.VSBP({'IM': [80, 0, 16, 2]})"
     ],
-    "Type": "Chassis"
+    "Type": "Chassis",
+    "xyz.openbmc_project.Inventory.Decorator.Compatible": {
+        "Names": [
+            "com.ibm.Hardware.Chassis.Model.Rainier1S4U",
+            "com.ibm.Hardware.Chassis.Model.Rainier"
+        ]
+    }
 }
diff --git a/configurations/rainier_2u_chassis.json b/configurations/rainier_2u_chassis.json
index e3d20de..89994af 100644
--- a/configurations/rainier_2u_chassis.json
+++ b/configurations/rainier_2u_chassis.json
@@ -25,5 +25,11 @@
         "OR",
         "com.ibm.ipzvpd.VSBP({'IM': [80, 0, 16, 3]})"
     ],
-    "Type": "Chassis"
+    "Type": "Chassis",
+    "xyz.openbmc_project.Inventory.Decorator.Compatible": {
+        "Names": [
+            "com.ibm.Hardware.Chassis.Model.Rainier2U",
+            "com.ibm.Hardware.Chassis.Model.Rainier"
+        ]
+    }
 }
diff --git a/configurations/rainier_4u_chassis.json b/configurations/rainier_4u_chassis.json
index be3d044..109918c 100644
--- a/configurations/rainier_4u_chassis.json
+++ b/configurations/rainier_4u_chassis.json
@@ -23,5 +23,11 @@
     "Probe": [
         "com.ibm.ipzvpd.VSBP({'IM': [80, 0, 16, 0]})"
     ],
-    "Type": "Chassis"
+    "Type": "Chassis",
+    "xyz.openbmc_project.Inventory.Decorator.Compatible": {
+        "Names": [
+            "com.ibm.Hardware.Chassis.Model.Rainier4U",
+            "com.ibm.Hardware.Chassis.Model.Rainier"
+        ]
+    }
 }