mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
An automated conversion using scripts/contrib/convert-spdx-licenses.py to convert to use the standard SPDX license identifiers. Two recipes in meta-selftest were not converted as they're that way specifically for testing. A change in linux-firmware was also skipped and may need a more manual tweak. (From OE-Core rev: ceda3238cdbf1beb216ae9ddb242470d5dfc25e0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
692 B
BlitzBasic
28 lines
692 B
BlitzBasic
SUMMARY = "Tool for creating device nodes"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
|
SECTION = "base"
|
|
SRC_URI = "file://makedevs.c \
|
|
file://COPYING.patch"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
FILES:${PN}:append:class-nativesdk = " ${datadir}"
|
|
|
|
do_compile() {
|
|
${CC} ${CFLAGS} ${LDFLAGS} -o ${S}/makedevs ${S}/makedevs.c
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${base_sbindir}
|
|
install -m 0755 ${S}/makedevs ${D}${base_sbindir}/makedevs
|
|
}
|
|
|
|
do_install:append:class-nativesdk() {
|
|
install -d ${D}${datadir}
|
|
install -m 644 ${COREBASE}/meta/files/device_table-minimal.txt ${D}${datadir}/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|