mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-05 13:51:25 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 lines
957 B
BlitzBasic
29 lines
957 B
BlitzBasic
# SPDX-FileCopyrightText: Huawei Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
SUMMARY = "OpenThread Daemon is an OpenThread POSIX build mode that runs OpenThread as a service."
|
|
SECTION = "net"
|
|
LICENSE = "BSD-3-Clause & Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=543b6fe90ec5901a683320a36390c65f \
|
|
file://third_party/mbedtls/repo/LICENSE;md5=379d5819937a6c2f1ef1630d341e026d \
|
|
"
|
|
DEPENDS = "readline"
|
|
SRCREV = "90adc86d34e21a9e8f86d093c2190030042c4a59"
|
|
PV = "0.1+git"
|
|
|
|
SRC_URI = "git://github.com/openthread/openthread.git;protocol=https;branch=main \
|
|
"
|
|
|
|
|
|
inherit cmake
|
|
|
|
EXTRA_OECMAKE = "-DOT_DAEMON=ON \
|
|
-DOT_SPINEL_RESET_CONNECTION=ON \
|
|
-DOT_THREAD_VERSION=1.2 \
|
|
-DOT_COVERAGE=OFF \
|
|
-DOT_PLATFORM=posix \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
"
|
|
|
|
EXTRA_OECMAKE:append:libc-musl = " -DOT_TARGET_OPENWRT=ON"
|