mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-18 05:01:58 +02:00
1) Upgrade ifenslave from 2.7 to 2.9. 2) License checksum changed,since the copyright's Format were changed. Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
28 lines
996 B
BlitzBasic
28 lines
996 B
BlitzBasic
SUMMARY = "Configure network interfaces for parallel routing"
|
|
HOMEPAGE = "http://www.linuxfoundation.org/collaborate/workgroups/networking/bonding"
|
|
SECTION = "net"
|
|
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://debian/copyright;md5=acc89812938cf9ad6b1debc37cea0253"
|
|
|
|
|
|
SRCREV = "42bfbb9beb924672ca86b86e9679ac3d6b87d992"
|
|
SRC_URI = "git://anonscm.debian.org/collab-maint/ifenslave.git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install() {
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 ${S}/ifenslave ${D}${sbindir}/
|
|
|
|
install -m 0755 -D ${S}/debian/ifenslave.if-pre-up ${D}${sysconfdir}/network/if-pre-up.d/ifenslave
|
|
install -m 0755 -D ${S}/debian/ifenslave.if-post-down ${D}${sysconfdir}/network/if-post-down.d/ifenslave
|
|
install -m 0755 -D ${S}/debian/ifenslave.if-up ${D}${sysconfdir}/network/if-up.d/ifenslave
|
|
install -m 0644 -D ${S}/debian/ifenslave.8 ${D}${mandir}/man8/ifenslave.8
|
|
}
|
|
|
|
FILES_${PN}-doc_remove = "${mandir}"
|
|
FILES_${PN} += "${mandir}/man8/ifenslave.8"
|
|
|
|
RDEPENDS_${PN} = "man"
|