From patchwork Fri Dec 17 13:37:43 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Loic Poulain X-Patchwork-Id: 1659 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 46D2DC433F5 for ; Fri, 17 Dec 2021 13:37:52 +0000 (UTC) Received: from mail-wm1-f50.google.com (mail-wm1-f50.google.com [209.85.128.50]) by mx.groups.io with SMTP id smtpd.web09.6219.1639748270961400566 for ; Fri, 17 Dec 2021 05:37:51 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=ZNUz5Snj; spf=pass (domain: linaro.org, ip: 209.85.128.50, mailfrom: loic.poulain@linaro.org) Received: by mail-wm1-f50.google.com with SMTP id b186-20020a1c1bc3000000b00345734afe78so1601196wmb.0 for ; Fri, 17 Dec 2021 05:37:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=K93yHeEhTRehXjvsnkbtV8gK9y/yNpuqmo6i3DzfE1k=; b=ZNUz5SnjDDtpQIPW+LALREtP1ntt/nqsvAhMKAt/+Gk9wzti+tzDsWHyWnDjNn/3I3 7jMNtT4A6z3tVfOVXVoZV3hB8glF1wJDThpbsFLPQF9TmYwgw3caIsL5rXCWgCnUnmWb BZXw+5N/djV7cwfbN7Wg4cbywqgtpNbP5uVVumsFl9mpKGQI0+BvFcSaQl8xsUVs3z+c c/nhTWPn4vB3JLaLdJp6FADbEGAOFwDo+NvetBwsBvdWMQsEyjsjOG+MXf0gnWY61xa3 l+8crAj42/eJmnN5wcEEWbKnkzuHh5bKbfbwYbX91kH1G+xH3WL24h6bKbNe52dwF4TB ggBg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=K93yHeEhTRehXjvsnkbtV8gK9y/yNpuqmo6i3DzfE1k=; b=QdtxnMiudlx1/fO7i1thAVUPli1K7WysHH1T5t35wvfhm3elLxRWan6tXz48d/D6W8 /XJ1iDnZVTnpQyp/Esr1j2b6fGtTZOY1f6ImnlwtVZOdZiR7+ed9BS0sdZqVBwYZIBWo L4BfOo2y+6SQrX4P7VCrbSFZ2orwvy1FYd0DgdOZXzUSGz3i/HQFfUjQbfKdtIc5eKn5 6xWkrQ/DhtCx+s3/8MCJYsWz2/GT9vMOOrMgCMtHEjf9jDIZlYsOiZS+4c1zZjxtaLNU lAFrZ9/nIsXfD2h3dkmVqVFlJneu393ZKmVk0EHb1hz/nPFIwNs9MF/AMWJiBxYYWIuk 5Nog== X-Gm-Message-State: AOAM531c1qsAPZ70zCxiwxtskOiQzxzQoHoi1sGS3xsLAWMiRQcYFWA7 PFgKRDk+sZmhJzyC4/B7ltfT/tKCAR3mpozF X-Google-Smtp-Source: ABdhPJykOyJEX38hgRjZHITV0OtZt+/8DAKby03VxFMvz1O7mdVtrB+voWXhsPK6Vyq63luFhcBaww== X-Received: by 2002:a1c:1b8c:: with SMTP id b134mr2750620wmb.44.1639748268853; Fri, 17 Dec 2021 05:37:48 -0800 (PST) Received: from localhost.localdomain ([2a01:e0a:82c:5f0:9c6e:200e:26e7:6955]) by smtp.gmail.com with ESMTPSA id k33sm4178752wms.21.2021.12.17.05.37.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 17 Dec 2021 05:37:48 -0800 (PST) From: Loic Poulain To: openembedded-core@lists.openembedded.org Cc: Loic Poulain Subject: [meta-oe][PATCH 1/2] libqrtr-glib: Initial recipe for libqrtr-glib 1.0.0 Date: Fri, 17 Dec 2021 14:37:43 +0100 Message-Id: <20211217133744.10922-1-loic.poulain@linaro.org> X-Mailer: git-send-email 2.17.1 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 17 Dec 2021 13:37:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/159825 libqrtr-glib is a glib-based library to use and manage the QRTR (Qualcomm IPC Router) bus. This bus is in turn a way to reach remote services via QMI messages. It is especially used by libqmi, for talking to integrated or PCIe Qualcomm WWAN modems. Signed-off-by: Loic Poulain --- .../libqrtr-glib/libqrtr-glib_1.0.0.bb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 meta-oe/recipes-connectivity/libqrtr-glib/libqrtr-glib_1.0.0.bb diff --git a/meta-oe/recipes-connectivity/libqrtr-glib/libqrtr-glib_1.0.0.bb b/meta-oe/recipes-connectivity/libqrtr-glib/libqrtr-glib_1.0.0.bb new file mode 100644 index 000000000..29f0e2214 --- /dev/null +++ b/meta-oe/recipes-connectivity/libqrtr-glib/libqrtr-glib_1.0.0.bb @@ -0,0 +1,13 @@ +SUMMARY = "libqrtr-glib is a glib-based library to use and manage the QRTR bus." +HOMEPAGE = "https://gitlab.freedesktop.org/mobile-broadband/libqrtr-glib" +LICENSE = "LGPLv2.1" +LIC_FILES_CHKSUM = " \ + file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \ +" +DEPENDS = "glib-2.0 glib-2.0-native" + +inherit autotools pkgconfig bash-completion gobject-introspection + +SRC_URI = "http://www.freedesktop.org/software/libqmi/${BPN}-${PV}.tar.xz" + +SRC_URI[sha256sum] = "30d879b2ade6f8f461def3a677755db5c0238babf688d5c83c03b3e6abe35cee" From patchwork Fri Dec 17 13:37:44 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Loic Poulain X-Patchwork-Id: 1660 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 24459C4332F for ; Fri, 17 Dec 2021 13:37:53 +0000 (UTC) Received: from mail-wr1-f42.google.com (mail-wr1-f42.google.com [209.85.221.42]) by mx.groups.io with SMTP id smtpd.web08.6195.1639748271987098557 for ; Fri, 17 Dec 2021 05:37:52 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=gwVKuRRB; spf=pass (domain: linaro.org, ip: 209.85.221.42, mailfrom: loic.poulain@linaro.org) Received: by mail-wr1-f42.google.com with SMTP id v11so4064560wrw.10 for ; Fri, 17 Dec 2021 05:37:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=NjpomhRJY5NcwUf7L0uFiiD8Qp2qwjzKb3n3q9dEHyE=; b=gwVKuRRBEkBBI1k5MuRp3lznOBovdFuyGVKIEuMNw7E+FZ//i9c0rjDAk6MU5hUblW X2EmK/vSwt2BcyZifv/UExGDk/Jdagi4/lUgD5H3T1FBG69RO0sHZ075FCKi6dqLWc/x BopBHr8Mi0KvSr6g3GTmr5kcBFXk0GfLi6qYqwC9Aa280roujNbFHg8Ej6UHfEhjOdSa OIrBPyl92GiNHlUHxaReAR/Ft51xoV82bnHu7e+dzPzQ2boSkzjztHNYOo3fIiLxO+87 6PRUGB6Ec/DjOLuXkns4Isedj/vLTvAYkyAZcHAPlFflSpatao0nlqOiLAbbcG8blr+n DbHg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=NjpomhRJY5NcwUf7L0uFiiD8Qp2qwjzKb3n3q9dEHyE=; b=GVNlpcLkU5W3QcGVx/dWXZpeZ5m4/NFeIFKE2oF09+1in8p7MSeU7ifzLgIljycbiG bf4CWIdDqGf9/SO+Fifo5QXmoNAckdNOB0vkYAXZNwvKmnjWToXiqHVYdwlf+Qj2j2q5 XjTUkZrftNHJ67t+sma7mO/JmiH7GmsYg5X4Ssa/9fLFLbaMidbTCTz6/NgoBssHrZVu /ToOwi9KxeAP1ldQzBjsIxlZrzrDPqiGmeSsQWZhiPSv5yXbl3bUbCJPBao+GvdmOFa5 Qx7nZQ+/lQrrTVfO/gbQURvadLFF8yno8cBxui8K7ImXHe1kh+he/h1fIusw9T3aZ8lH P8CQ== X-Gm-Message-State: AOAM530nySBuN/EoCR8vDC+gZnEzBb4an4hwNBh1LW0ddSZIv3TebT6W 8DAt/i7wASbCR65xYmNimIb7DGu7h8opKT3L X-Google-Smtp-Source: ABdhPJz3gmdr5HxDDa7z8l5K6ABRghc4XOEQ1hoLm2ruOSpUsIOlFdoHct0D3oH2Q7UstBhNMv8c3A== X-Received: by 2002:adf:d1ce:: with SMTP id b14mr2585407wrd.704.1639748270287; Fri, 17 Dec 2021 05:37:50 -0800 (PST) Received: from localhost.localdomain ([2a01:e0a:82c:5f0:9c6e:200e:26e7:6955]) by smtp.gmail.com with ESMTPSA id k33sm4178752wms.21.2021.12.17.05.37.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 17 Dec 2021 05:37:49 -0800 (PST) From: Loic Poulain To: openembedded-core@lists.openembedded.org Cc: Loic Poulain Subject: [meta-oe][PATCH 2/2] libqmi: build with qrtr support Date: Fri, 17 Dec 2021 14:37:44 +0100 Message-Id: <20211217133744.10922-2-loic.poulain@linaro.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20211217133744.10922-1-loic.poulain@linaro.org> References: <20211217133744.10922-1-loic.poulain@linaro.org> List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 17 Dec 2021 13:37:53 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/159826 QRTR is a virtual bus for talking to Qualcomm based modems, either integrated or PCIe. Signed-off-by: Loic Poulain --- meta-oe/recipes-connectivity/libqmi/libqmi_1.30.2.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-connectivity/libqmi/libqmi_1.30.2.bb b/meta-oe/recipes-connectivity/libqmi/libqmi_1.30.2.bb index c337abde3..1f1179865 100644 --- a/meta-oe/recipes-connectivity/libqmi/libqmi_1.30.2.bb +++ b/meta-oe/recipes-connectivity/libqmi/libqmi_1.30.2.bb @@ -16,6 +16,7 @@ SRC_URI = "http://www.freedesktop.org/software/${BPN}/${BPN}-${PV}.tar.xz" SRC_URI[sha256sum] = "be01ece0ea2c2194cbea5744bf5aaf06c04ba5fb7ec7887a13116c76d114fedd" -PACKAGECONFIG ??= "udev mbim" +PACKAGECONFIG ??= "udev mbim qrtr" PACKAGECONFIG[udev] = ",--without-udev,libgudev" +PACKAGECONFIG[qrtr] = "--enable-qrtr,--disable-qrtr,libqrtr-glib" PACKAGECONFIG[mbim] = "--enable-mbim-qmux,--disable-mbim-qmux,libmbim"