diff options
| author | Joe Slater <jslater@windriver.com> | 2015-09-01 14:34:29 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-04 16:23:50 +0100 |
| commit | bf18f8ad4e71c1fefc0e8bffde4d2f7d36801f8f (patch) | |
| tree | e3b505b8608fd42ba7e194993bd4f9fa96316f3f /meta/recipes-core/ifupdown/ifupdown_0.7.48.1.bb | |
| parent | 338c3257f60e99c1fd101d5010daea4099eb1d0e (diff) | |
| download | poky-bf18f8ad4e71c1fefc0e8bffde4d2f7d36801f8f.tar.gz | |
ifupdown: import recipe
Implements ifup and ifdown.
Copied from https://github.com/WindRiver-OpenSourceLabs/meta-overc.git
as of commit aa89eebffe06e4aa04701eae9691cb3049cbaef9.
(From OE-Core rev: c1d1ccf994d9204f481e12ccb4e63a7c448bc9cd)
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/ifupdown/ifupdown_0.7.48.1.bb')
| -rw-r--r-- | meta/recipes-core/ifupdown/ifupdown_0.7.48.1.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/meta/recipes-core/ifupdown/ifupdown_0.7.48.1.bb b/meta/recipes-core/ifupdown/ifupdown_0.7.48.1.bb new file mode 100644 index 0000000000..e29cc49242 --- /dev/null +++ b/meta/recipes-core/ifupdown/ifupdown_0.7.48.1.bb | |||
| @@ -0,0 +1,54 @@ | |||
| 1 | SUMMARY = "ifupdown: basic ifup and ifdown used by initscripts" | ||
| 2 | DESCRIPTION = "High level tools to configure network interfaces \ | ||
| 3 | This package provides the tools ifup and ifdown which may be used to \ | ||
| 4 | configure (or, respectively, deconfigure) network interfaces, based on \ | ||
| 5 | the file /etc/network/interfaces." | ||
| 6 | LICENSE = "GPLv2" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
| 8 | |||
| 9 | SRC_URI = "http://archive.ubuntu.com/ubuntu/pool/main/i/ifupdown/ifupdown_0.7.48.1ubuntu5.tar.gz \ | ||
| 10 | file://defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch \ | ||
| 11 | file://inet-6-.defn-fix-inverted-checks-for-loopback.patch \ | ||
| 12 | file://99_network \ | ||
| 13 | " | ||
| 14 | |||
| 15 | EXTRA_OEMAKE = "" | ||
| 16 | |||
| 17 | # needed so we don't get default S="${WORKDIR}/ifupdown-${PV}" | ||
| 18 | S = "${WORKDIR}/ifupdown-${PV}ubuntu5" | ||
| 19 | |||
| 20 | |||
| 21 | inherit update-rc.d | ||
| 22 | |||
| 23 | do_compile () { | ||
| 24 | chmod a+rx *.pl *.sh | ||
| 25 | oe_runmake 'CC=${CC}' "CFLAGS=${CFLAGS} -Wall -W -D'IFUPDOWN_VERSION=\"${PV}\"'" | ||
| 26 | } | ||
| 27 | |||
| 28 | do_install () { | ||
| 29 | install -d ${D}${mandir}/man8 \ | ||
| 30 | ${D}${mandir}/man5 \ | ||
| 31 | ${D}${base_sbindir} | ||
| 32 | |||
| 33 | # If volatiles are used, then we'll also need /run/network there too. | ||
| 34 | install -d ${D}/etc/default/volatiles | ||
| 35 | install -m 0644 ${WORKDIR}/99_network ${D}/etc/default/volatiles | ||
| 36 | |||
| 37 | install -m 0755 ifup ${D}${base_sbindir}/ | ||
| 38 | ln ${D}${base_sbindir}/ifup ${D}${base_sbindir}/ifdown | ||
| 39 | install -m 0644 ifup.8 ${D}${mandir}/man8 | ||
| 40 | install -m 0644 interfaces.5 ${D}${mandir}/man5 | ||
| 41 | cd ${D}${mandir}/man8 && ln -s ifup.8 ifdown.8 | ||
| 42 | } | ||
| 43 | |||
| 44 | ALTERNATIVE_PRIORITY = "100" | ||
| 45 | ALTERNATIVE_${PN} = "ifup ifdown" | ||
| 46 | |||
| 47 | ALTERNATIVE_LINK_NAME[ifup] = "${base_sbindir}/ifup" | ||
| 48 | ALTERNATIVE_LINK_NAME[ifdown] = "${base_sbindir}/ifdown" | ||
| 49 | |||
| 50 | INITSCRIPT_NAME = "ifup" | ||
| 51 | INITSCRIPT_PARAMS = "start 39 S . stop 39 0 6 1 ." | ||
| 52 | |||
| 53 | SRC_URI[md5sum] = "85ba375f3c6f26d34efb2a8575e77fc8" | ||
| 54 | SRC_URI[sha256sum] = "08dce14692c07b72b583b86c4d3ace0d9dac1928925144cc3ddde15b694ebbdf" | ||
