mirror of
https://git.yoctoproject.org/poky
synced 2026-06-21 13:54:22 +02:00
glibc-2.43 isn't used in OE builds yet, but this fixes dtc-native: https://errors.yoctoproject.org/Errors/Details/903983/ ../sources/dtc-1.7.2/libfdt/fdt_overlay.c: In function ‘overlay_fixup_phandle’: ../sources/dtc-1.7.2/libfdt/fdt_overlay.c:424:21: error: assignment discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 424 | sep = memchr(fixup_str, ':', fixup_len); | ^ ../sources/dtc-1.7.2/libfdt/fdt_overlay.c:434:21: error: assignment discards ‘const’ qualifier from pointer target type [-Werror=discarded-qualifiers] 434 | sep = memchr(name, ':', fixup_len); | ^ cc1: all warnings being treated as errors (From OE-Core rev: 7e9f4ab3d1839cef771675091e5ce49eccc39169) Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 28552a7b6c94060c7ab3899619ab8afb74124d02) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Paul Barker <paul@pbarker.dev>
36 lines
1.3 KiB
BlitzBasic
36 lines
1.3 KiB
BlitzBasic
SUMMARY = "Device Tree Compiler"
|
|
HOMEPAGE = "https://devicetree.org/"
|
|
DESCRIPTION = "The Device Tree Compiler is a toolchain for working with device tree source and binary files."
|
|
SECTION = "bootloader"
|
|
LICENSE = "GPL-2.0-only | BSD-2-Clause"
|
|
|
|
LIC_FILES_CHKSUM = "file://GPL;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://BSD-2-Clause;md5=5d6306d1b08f8df623178dfd81880927 \
|
|
file://README.license;md5=a1eb22e37f09df5b5511b8a278992d0e"
|
|
|
|
SRC_URI = " \
|
|
git://git.kernel.org/pub/scm/utils/dtc/dtc.git;branch=main;protocol=https \
|
|
file://0001-meson.build-bump-version-to-1.7.0.patch \
|
|
file://0002-meson-allow-building-from-shallow-clones.patch \
|
|
file://0001-Fix-discarded-const-qualifiers.patch \
|
|
"
|
|
SRCREV = "039a99414e778332d8f9c04cbd3072e1dcc62798"
|
|
|
|
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meson pkgconfig
|
|
|
|
EXTRA_OEMESON = "-Dpython=disabled -Dvalgrind=disabled"
|
|
|
|
PACKAGECONFIG ??= "tools"
|
|
PACKAGECONFIG[tools] = "-Dtools=true,-Dtools=false,flex-native bison-native"
|
|
PACKAGECONFIG[yaml] = "-Dyaml=enabled,-Dyaml=disabled,libyaml"
|
|
|
|
PACKAGES =+ "${PN}-misc"
|
|
FILES:${PN}-misc = "${bindir}/convert-dtsv0 ${bindir}/ftdump ${bindir}/dtdiff"
|
|
RDEPENDS:${PN}-misc += "${@bb.utils.contains('PACKAGECONFIG', 'tools', 'bash diffutils', '', d)}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|