diff options
author | Steve Sakoman <steve@sakoman.com> | 2012-01-06 20:51:54 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-16 12:24:56 +0000 |
commit | 18fe75dd84a40ed3e76f20f4ba5419d3167330e6 (patch) | |
tree | 0038bb0e460d19aa6c350224719b81580e9240ac /meta/recipes-connectivity/dhcp | |
parent | 16d911d191171b60918be3a1822cfc1dab05d1f0 (diff) | |
download | poky-18fe75dd84a40ed3e76f20f4ba5419d3167330e6.tar.gz |
dhcp: package /var/lib/dhcp with dhcp-client rather than dhcp-server
Otherwise dhclient encounters errors of this type:
dhclient: can't create /var/lib/dhcp/dhclient-c0c60402-0bc5-4bd7-bc3b-49a27fa37d72-eth1.lease: No such file or directory
(From OE-Core rev: aad04928116feea421fba84c4780b93191be6169)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/dhcp')
-rw-r--r-- | meta/recipes-connectivity/dhcp/dhcp.inc | 4 | ||||
-rw-r--r-- | meta/recipes-connectivity/dhcp/dhcp_4.2.0.bb | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/dhcp/dhcp.inc b/meta/recipes-connectivity/dhcp/dhcp.inc index f9d80e7831..be256ce280 100644 --- a/meta/recipes-connectivity/dhcp/dhcp.inc +++ b/meta/recipes-connectivity/dhcp/dhcp.inc | |||
@@ -59,14 +59,14 @@ PACKAGES += "dhcp-server dhcp-server-config dhcp-client dhcp-relay dhcp-omshell" | |||
59 | 59 | ||
60 | FILES_${PN} = "" | 60 | FILES_${PN} = "" |
61 | 61 | ||
62 | FILES_dhcp-server = "${sbindir}/dhcpd ${sysconfdir}/init.d/dhcp-server ${localstatedir}/lib/dhcp/" | 62 | FILES_dhcp-server = "${sbindir}/dhcpd ${sysconfdir}/init.d/dhcp-server" |
63 | RRECOMMENDS_dhcp-server = "dhcp-server-config" | 63 | RRECOMMENDS_dhcp-server = "dhcp-server-config" |
64 | 64 | ||
65 | FILES_dhcp-server-config = "${sysconfdir}/default/dhcp-server ${sysconfdir}/dhcp/dhcpd.conf" | 65 | FILES_dhcp-server-config = "${sysconfdir}/default/dhcp-server ${sysconfdir}/dhcp/dhcpd.conf" |
66 | 66 | ||
67 | FILES_dhcp-relay = "${sbindir}/dhcrelay ${sysconfdir}/init.d/dhcp-relay ${sysconfdir}/default/dhcp-relay" | 67 | FILES_dhcp-relay = "${sbindir}/dhcrelay ${sysconfdir}/init.d/dhcp-relay ${sysconfdir}/default/dhcp-relay" |
68 | 68 | ||
69 | FILES_dhcp-client = "${base_sbindir}/dhclient ${base_sbindir}/dhclient-script ${sysconfdir}/dhcp/dhclient.conf" | 69 | FILES_dhcp-client = "${base_sbindir}/dhclient ${base_sbindir}/dhclient-script ${sysconfdir}/dhcp/dhclient.conf ${localstatedir}/lib/dhcp/" |
70 | RDEPENDS_dhcp-client = "bash" | 70 | RDEPENDS_dhcp-client = "bash" |
71 | 71 | ||
72 | FILES_dhcp-omshell = "${bindir}/omshell" | 72 | FILES_dhcp-omshell = "${bindir}/omshell" |
diff --git a/meta/recipes-connectivity/dhcp/dhcp_4.2.0.bb b/meta/recipes-connectivity/dhcp/dhcp_4.2.0.bb index 2471d61044..a3a560b991 100644 --- a/meta/recipes-connectivity/dhcp/dhcp_4.2.0.bb +++ b/meta/recipes-connectivity/dhcp/dhcp_4.2.0.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require dhcp.inc | 1 | require dhcp.inc |
2 | 2 | ||
3 | PR = "r4" | 3 | PR = "r5" |
4 | 4 | ||
5 | SRC_URI += "file://fixincludes.patch \ | 5 | SRC_URI += "file://fixincludes.patch \ |
6 | file://dhcp-3.0.3-dhclient-dbus.patch;striplevel=0 \ | 6 | file://dhcp-3.0.3-dhclient-dbus.patch;striplevel=0 \ |