mirror of
https://git.yoctoproject.org/poky
synced 2026-03-17 04:39:40 +01:00
ver 0.50: Fix issue with D-Bus use-after-free crash when removing objects. Fix issue with DHCP lease expiry based on frame reception times. (From OE-Core rev: 56b8dbfa7a0d70306d61c7f21125232bc6a2e34c) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 9a9c78fb94d04c1b38d8d0f2cb283e19ed513a12) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
856 B
BlitzBasic
24 lines
856 B
BlitzBasic
SUMMARY = "Embedded Linux Library"
|
|
HOMEPAGE = "https://01.org/ell"
|
|
DESCRIPTION = "The Embedded Linux Library (ELL) provides core, \
|
|
low-level functionality for system daemons. It typically has no \
|
|
dependencies other than the Linux kernel, C standard library, and \
|
|
libdl (for dynamic linking). While ELL is designed to be efficient \
|
|
and compact enough for use on embedded Linux platforms, it is not \
|
|
limited to resource-constrained systems."
|
|
SECTION = "libs"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=fb504b67c50331fc78734fed90fb0e09"
|
|
|
|
DEPENDS = "dbus"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
SRC_URI = "https://mirrors.edge.kernel.org/pub/linux/libs/${BPN}/${BPN}-${PV}.tar.xz \
|
|
"
|
|
SRC_URI[sha256sum] = "0fe51d51c6eddc2a2784092f1dfdd1143a5ef27f15c274ecfbadd680d3a72fd9"
|
|
|
|
do_configure:prepend () {
|
|
mkdir -p ${S}/build-aux
|
|
}
|