Add xyz.openbmc-project to interface match

In preparation for migration to xyz.openbmc-project.

Change-Id: Ia134de704affb3b51726790ea38b9b36bdda16b1
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/obmc/utils/misc.py b/obmc/utils/misc.py
index cfde266..f034feb 100644
--- a/obmc/utils/misc.py
+++ b/obmc/utils/misc.py
@@ -38,8 +38,13 @@
         return prefix + '/'.join(self.parts[first:last])
 
 
-def org_dot_openbmc_match(name):
-    return 'org.openbmc' in name
+def org_dot_openbmc_match(name, sep='.'):
+    matches = [
+        ['org', 'openbmc'],
+        ['xyz', 'openbmc-project'],
+    ]
+    return any(
+        [x in name for x in [ sep.join(y) for y in matches]])
 
 
 class ListMatch(object):