blob: 8eac408451e75d76a295c522d8d4cdb182357795 [file] [log] [blame]
Adriana Kobylak8f2f3b32016-01-30 10:41:48 -06001SUMMARY = "Network DBUS object"
2DESCRIPTION = "Network DBUS object"
3HOMEPAGE = "http://github.com/openbmc/phosphor-networkd"
4PR = "r1"
5
6inherit obmc-phosphor-license
7inherit obmc-phosphor-systemd
vishwab18b1332016-06-20 06:41:52 -05008inherit obmc-phosphor-sdbus-service
9
10SYSTEMD_SERVICE_${PN} += "network.service network-update-dns.service"
Adriana Kobylak8f2f3b32016-01-30 10:41:48 -060011
Patrick Williams0b551752016-08-15 15:59:36 -050012RDEPENDS_${PN} += "python-dbus python-pygobject python-ipy"
Adriana Kobylak8f2f3b32016-01-30 10:41:48 -060013
Adriana Kobylak47544772016-02-03 17:34:16 -060014SRC_URI += "git://github.com/openbmc/phosphor-networkd"
Adriana Kobylak8f2f3b32016-01-30 10:41:48 -060015
Patrick Williams30a5c112016-08-13 09:04:10 -050016SRCREV = "75757c08579200677391f5319aee68cafcae0bf1"
Adriana Kobylak8f2f3b32016-01-30 10:41:48 -060017
18S = "${WORKDIR}/git"
19
20do_install() {
21 install -d ${D}/${sbindir}
22 install ${S}/netman.py ${D}/${sbindir}
vishwab18b1332016-06-20 06:41:52 -050023 install ${S}/netman_watch_dns ${D}/${sbindir}
Adriana Kobylak8f2f3b32016-01-30 10:41:48 -060024}
25