mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00

The changes carried in runc-docker are no longer required, and if they become relevant again, they don't belong in the base recipe. This is the first part of the change, we drop runc-docker + patches and update runc-opencontainers to RPROVIDE runc-docker in case there are referenced that we don't know about. There shouldn't be any, since virtual-runc has been the RPROVIDE of choice for some time. We keep runc-opencontainers for now, since there may be alternate runc implementations in the future. In about a year, we'll unify the .inc and .bb if no new implementations have been proposed. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
17 lines
563 B
BlitzBasic
17 lines
563 B
BlitzBasic
include runc.inc
|
|
|
|
SRCREV = "610aa88ab201f289c05c2e262912d0630f46eb35"
|
|
SRC_URI = " \
|
|
git://github.com/opencontainers/runc;branch=main;protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX} \
|
|
file://0001-Makefile-respect-GOBUILDFLAGS-for-runc-and-remove-re.patch \
|
|
"
|
|
RUNC_VERSION = "1.2.0"
|
|
|
|
# for compatibility with existing RDEPENDS that have existed since
|
|
# runc-docker and runc-opencontainers were separate
|
|
RPROVIDES:${PN} += "runc-docker"
|
|
|
|
CVE_PRODUCT = "runc"
|
|
|
|
LDFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd', '', d)}"
|