diff options
author | Nate Karstens <nate.karstens@garmin.com> | 2016-01-13 17:08:19 -0600 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2016-01-26 18:08:17 -0500 |
commit | 1a864b4842ad0557c6210f87e6e3d2d0a94eaa32 (patch) | |
tree | 9fa9a0c30ca1baf37c7a066cda6e1438f7b94f36 | |
parent | e4dc2a3641b61649bb92511d5c8b52f3e86f6b8e (diff) | |
download | meta-openembedded-1a864b4842ad0557c6210f87e6e3d2d0a94eaa32.tar.gz |
dhcpcd: add recipe for dhcpcd
Adds a new recipe for dhcpcd version 6.10.0.
Signed-off-by: Nate Karstens <nate.karstens@garmin.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
-rw-r--r-- | meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb new file mode 100644 index 000000000..058a932e6 --- /dev/null +++ b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SECTION = "console/network" | ||
2 | SUMMARY = "dhcpcd - a DHCP client" | ||
3 | DESCRIPTION = "dhcpcd runs on your machine and silently configures your computer to work on the attached networks without trouble and mostly without configuration." | ||
4 | |||
5 | HOMEPAGE = "http://roy.marples.name/projects/dhcpcd/" | ||
6 | |||
7 | LICENSE = "BSD-2-Clause" | ||
8 | LIC_FILES_CHKSUM = "file://dhcpcd.c;endline=26;md5=77c40d671aff804ca91ea99556da8e9b" | ||
9 | |||
10 | SRC_URI = "http://roy.marples.name/downloads/${BPN}/${BPN}-${PV}.tar.xz" | ||
11 | |||
12 | SRC_URI[md5sum] = "f39c5773e7c4bea352d9fb7367c899de" | ||
13 | SRC_URI[sha256sum] = "ab56af9b2e86913c55a965cb0f835e87749df78318564acf90d5d698f413ad35" | ||
14 | |||
15 | inherit autotools | ||
16 | |||
17 | B = "${S}" | ||
18 | EXTRA_OECONF = "--enable-ipv4 --enable-ipv6" | ||
19 | |||
20 | FILES_${PN}-dbg += "${libdir}/dhcpcd/dev/.debug" | ||
21 | |||
22 | RDEPENDS_${PN} = "udev" | ||