Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
From 592dcdcf243576bd2517d3da9bc18990de08e37e Mon Sep 17 00:00:00 2001
|
||||
From: Kamalesh Babulal <kamalesh.babulal@oracle.com>
|
||||
Date: Mon, 27 Nov 2023 20:07:33 +0530
|
||||
Subject: [PATCH 1/1] include/Makefile: install systemd.h by default
|
||||
|
||||
Install systemd.h header file by default, as we have stub and defined
|
||||
versions of the systemd functions for both non-systemd and systemd
|
||||
enabled configurations. This will help packagers to ship package
|
||||
without systemd support (--enable-systemd=no).
|
||||
|
||||
Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
|
||||
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
|
||||
|
||||
Upstream-Status: Backport [https://github.com/libcgroup/libcgroup/commit/592dcdcf243576bd2517d3da9bc18990de08e37e]
|
||||
|
||||
Signed-off-by: Adriaan Schmidt <adriaan.schmidt@siemens.com>
|
||||
---
|
||||
include/Makefile.am | 6 +-----
|
||||
1 file changed, 1 insertion(+), 5 deletions(-)
|
||||
|
||||
diff --git a/include/Makefile.am b/include/Makefile.am
|
||||
index 23cebaac..4cb05529 100644
|
||||
--- a/include/Makefile.am
|
||||
+++ b/include/Makefile.am
|
||||
@@ -2,8 +2,4 @@
|
||||
nobase_include_HEADERS = libcgroup.h libcgroup/error.h libcgroup/init.h \
|
||||
libcgroup/groups.h libcgroup/tasks.h \
|
||||
libcgroup/iterators.h libcgroup/config.h \
|
||||
- libcgroup/log.h libcgroup/tools.h
|
||||
-
|
||||
-if WITH_SYSTEMD
|
||||
-nobase_include_HEADERS += libcgroup/systemd.h
|
||||
-endif
|
||||
+ libcgroup/log.h libcgroup/tools.h libcgroup/systemd.h
|
||||
--
|
||||
2.39.2
|
||||
|
||||
34
sources/poky/meta/recipes-core/libcgroup/libcgroup_3.1.0.bb
Normal file
34
sources/poky/meta/recipes-core/libcgroup/libcgroup_3.1.0.bb
Normal file
@@ -0,0 +1,34 @@
|
||||
SUMMARY = "Linux control group abstraction library"
|
||||
HOMEPAGE = "http://libcg.sourceforge.net/"
|
||||
DESCRIPTION = "libcgroup is a library that abstracts the control group file system \
|
||||
in Linux. Control groups allow you to limit, account and isolate resource usage \
|
||||
(CPU, memory, disk I/O, etc.) of groups of processes."
|
||||
SECTION = "libs"
|
||||
LICENSE = "LGPL-2.1-only"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=4d794c5d710e5b3547a6cc6a6609a641"
|
||||
|
||||
inherit autotools pkgconfig github-releases
|
||||
|
||||
DEPENDS = "bison-native flex-native"
|
||||
DEPENDS:append:libc-musl = " fts"
|
||||
|
||||
SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${BP}.tar.gz \
|
||||
file://0001-include-Makefile-install-systemd.h-by-default.patch \
|
||||
"
|
||||
UPSTREAM_CHECK_URI = "https://github.com/libcgroup/libcgroup/tags"
|
||||
|
||||
SRC_URI[sha256sum] = "976ec4b1e03c0498308cfd28f1b256b40858f636abc8d1f9db24f0a7ea9e1258"
|
||||
|
||||
PACKAGECONFIG = "${@bb.utils.filter('DISTRO_FEATURES', 'pam systemd', d)}"
|
||||
PACKAGECONFIG[pam] = "--enable-pam-module-dir=${base_libdir}/security --enable-pam=yes,--enable-pam=no,libpam"
|
||||
PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd"
|
||||
|
||||
PACKAGES =+ "cgroups-pam-plugin"
|
||||
FILES:cgroups-pam-plugin = "${base_libdir}/security/pam_cgroup.so*"
|
||||
FILES:${PN}-dev += "${base_libdir}/security/*.la"
|
||||
FILES:${PN}-staticdev += "${base_libdir}/security/pam_cgroup.a"
|
||||
|
||||
do_install:append() {
|
||||
# Until we ship the test suite, this library isn't useful
|
||||
rm -f ${D}${libdir}/libcgroupfortesting.*
|
||||
}
|
||||
Reference in New Issue
Block a user