- 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)
74 lines
2.6 KiB
BlitzBasic
74 lines
2.6 KiB
BlitzBasic
SUMMARY = "Random number generator daemon"
|
|
DESCRIPTION = "Check and feed random data from hardware device to kernel"
|
|
HOMEPAGE = "https://github.com/nhorman/rng-tools"
|
|
BUGTRACKER = "https://github.com/nhorman/rng-tools/issues"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
DEPENDS = "openssl libcap"
|
|
|
|
SRC_URI = "git://github.com/nhorman/rng-tools.git;branch=master;protocol=https \
|
|
file://init \
|
|
file://default \
|
|
file://rng-tools.service \
|
|
"
|
|
SRCREV = "e061c313b95890eb5fa0ada0cd6eec619dafdfe2"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools update-rc.d systemd pkgconfig
|
|
|
|
EXTRA_OECONF = "--without-rtlsdr"
|
|
|
|
PACKAGECONFIG ??= "libjitterentropy"
|
|
PACKAGECONFIG:libc-musl = "libargp libjitterentropy"
|
|
|
|
PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone,"
|
|
PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterentropy,libjitterentropy"
|
|
PACKAGECONFIG[libp11] = "--with-pkcs11,--without-pkcs11,libp11 openssl"
|
|
PACKAGECONFIG[nistbeacon] = "--with-nistbeacon,--without-nistbeacon,curl libxml2"
|
|
PACKAGECONFIG[qrypt] = "--with-qrypt,--without-qrypt,curl"
|
|
|
|
INITSCRIPT_PACKAGES = "${PN}-service"
|
|
INITSCRIPT_NAME:${PN}-service = "rng-tools"
|
|
INITSCRIPT_PARAMS:${PN}-service = "start 03 2 3 4 5 . stop 30 0 6 1 ."
|
|
|
|
SYSTEMD_PACKAGES = "${PN}-service"
|
|
SYSTEMD_SERVICE:${PN}-service = "rng-tools.service"
|
|
|
|
CFLAGS += " -DJENT_CONF_ENABLE_INTERNAL_TIMER "
|
|
|
|
PACKAGES =+ "${PN}-service"
|
|
|
|
FILES:${PN}-service += " \
|
|
${sysconfdir}/init.d/rng-tools \
|
|
${sysconfdir}/default/rng-tools \
|
|
"
|
|
|
|
# Refer autogen.sh in rng-tools
|
|
do_configure:prepend() {
|
|
cp ${S}/README.md ${S}/README
|
|
}
|
|
|
|
do_install:append() {
|
|
install -Dm 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/rng-tools
|
|
install -Dm 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rng-tools
|
|
install -Dm 0644 ${WORKDIR}/rng-tools.service \
|
|
${D}${systemd_system_unitdir}/rng-tools.service
|
|
sed -i \
|
|
-e 's,@SYSCONFDIR@,${sysconfdir},g' \
|
|
-e 's,@SBINDIR@,${sbindir},g' \
|
|
${D}${sysconfdir}/init.d/rng-tools \
|
|
${D}${systemd_system_unitdir}/rng-tools.service
|
|
|
|
if [ "${@bb.utils.contains('PACKAGECONFIG', 'nistbeacon', 'yes', 'no', d)}" = "yes" ]; then
|
|
sed -i \
|
|
-e '/^IPAddressDeny=any/d' \
|
|
-e '/^RestrictAddressFamilies=/ s/$/ AF_INET AF_INET6/' \
|
|
${D}${systemd_system_unitdir}/rng-tools.service
|
|
fi
|
|
}
|
|
|
|
# libargp detection fails
|
|
# http://errors.yoctoproject.org/Errors/Details/766951/
|
|
CFLAGS += "-Wno-error=incompatible-pointer-types"
|