From a960796c9e2d4bd9b43d9557030cfafe817d8863 Mon Sep 17 00:00:00 2001 From: Liu Yiding Date: Tue, 27 Jan 2026 10:18:45 +0800 Subject: [PATCH] openl2tp: Fix do_package_qa Issue Fix following issue when using customized kernel without kernel-module-l2tp-ppp enabled. ERROR: openl2tp-1.8-r0 do_package_qa: QA Issue: openl2tp-ptest rdepends on kernel-module-l2tp-ppp, but it isn't a build dependency? [build-deps] Signed-off-by: Liu Yiding Signed-off-by: Khem Raj --- meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb index 4e5b45891d..1d11d374fc 100644 --- a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb +++ b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb @@ -96,4 +96,5 @@ do_install_ptest () { } RDEPENDS:${PN} = "ppp ppp-l2tp bash" -RDEPENDS:${PN}-ptest += "rpcbind kernel-module-l2tp-ppp procps-ps tcl" +RDEPENDS:${PN}-ptest += "rpcbind procps-ps tcl" +RRECOMMENDS:${PN}-ptest = "kernel-module-l2tp-ppp"