Rename mapper DBus names to match xyz

Use the domain we actually own, per DBus naming best practices.

Change-Id: I69e85d91bcf30bfab5c1d6157f399683b91dda35
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/libmapper/config.h b/libmapper/config.h
index 7555129..ec811ef 100644
--- a/libmapper/config.h
+++ b/libmapper/config.h
@@ -1,3 +1,3 @@
-#define MAPPER_BUSNAME "org.openbmc.ObjectMapper"
-#define MAPPER_INTERFACE "org.openbmc.ObjectMapper"
-#define MAPPER_PATH "/org/openbmc/ObjectMapper"
+#define MAPPER_BUSNAME "xyz.openbmc_project.ObjectMapper"
+#define MAPPER_INTERFACE "xyz.openbmc_project.ObjectMapper"
+#define MAPPER_PATH "/xyz/openbmc_project/ObjectMapper"
diff --git a/obmc/mapper/bindings.py b/obmc/mapper/bindings.py
index f77ba46..cb36ec0 100644
--- a/obmc/mapper/bindings.py
+++ b/obmc/mapper/bindings.py
@@ -20,9 +20,9 @@
 import obmc.utils.pathtree
 
 
-MAPPER_NAME = 'org.openbmc.ObjectMapper'
+MAPPER_NAME = 'xyz.openbmc_project.ObjectMapper'
 MAPPER_IFACE = MAPPER_NAME
-MAPPER_PATH = '/org/openbmc/ObjectMapper'
+MAPPER_PATH = '/xyz/openbmc_project/ObjectMapper'
 MAPPER_NOT_FOUND = 'org.freedesktop.DBus.Error.FileNotFound'