blob: aee8dd38c129df5c4eae9439e43198eddae2966b [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 Williamsa62597d2016-09-12 13:50:07 -050016SRCREV = "15d498e2568b6e104de75e7423caab0c9a487485"
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