- 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)
42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
#
|
|
# Copyright 2006-2007 Openedhand Ltd.
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
ROOTFS_PKGMANAGE = "dpkg apt"
|
|
|
|
do_rootfs[depends] += "dpkg-native:do_populate_sysroot apt-native:do_populate_sysroot"
|
|
do_populate_sdk[depends] += "dpkg-native:do_populate_sysroot apt-native:do_populate_sysroot bzip2-native:do_populate_sysroot"
|
|
do_rootfs[recrdeptask] += "do_package_write_deb do_package_qa"
|
|
do_rootfs[vardeps] += "PACKAGE_FEED_URIS PACKAGE_FEED_BASE_PATHS PACKAGE_FEED_ARCHS"
|
|
|
|
do_rootfs[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock"
|
|
do_populate_sdk[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock"
|
|
do_populate_sdk_ext[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock"
|
|
|
|
python rootfs_deb_bad_recommendations() {
|
|
if d.getVar("BAD_RECOMMENDATIONS"):
|
|
bb.warn("Debian package install does not support BAD_RECOMMENDATIONS")
|
|
}
|
|
do_rootfs[prefuncs] += "rootfs_deb_bad_recommendations"
|
|
|
|
DEB_POSTPROCESS_COMMANDS = ""
|
|
|
|
opkglibdir = "${localstatedir}/lib/opkg"
|
|
|
|
python () {
|
|
# Map TARGET_ARCH to Debian's ideas about architectures
|
|
darch = d.getVar('SDK_ARCH')
|
|
if darch in ["x86", "i486", "i586", "i686", "pentium"]:
|
|
d.setVar('DEB_SDK_ARCH', 'i386')
|
|
elif darch == "x86_64":
|
|
d.setVar('DEB_SDK_ARCH', 'amd64')
|
|
elif darch == "arm":
|
|
d.setVar('DEB_SDK_ARCH', 'armel')
|
|
elif darch == "aarch64":
|
|
d.setVar('DEB_SDK_ARCH', 'arm64')
|
|
else:
|
|
bb.fatal("Unhandled SDK_ARCH %s" % darch)
|
|
}
|