- 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)
40 lines
1.2 KiB
BlitzBasic
40 lines
1.2 KiB
BlitzBasic
# Copyright (c) 2018 Joshua Watt, Garmin International,Inc.
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
SUMMARY = "Generates Icecream toolchain for SDK"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/icecc-env.sh;beginline=2;endline=20;md5=dd6b68c1efed8a9fb04e409b3b287d47"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
SRC_URI = "\
|
|
file://icecc-env.sh \
|
|
file://icecc-setup.sh \
|
|
"
|
|
|
|
inherit nativesdk
|
|
|
|
ENV_NAME="${DISTRO}-${TCLIBC}-${SDK_ARCH}-@TARGET_PREFIX@${DISTRO_VERSION}.tar.gz"
|
|
|
|
do_compile() {
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${SDKPATHNATIVE}${datadir}/icecream/bin
|
|
|
|
install -d ${D}${SDKPATHNATIVE}/environment-setup.d/
|
|
install -m 0644 ${WORKDIR}/icecc-env.sh ${D}${SDKPATHNATIVE}/environment-setup.d/
|
|
sed -i ${D}${SDKPATHNATIVE}/environment-setup.d/icecc-env.sh \
|
|
-e 's,@TOOLCHAIN_ENV@,${ENV_NAME},g'
|
|
|
|
install -d ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
|
install -m 0755 ${WORKDIR}/icecc-setup.sh ${D}${SDKPATHNATIVE}/post-relocate-setup.d/
|
|
sed -i ${D}${SDKPATHNATIVE}/post-relocate-setup.d/icecc-setup.sh \
|
|
-e 's,@TOOLCHAIN_ENV@,${ENV_NAME},g'
|
|
}
|
|
|
|
PACKAGES = "${PN}"
|
|
FILES:${PN} = "${SDKPATHNATIVE}"
|
|
RDEPENDS:${PN} += "nativesdk-icecc-create-env"
|
|
|