- 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)
21 lines
807 B
Plaintext
21 lines
807 B
Plaintext
#
|
|
# AUTOREV and PV containing '+git' needs to be set early, before any anonymous python
|
|
# expands anything containing PV, else the parse process won't trigger the fetcher to
|
|
# cache the needed version data
|
|
#
|
|
python pokybleeding_version_handler () {
|
|
bpn = d.getVar("BPN")
|
|
# We're running before the class extension code at PreFinalise so manually fix BPN
|
|
bpn = bpn.replace("-nativesdk", "").replace("nativesdk-", "")
|
|
|
|
if bpn in d.getVar("POKY_AUTOREV_RECIPES").split():
|
|
if "pseudo" in bpn:
|
|
bb.warn("Here 5 %s %s" % (d.getVar("PN"), bpn))
|
|
d.setVar("SRCREV", "${AUTOREV}")
|
|
if "+git" not in d.getVar("PV"):
|
|
d.appendVar("PV", "+git")
|
|
}
|
|
|
|
addhandler pokybleeding_version_handler
|
|
pokybleeding_version_handler[eventmask] = "bb.event.RecipePreFinalise"
|