- 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)
32 lines
745 B
BlitzBasic
32 lines
745 B
BlitzBasic
SUMMARY = "Tool to access UFS (Universal Flash Storage) devices"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
|
|
|
|
BRANCH ?= "dev"
|
|
|
|
SRCREV = "18c0a8454ca1cf8969170049f8c628d88627beec"
|
|
|
|
SRC_URI = "git://github.com/westerndigitalcorporation/ufs-utils.git;protocol=https;branch=${BRANCH} \
|
|
"
|
|
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}" CFLAGS="${CFLAGS}""
|
|
|
|
CFLAGS:append:mipsarchn64 = " -D__SANE_USERSPACE_TYPES__ -D_GNU_SOURCE"
|
|
|
|
do_configure() {
|
|
sed -i -e "s|-static$||g" ${S}/Makefile
|
|
}
|
|
|
|
do_install() {
|
|
install -D -m 755 ${S}/ufs-utils ${D}${bindir}/ufs-utils
|
|
}
|
|
|
|
PROVIDES += "ufs-tool"
|
|
|
|
RPROVIDES:${PN} += "ufs-tool"
|
|
|