28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
# Shared include for wolfBoot recipes
|
|
#
|
|
# Pulls the wolfBoot source tree and the wolfSSL submodule source side-by-side.
|
|
# wolfBoot bundles wolfSSL under lib/wolfssl, so we stage wolfSSL there instead
|
|
# of fetching it from the wolfBoot submodule pointer (keeps the two SRCREVs
|
|
# explicit and greppable).
|
|
|
|
HOMEPAGE = "https://github.com/wolfssl/wolfBoot"
|
|
BUGTRACKER = "https://github.com/wolfssl/wolfBoot/issues"
|
|
SECTION = "bootloaders"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464"
|
|
|
|
# NOTE: SRCREVs below are pinned to wolfSSL/wolfBoot master and
|
|
# wolfSSL/wolfssl master tips at the time of writing. Bump these as
|
|
# upstream evolves. Downstream users can override via local.conf:
|
|
# SRCREV_wolfboot:pn-wolfboot = "<sha>"
|
|
# SRCREV_wolfboot:pn-wolfboot-keytools-native = "<sha>"
|
|
SRC_URI = " \
|
|
git://github.com/wolfssl/wolfBoot.git;protocol=https;branch=master;name=wolfboot;destsuffix=git \
|
|
git://github.com/wolfssl/wolfssl.git;protocol=https;branch=master;name=wolfssl;destsuffix=git/lib/wolfssl \
|
|
"
|
|
SRCREV_wolfboot ?= "25c0aaa8bd5a64f85f4d1eef9fab698275d32f20"
|
|
SRCREV_wolfssl ?= "c4c71eece3e6eae7042a16fffdebf9bd80a4f2a1"
|
|
SRCREV_FORMAT = "wolfboot_wolfssl"
|
|
|
|
S = "${WORKDIR}/git"
|