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,3 @@
|
||||
require recipes-core/images/core-image-base.bb
|
||||
|
||||
IMAGE_INSTALL += "packagegroup-meta-networking"
|
||||
@@ -0,0 +1,25 @@
|
||||
DESCRIPTION = "Recipe to trigger execution of all meta-networking ptest images."
|
||||
HOMEPAGE = "https://www.openembedded.org/"
|
||||
|
||||
LICENSE = "MIT"
|
||||
|
||||
inherit features_check nopackages
|
||||
REQUIRED_DISTRO_FEATURES = "ptest"
|
||||
|
||||
require conf/include/ptest-packagelists-meta-networking.inc
|
||||
|
||||
# Include the full set of ptests
|
||||
PTESTS_META_NETWORKING = "${PTESTS_FAST_META_NETWORKING} ${PTESTS_SLOW_META_NETWORKING} ${PTESTS_PROBLEMS_META_NETWORKING}"
|
||||
|
||||
do_testimage[noexec] = "1"
|
||||
do_testimage[depends] = "${@' '.join(['meta-networking-image-ptest-'+x+':do_testimage' for x in d.getVar('PTESTS_META_NETWORKING').split()])}"
|
||||
|
||||
do_build[depends] = "${@' '.join(['meta-networking-image-ptest-'+x+':do_build' for x in d.getVar('PTESTS_META_NETWORKING').split()])}"
|
||||
|
||||
# normally image.bbclass would do this
|
||||
EXCLUDE_FROM_WORLD = "1"
|
||||
|
||||
python () {
|
||||
if bb.utils.contains('IMAGE_CLASSES', 'testimage', True, False, d):
|
||||
bb.build.addtask("do_testimage", "", "", d)
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
require meta-networking-image-ptest-all.bb
|
||||
|
||||
DESCRIPTION = "Recipe to trigger execution of all fast meta-networking ptest images."
|
||||
|
||||
PTESTS_META_NETWORKING = "${PTESTS_FAST_META_NETWORKING}"
|
||||
@@ -0,0 +1,42 @@
|
||||
inherit features_check
|
||||
REQUIRED_DISTRO_FEATURES = "ptest"
|
||||
|
||||
require recipes-core/images/core-image-minimal.bb
|
||||
require conf/include/ptest-packagelists-meta-networking.inc
|
||||
|
||||
SUMMARY = "meta-networking ptest test image"
|
||||
|
||||
DESCRIPTION += "Also including the ${MCNAME} ptest package."
|
||||
HOMEPAGE = "https://www.openembedded.org/"
|
||||
|
||||
PTESTS_META_NETWORKING = "${PTESTS_SLOW_META_NETWORKING} ${PTESTS_FAST_META_NETWORKING} ${PTESTS_PROBLEMS_META_NETWORKING}"
|
||||
|
||||
IMAGE_INSTALL:append = " ${MCNAME}-ptest openssh"
|
||||
|
||||
BBCLASSEXTEND = "${@' '.join(['mcextend:'+x for x in d.getVar('PTESTS_META_NETWORKING').split()])}"
|
||||
|
||||
# The image can be sufficiently large (~1.8GB) that we need to be careful that it fits in a live
|
||||
# image (which has a 4GB limit), so nullify the overhead factor (1.3x out of the
|
||||
# box) and explicitly add up to 1500MB.
|
||||
IMAGE_OVERHEAD_FACTOR = "1.0"
|
||||
IMAGE_ROOTFS_EXTRA_SPACE = "324288"
|
||||
IMAGE_ROOTFS_EXTRA_SPACE:virtclass-mcextend-wolfssl = "714288"
|
||||
# If a particular ptest needs more space, it can be customized:
|
||||
#IMAGE_ROOTFS_EXTRA_SPACE:virtclass-mcextend-<pn> = "1024288"
|
||||
|
||||
# ptests need more memory than standard to avoid the OOM killer
|
||||
QB_MEM = "-m 1024"
|
||||
# If a particular ptest needs more memroy, it can be customized:
|
||||
#QB_MEM:virtclass-mcextend-<pn> = "-m 4096"
|
||||
QB_MEM:virtclass-mcextend-nftables = "-m 2048"
|
||||
|
||||
TEST_SUITES = "ping ssh parselogs ptest"
|
||||
|
||||
# Sadly at the moment the full set of ptests is not robust enough and sporadically fails in random places
|
||||
PTEST_EXPECT_FAILURE = "1"
|
||||
|
||||
python () {
|
||||
if not d.getVar("MCNAME"):
|
||||
raise bb.parse.SkipRecipe("No class extension set")
|
||||
}
|
||||
|
||||
@@ -0,0 +1,253 @@
|
||||
SUMMARY = "Meta-networking packagegroups"
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
inherit packagegroup
|
||||
|
||||
PROVIDES = "${PACKAGES}"
|
||||
PACKAGES = ' \
|
||||
packagegroup-meta-networking \
|
||||
packagegroup-meta-networking-connectivity \
|
||||
packagegroup-meta-networking-daemons \
|
||||
packagegroup-meta-networking-devtools \
|
||||
packagegroup-meta-networking-extended \
|
||||
packagegroup-meta-networking-filter \
|
||||
packagegroup-meta-networking-irc \
|
||||
packagegroup-meta-networking-kernel \
|
||||
packagegroup-meta-networking-protocols \
|
||||
packagegroup-meta-networking-support \
|
||||
'
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking = "\
|
||||
packagegroup-meta-networking-connectivity \
|
||||
packagegroup-meta-networking-daemons \
|
||||
packagegroup-meta-networking-devtools \
|
||||
packagegroup-meta-networking-extended \
|
||||
packagegroup-meta-networking-filter \
|
||||
packagegroup-meta-networking-irc \
|
||||
packagegroup-meta-networking-kernel \
|
||||
packagegroup-meta-networking-protocols \
|
||||
packagegroup-meta-networking-support \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-connectivity = "\
|
||||
daq \
|
||||
adcli \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "bluetooth x11", "blueman", "", d)} \
|
||||
cannelloni \
|
||||
civetweb \
|
||||
libdnet \
|
||||
dibbler-client \
|
||||
dibbler-relay \
|
||||
dibbler-server \
|
||||
relayd \
|
||||
lftp \
|
||||
sethdlc \
|
||||
snort \
|
||||
ufw \
|
||||
vlan \
|
||||
vpnc \
|
||||
ez-ipupdate \
|
||||
${@bb.utils.contains("BBFILE_COLLECTIONS", "meta-python", "firewalld", "", d)} \
|
||||
freeradius \
|
||||
mbedtls \
|
||||
miniupnpd \
|
||||
mosquitto \
|
||||
nanomsg \
|
||||
nng \
|
||||
networkmanager-openvpn \
|
||||
networkmanager \
|
||||
openconnect \
|
||||
python3-networkmanager \
|
||||
rdate \
|
||||
rdist \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "pam", "samba", "", d)} \
|
||||
wolfssl \
|
||||
autossh \
|
||||
bearssl \
|
||||
dhcp-relay \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-connectivity:remove:libc-musl = "rdist"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-daemons = "\
|
||||
atftp \
|
||||
autofs \
|
||||
cyrus-sasl \
|
||||
ippool \
|
||||
iscsi-initiator-utils \
|
||||
lldpd \
|
||||
ncftp \
|
||||
igmpproxy \
|
||||
postfix \
|
||||
proftpd \
|
||||
ptpd \
|
||||
pure-ftpd \
|
||||
radvd \
|
||||
squid \
|
||||
tftp-hpa \
|
||||
tftp-hpa-server \
|
||||
vblade \
|
||||
vsftpd \
|
||||
keepalived \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "networkd-dispatcher", "", d)} \
|
||||
openhpi \
|
||||
opensaf \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-daemons:remove:libc-musl = "opensaf"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-devtools = "\
|
||||
python3-scapy \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-extended = "\
|
||||
corosync \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "dlm", "", d)} \
|
||||
kronosnet \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-filter = "\
|
||||
libnftnl \
|
||||
conntrack-tools \
|
||||
ebtables \
|
||||
ipset \
|
||||
libnetfilter-acct \
|
||||
libnetfilter-conntrack \
|
||||
libnetfilter-cthelper \
|
||||
libnetfilter-cttimeout \
|
||||
libnetfilter-log \
|
||||
libnetfilter-queue \
|
||||
libnfnetlink \
|
||||
arno-iptables-firewall \
|
||||
nfacct \
|
||||
nftables \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-irc = "\
|
||||
weechat \
|
||||
znc \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-kernel = "\
|
||||
wireguard-tools \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-protocols = "\
|
||||
babeld \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "pam", "dante", "", d)} \
|
||||
freediameter \
|
||||
frr \
|
||||
net-snmp \
|
||||
openflow \
|
||||
openflow \
|
||||
openl2tp \
|
||||
mdns \
|
||||
nopoll \
|
||||
radiusclient-ng \
|
||||
tsocks \
|
||||
openlldp \
|
||||
zeroconf \
|
||||
pptp-linux \
|
||||
rp-pppoe \
|
||||
usrsctp \
|
||||
xl2tpd \
|
||||
"
|
||||
|
||||
RDEPENDS:packagegroup-meta-networking-support = "\
|
||||
aoetools \
|
||||
arptables \
|
||||
bmon \
|
||||
bridge-utils \
|
||||
celt051 \
|
||||
cim-schema-docs \
|
||||
cim-schema-final \
|
||||
cifs-utils \
|
||||
dnsmasq \
|
||||
curlpp \
|
||||
drbd-utils \
|
||||
dovecot \
|
||||
fping \
|
||||
esmtp \
|
||||
fetchmail \
|
||||
geoip-perl \
|
||||
geoip \
|
||||
geoipupdate \
|
||||
fwknop \
|
||||
htpdate \
|
||||
http-parser \
|
||||
iftop \
|
||||
ifmetric \
|
||||
ipvsadm \
|
||||
libesmtp \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "pam", "libldb", "", d)} \
|
||||
libmemcached \
|
||||
libtalloc \
|
||||
ipcalc \
|
||||
libtevent \
|
||||
linux-atm \
|
||||
lksctp-tools \
|
||||
mctp \
|
||||
memcached \
|
||||
ifenslave \
|
||||
netcat \
|
||||
netcat-openbsd \
|
||||
libtdb \
|
||||
${@bb.utils.contains("LICENSE_FLAGS_ACCEPTED", "non-commercial", "netperf", "", d)} \
|
||||
yp-tools \
|
||||
ypbind-mt \
|
||||
yp-tools \
|
||||
mtr \
|
||||
netsniff-ng \
|
||||
ntp sntp ntpdc ntpq ntp-tickadj ntp-utils \
|
||||
${@bb.utils.contains("DISTRO_FEATURES", "x11", "ntpsec", "", d)} \
|
||||
nbd-client \
|
||||
nbd-server \
|
||||
nbd-trplay \
|
||||
nbd-trdump \
|
||||
openvpn \
|
||||
macchanger \
|
||||
nbdkit \
|
||||
ssmping \
|
||||
libmaxminddb \
|
||||
libowfat \
|
||||
ncp \
|
||||
strongswan \
|
||||
ndisc6 \
|
||||
tcpdump \
|
||||
tcpslice \
|
||||
netcf \
|
||||
tnftp \
|
||||
traceroute \
|
||||
tunctl \
|
||||
wireshark \
|
||||
ndpi \
|
||||
ntopng \
|
||||
nuttcp \
|
||||
open-isns \
|
||||
openipmi \
|
||||
phytool \
|
||||
pimd \
|
||||
ruli \
|
||||
smcroute \
|
||||
${@bb.utils.contains_any("TRANSLATED_TARGET_ARCH", "i586 x86-64", "spice-protocol spice", "", d)} \
|
||||
usbredir \
|
||||
ssmtp \
|
||||
stunnel \
|
||||
rdma-core \
|
||||
tcpreplay \
|
||||
tinyproxy \
|
||||
uftp \
|
||||
unbound \
|
||||
vnstat \
|
||||
wpan-tools \
|
||||
ettercap \
|
||||
libcpr \
|
||||
"
|
||||
RDEPENDS:packagegroup-meta-networking-support:remove:mipsarch = "memcached"
|
||||
RDEPENDS:packagegroup-meta-networking-support:remove:riscv64 = "memcached"
|
||||
RDEPENDS:packagegroup-meta-networking-support:remove:libc-musl = "ypbind-mt"
|
||||
|
||||
EXCLUDE_FROM_WORLD = "1"
|
||||
# Empty packages, only devel headers and libs
|
||||
# nngpp
|
||||
# Use ntp and not chrony or ntimed
|
||||
Reference in New Issue
Block a user