diff options
author | Brad Bishop <bradleyb@us.ibm.com> | 2015-11-01 21:32:48 -0500 |
---|---|---|
committer | Brad Bishop <bradleyb@us.ibm.com> | 2015-11-01 21:35:15 -0500 |
commit | f2e1684989b264f7f9f8e552cabe7aa0d390d3d5 (patch) | |
tree | 69cf687a691af2f1ce703465766701a68c5123b2 | |
parent | 4bd2cbf723a746dfe80a0dded0473a71f7950eed (diff) | |
download | talos-openbmc-f2e1684989b264f7f9f8e552cabe7aa0d390d3d5.tar.gz talos-openbmc-f2e1684989b264f7f9f8e552cabe7aa0d390d3d5.zip |
Update rest-dbus
Removed upstreamed patches to makefile.
Updated path in systemd service file.
Add dependency on mapper.
5 files changed, 6 insertions, 58 deletions
diff --git a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/makefile.patch b/meta-phosphor/common/recipes-phosphor/rest-dbus/files/makefile.patch deleted file mode 100644 index 96a82c112..000000000 --- a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/makefile.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/Makefile b/Makefile -new file mode 100644 -index 0000000..3d79547 ---- /dev/null -+++ b/Makefile -@@ -0,0 +1,18 @@ -+PACKAGE=rest-dbus -+ -+prefix?=/usr/local -+bin=$(prefix)/usr/bin -+share=$(prefix)/usr/share/$(PACKAGE) -+ -+build clean all: -+ -+install: -+ @install -d $(bin) $(share)/resources $(srv) -+ @install -m 755 $(PACKAGE) $(bin) -+ @for f in resources/*; do \ -+ install -m644 $$f $(share)/resources; \ -+ done -+ -+uninstall: -+ @rm -f $(bin)/$(PACKAGE) -+ @rm -rf $(share) diff --git a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/no-session-bus.patch b/meta-phosphor/common/recipes-phosphor/rest-dbus/files/no-session-bus.patch deleted file mode 100644 index d68a037ba..000000000 --- a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/no-session-bus.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: git/rest-dbus -=================================================================== ---- git.orig/rest-dbus -+++ git/rest-dbus -@@ -8,7 +8,6 @@ import os - from xml.etree import ElementTree - - busses = { -- 'session': dbus.SessionBus, - 'system': dbus.SystemBus, - } - diff --git a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/resources-path.patch b/meta-phosphor/common/recipes-phosphor/rest-dbus/files/resources-path.patch deleted file mode 100644 index dee44046f..000000000 --- a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/resources-path.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/rest-dbus b/rest-dbus -index 56ec1f9..078b1cf 100755 ---- a/rest-dbus -+++ b/rest-dbus -@@ -40,7 +40,7 @@ class DBusRestResourceResponse(DBusRestResponse): - 'png': 'image/png', - 'gif': 'image/gif', - } -- resource_base = 'resources' -+ resource_base = '/usr/share/rest-dbus/resources' - - def __init__(self, name): - (_, ext) = os.path.splitext(name) diff --git a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/rest-dbus.service b/meta-phosphor/common/recipes-phosphor/rest-dbus/files/rest-dbus.service index 686cf6952..b6f9b978d 100644 --- a/meta-phosphor/common/recipes-phosphor/rest-dbus/files/rest-dbus.service +++ b/meta-phosphor/common/recipes-phosphor/rest-dbus/files/rest-dbus.service @@ -2,7 +2,7 @@ Description=DBUS introspecting REST server. [Service] -ExecStart=/usr/bin/rest-dbus +ExecStart=/usr/sbin/rest-dbus [Install] WantedBy=multi-user.target diff --git a/meta-phosphor/common/recipes-phosphor/rest-dbus/rest-dbus.bb b/meta-phosphor/common/recipes-phosphor/rest-dbus/rest-dbus.bb index e7e31cf1b..fa551f553 100644 --- a/meta-phosphor/common/recipes-phosphor/rest-dbus/rest-dbus.bb +++ b/meta-phosphor/common/recipes-phosphor/rest-dbus/rest-dbus.bb @@ -6,24 +6,21 @@ PR = "r1" inherit allarch inherit obmc-phosphor-license inherit obmc-phosphor-systemd +inherit setuptools RDEPENDS_${PN} += " \ python-netserver \ python-json \ python-dbus \ python-xml \ + obmc-mapper \ " + SRC_URI += " \ git://github.com/openbmc/rest-dbus.git \ - file://makefile.patch \ - file://resources-path.patch \ - file://no-session-bus.patch \ + file://rest-dbus.service \ " -SRCREV = "9b0e0bab5150ccc4333ce442932f8969f365155e" +SRCREV = "b10a57e2f34e94b13697328cc22f876f738feb0e" S = "${WORKDIR}/git" - -do_install() { - oe_runmake prefix=${D} install -} |