mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
5 May 2022: babeld-1.12
* Implement v4-via-v6 routing (RFC 9229), which allows a router with
IPv4 addresses only to route IPv4.
* Enable extended Netlink acks when available.
* Fix restoring of interface configuration to avoid unbounded memory
consumption.
* Fix handling of deny filters in the install chain.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
962 B
BlitzBasic
30 lines
962 B
BlitzBasic
SUMMARY = "Babel is a loop-avoiding distance-vector routing protocol"
|
|
DESCRIPTION = "\
|
|
Babel is a loop-avoiding distance-vector routing protocol for IPv6 and \
|
|
IPv4 with fast convergence properties. It is based on the ideas in DSDV, AODV \
|
|
and Cisco's EIGRP, but is designed to work well not only in wired networks \
|
|
but also in wireless mesh networks, and has been extended with support \
|
|
for overlay networks. Babel is in the process of becoming an IETF Standard. \
|
|
"
|
|
HOMEPAGE = "https://www.irif.fr/~jch/software/babel/"
|
|
SECTION = "net"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENCE;md5=411a48ac3c2e9e0911b8dd9aed26f754"
|
|
|
|
SRC_URI = "gitsm://github.com/jech/babeld.git;protocol=https;branch=master"
|
|
SRCREV = "420a7087b7d6350084edfd7d1aef8a62209cbf04"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "babeld-(?P<pver>\d+(\.\d+)+)"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_compile () {
|
|
oe_runmake babeld
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake install.minimal TARGET=${D} PREFIX=${root_prefix}
|
|
}
|
|
|