From patchwork Tue Apr 26 02:53:59 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Mittal, Anuj" X-Patchwork-Id: 7156 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 ABFB2C433F5 for ; Tue, 26 Apr 2022 02:54:18 +0000 (UTC) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web09.1727.1650941653883027039 for ; Mon, 25 Apr 2022 19:54:14 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=VDkuQZTE; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: anuj.mittal@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650941653; x=1682477653; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=2M7zbXb4KodL5DiHR4xmKaDVHSyTqw6G8thD2ihHfCA=; b=VDkuQZTEAJVRovjN+JoCtKrgV8rhOUCZTgkYzZYXBwOB4JxMctp+5LKx fKAWP6REwDBkZT0T51tpAd8r020JYdONpFPMuQVzdIG1AIxRkg8uLyM3V 43dfVWJkxNMXFyB8UMe0js96kov6lX4Nf96TY3s53KmWXjrg4w2zFk57G 16WbEB3s3GAueWjEsUYYoG42wdleIgnfiBfw5bYC/f4gV2poqmhowQ99o v/yfMhLXsDdFIRB7v5mNhpPtlDDqp+Ae+6OU42l2LCZEC7iCdnpgfGftM ufgbCVt6L3J+FN0ry7xURL/yEqRjmWOJX7NgmIDXbQrWK4zGrH9c/EY1M g==; X-IronPort-AV: E=McAfee;i="6400,9594,10328"; a="264950952" X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="264950952" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:12 -0700 X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="660439797" Received: from huiyingn-mobl2.gar.corp.intel.com (HELO anmitta2-mobl3.intel.com) ([10.213.47.238]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:11 -0700 From: Anuj Mittal To: openembedded-core@lists.openembedded.org Subject: [honister][PATCH 1/7] gmp: add missing COPYINGv3 Date: Tue, 26 Apr 2022 10:53:59 +0800 Message-Id: <8b6a363e0acfb690bb3621eeb55cab7c1f2294cc.1650941226.git.anuj.mittal@intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: References: MIME-Version: 1.0 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 ; Tue, 26 Apr 2022 02:54:18 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/164848 From: Konrad Weihmann add COPYINGv3 license text to LIC_FILES_CHKSUM Signed-off-by: Konrad Weihmann Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit 8e8cf07a58a6bf5412572e76e2a7ab27df8af01f) Signed-off-by: Anuj Mittal --- meta/recipes-support/gmp/gmp_6.2.1.bb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/meta/recipes-support/gmp/gmp_6.2.1.bb b/meta/recipes-support/gmp/gmp_6.2.1.bb index e61582afdf..091a390511 100644 --- a/meta/recipes-support/gmp/gmp_6.2.1.bb +++ b/meta/recipes-support/gmp/gmp_6.2.1.bb @@ -2,9 +2,11 @@ require gmp.inc LICENSE = "GPLv2+ | LGPLv3+" -LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ - file://COPYING.LESSERv3;md5=6a6a8e020838b23406c81b19c1d46df6 \ - file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ +LIC_FILES_CHKSUM = "\ + file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \ + file://COPYING.LESSERv3;md5=6a6a8e020838b23406c81b19c1d46df6 \ + file://COPYINGv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ + file://COPYINGv3;md5=11cc2d3ee574f9d6b7ee797bdce4d423 \ " REVISION = "" From patchwork Tue Apr 26 02:54:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Mittal, Anuj" X-Patchwork-Id: 7155 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 B0D19C433EF for ; Tue, 26 Apr 2022 02:54:18 +0000 (UTC) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web09.1726.1650941652560455819 for ; Mon, 25 Apr 2022 19:54:15 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=FQZEz6Z4; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: anuj.mittal@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650941654; x=1682477654; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=tkDx4M2uMLv6CRjWIMpEKGm2tEhdHIPWSt6D4oAlAyg=; b=FQZEz6Z4j+eBmxQ68fjsPhhmpKEvO7EYs2ZfaDmjM+MIl8m2Y724/Tp4 jQlMXAeDFymE5faFuDMkX7+fXuADwpkA7Z/tvr7I7DdVhVc7Wo4Uar9tE W6BV9kS9Xf8GUD7//FQAQ9gpgXGIAdBh6acokwSpHC5Q7gV4Ut4/Yigfc F4PS2t1yJznNw1ZbC7cs+fH/J6oCVYkVNfRfn7oHTLuSIdAFQGvnXo799 0Os0n0boUr8XulkUX/3zyMtVXCHVqRMUJp6CLns/N+LzOWDr1st1aVgWb H77N1Kp4H+3x/+3mWp9Kabr3aNjDkbTl8w4j6ZBv8Fjcxxu/r6Hj2aFuK A==; X-IronPort-AV: E=McAfee;i="6400,9594,10328"; a="264950956" X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="264950956" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:14 -0700 X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="660439813" Received: from huiyingn-mobl2.gar.corp.intel.com (HELO anmitta2-mobl3.intel.com) ([10.213.47.238]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:13 -0700 From: Anuj Mittal To: openembedded-core@lists.openembedded.org Subject: [honister][PATCH 2/7] alsa-tools: Ensure we install correctly Date: Tue, 26 Apr 2022 10:54:00 +0800 Message-Id: X-Mailer: git-send-email 2.35.1 In-Reply-To: References: MIME-Version: 1.0 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 ; Tue, 26 Apr 2022 02:54:18 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/164849 From: Richard Purdie With the fix for #8621, cleandirs is now applied to autotools_do_install and this results in a lot of the install targets to be removed. Ensure cleandirs isn't set for autotools_do_install. Signed-off-by: Richard Purdie (cherry picked from commit 72299395b06fc3fdaca5f7b8b87a6ea32a6267ad) Signed-off-by: Anuj Mittal --- meta/recipes-multimedia/alsa/alsa-tools_1.2.5.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.2.5.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.2.5.bb index 540f4f79f4..e6fe83a186 100644 --- a/meta/recipes-multimedia/alsa/alsa-tools_1.2.5.bb +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.2.5.bb @@ -71,6 +71,7 @@ python do_compile() { } python do_install() { + d.delVarFlag("autotools_do_install", "cleandirs") for subdir in d.getVar("PACKAGECONFIG").split(): subdir = subdir.replace("--", "/") bb.note("Installing %s" % subdir) From patchwork Tue Apr 26 02:54:01 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Mittal, Anuj" X-Patchwork-Id: 7159 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 8FB0DC433FE for ; Tue, 26 Apr 2022 02:54:28 +0000 (UTC) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web12.1700.1650941656313754698 for ; Mon, 25 Apr 2022 19:54:16 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=hJvRCup4; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: anuj.mittal@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650941656; x=1682477656; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=fOXJEgSFmJtSMzL8ZiUbK8d43aI11zrfhDf16L8ZE1E=; b=hJvRCup465FWz7kjIGWQdZAks1VmEI1JT4Y7Bh8aVlGRG2xpBK3opWxi C5++D33Zzy1+aAj1UZFCXGy8LdDa+0yqQKRpZAAaVVtOdEcNMmg6pJuDc Qv3m8aneuljxNMR/rpvGeNweYvGksNM4QmU1wD91AtDdtACzi+uKihPC4 ukQaz06FTkx9PpADI2mH4O6oCyjC9kQQ72iGK+GCQJzBbUqozRFFowGrS 1Rm0leAjsgZtEOtLaIn40DECWj7cFeKqwOJRvDDyi3UR2B9R4KTqJ97s7 rMuca5gYWEZTOEtDa3B6XNHc0wqjZn71ekSqvKfnqZC8m1u25LvsciJmQ w==; X-IronPort-AV: E=McAfee;i="6400,9594,10328"; a="264950963" X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="264950963" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:15 -0700 X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="660439837" Received: from huiyingn-mobl2.gar.corp.intel.com (HELO anmitta2-mobl3.intel.com) ([10.213.47.238]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:14 -0700 From: Anuj Mittal To: openembedded-core@lists.openembedded.org Subject: [honister][PATCH 3/7] u-boot: Inherit pkgconfig Date: Tue, 26 Apr 2022 10:54:01 +0800 Message-Id: <3acf518f06afa73ec68556a2ef19db68576144ad.1650941226.git.anuj.mittal@intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: References: MIME-Version: 1.0 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 ; Tue, 26 Apr 2022 02:54:28 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/164850 From: Peter Kjellerstedt pkg-config is used by the Makefiles, and thus pkgconfig needs to be inherited. Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie (cherry picked from commit 6148ac9bc5d3e0d0ffdbbd6695acd96ca1836b78) Signed-off-by: Anuj Mittal --- meta/recipes-bsp/u-boot/u-boot-common.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-bsp/u-boot/u-boot-common.inc b/meta/recipes-bsp/u-boot/u-boot-common.inc index 2423e9ca14..9af65e6b27 100644 --- a/meta/recipes-bsp/u-boot/u-boot-common.inc +++ b/meta/recipes-bsp/u-boot/u-boot-common.inc @@ -19,4 +19,7 @@ SRC_URI = "git://git.denx.de/u-boot.git;branch=master \ S = "${WORKDIR}/git" B = "${WORKDIR}/build" + +inherit pkgconfig + do_configure[cleandirs] = "${B}" From patchwork Tue Apr 26 02:54:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Mittal, Anuj" X-Patchwork-Id: 7160 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 90A6AC4332F for ; Tue, 26 Apr 2022 02:54:28 +0000 (UTC) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web12.1700.1650941656313754698 for ; Mon, 25 Apr 2022 19:54:18 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=IS3JKsmQ; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: anuj.mittal@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650941657; x=1682477657; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=Kg2gjhyI74UlXm/8p6Pu3kLV/dI1gti5HWshaaSERA4=; b=IS3JKsmQbn1cf0pHYVMNMsxYQhdrgTaaJeXwx04TOLgOn/AgzIJGVLWr A8l6E0RDU0+Bt2t0WBn+WJLvqFXYxCK/rO0P3CldwQoU6Qi1yTwZM+hzW OpD+jYUTMm97TTAb6xCm4w5oSIphiYtGb3QTpxixnvvgTkm9SMcAFQBbC tK17oB9s0AlwX1haONik/X9nLOoT6T+8O/i69osggDlw0+G8i+t5IUrgi BbLoTcR91vIT00cYEL++FVKDqdWhgAcPyFHASboHDkiKtlecwOQ/wHKTj 4gf5w3nK+KPfWdAQvW3GdVoxAm4CuJv5kAcnhMdftunILsSoF0FcKx7BK Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10328"; a="264950967" X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="264950967" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:17 -0700 X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="660439854" Received: from huiyingn-mobl2.gar.corp.intel.com (HELO anmitta2-mobl3.intel.com) ([10.213.47.238]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:16 -0700 From: Anuj Mittal To: openembedded-core@lists.openembedded.org Subject: [honister][PATCH 4/7] linux-firmware: upgrade 20220310 -> 20220411 Date: Tue, 26 Apr 2022 10:54:02 +0800 Message-Id: <9c9594ca55e498313d89f609af12ef3f507c7e69.1650941226.git.anuj.mittal@intel.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: References: MIME-Version: 1.0 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 ; Tue, 26 Apr 2022 02:54:28 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/164851 From: wangmy License-Update: Version of driver files updated Added files for some drivers Signed-off-by: Wang Mingyu Signed-off-by: Richard Purdie (cherry picked from commit 01684df3a51be476081ee21eb54c24fef00acb3f) Signed-off-by: Anuj Mittal --- ...{linux-firmware_20220310.bb => linux-firmware_20220411.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-kernel/linux-firmware/{linux-firmware_20220310.bb => linux-firmware_20220411.bb} (99%) diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20220310.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb similarity index 99% rename from meta/recipes-kernel/linux-firmware/linux-firmware_20220310.bb rename to meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb index fa0f906db0..c7d9e1126e 100644 --- a/meta/recipes-kernel/linux-firmware/linux-firmware_20220310.bb +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb @@ -132,7 +132,7 @@ LIC_FILES_CHKSUM = "file://LICENCE.Abilis;md5=b5ee3f410780e56711ad48eadc22b8bc \ file://LICENCE.xc4000;md5=0ff51d2dc49fce04814c9155081092f0 \ file://LICENCE.xc5000;md5=1e170c13175323c32c7f4d0998d53f66 \ file://LICENCE.xc5000c;md5=12b02efa3049db65d524aeb418dd87ca \ - file://WHENCE;md5=45a9c4a92d152e9495db81e1192f2bdc \ + file://WHENCE;md5=4cf67d71a21887c682c3989a4318745e \ " # These are not common licenses, set NO_GENERIC_LICENSE for them @@ -205,7 +205,7 @@ PE = "1" SRC_URI = "${KERNELORG_MIRROR}/linux/kernel/firmware/${BPN}-${PV}.tar.xz" -SRC_URI[sha256sum] = "5938ee717b2023b48f6bfcf344b40ddc947e3e22c0bc36d4c3418f90fea68182" +SRC_URI[sha256sum] = "020b11f6412f4956f5a6f98de7d41867d2b30ea0ce81b1e2d206ec9840363849" inherit allarch From patchwork Tue Apr 26 02:54:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Mittal, Anuj" X-Patchwork-Id: 7161 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 8F0B9C433F5 for ; Tue, 26 Apr 2022 02:54:28 +0000 (UTC) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web12.1700.1650941656313754698 for ; Mon, 25 Apr 2022 19:54:19 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=Pz0zi/JR; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: anuj.mittal@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650941659; x=1682477659; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=OgCKVgySNxkD5ZJ1pwIytEnek1hqQrAbVa2o2+88DMg=; b=Pz0zi/JRTIZul0PX4jsCtJonu0OhNs/PuZmxdO/nl4QWmU6R2EsxwJhn lXSa6gbPAvnGnSmdeWIuJ1/4GoOlcGej/65FV5nimc/zCz3eq71jFvHLf 5f1kiASZcJ64bkbI9m4qQwW2Z8Wa6aNrDEebYvQ5XHZp/Y3Wx3M9jLB+e 4xUaflvDaD8YGi5VYBN9DYT/7y8NJqW5doEw8rD4aWtN02JZZxr/t1Oec EV1QXbnqm9h8URRSdr/Xr13if73FDFlZnkk1GGNsg/SCPEx1XcBYPhrZa mfHcIogqZY9FvOSEHzZQ5snj8YkKldeh+Kws298rwlrC0xalka1NB80Zv A==; X-IronPort-AV: E=McAfee;i="6400,9594,10328"; a="264950973" X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="264950973" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:18 -0700 X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="660439869" Received: from huiyingn-mobl2.gar.corp.intel.com (HELO anmitta2-mobl3.intel.com) ([10.213.47.238]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:17 -0700 From: Anuj Mittal To: openembedded-core@lists.openembedded.org Subject: [honister][PATCH 5/7] wireless-regdb: upgrade 2022.02.18 -> 2022.04.08 Date: Tue, 26 Apr 2022 10:54:03 +0800 Message-Id: X-Mailer: git-send-email 2.35.1 In-Reply-To: References: MIME-Version: 1.0 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 ; Tue, 26 Apr 2022 02:54:28 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/164852 From: zhengruoqin Signed-off-by: Zheng Ruoqin Signed-off-by: Richard Purdie (cherry picked from commit c6ea7450a919f2b571746e7af350c1362e41f8e1) Signed-off-by: Anuj Mittal --- ...ireless-regdb_2022.02.18.bb => wireless-regdb_2022.04.08.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-kernel/wireless-regdb/{wireless-regdb_2022.02.18.bb => wireless-regdb_2022.04.08.bb} (94%) diff --git a/meta/recipes-kernel/wireless-regdb/wireless-regdb_2022.02.18.bb b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2022.04.08.bb similarity index 94% rename from meta/recipes-kernel/wireless-regdb/wireless-regdb_2022.02.18.bb rename to meta/recipes-kernel/wireless-regdb/wireless-regdb_2022.04.08.bb index 801a6f0584..cd42039680 100644 --- a/meta/recipes-kernel/wireless-regdb/wireless-regdb_2022.02.18.bb +++ b/meta/recipes-kernel/wireless-regdb/wireless-regdb_2022.04.08.bb @@ -5,7 +5,7 @@ LICENSE = "ISC" LIC_FILES_CHKSUM = "file://LICENSE;md5=07c4f6dea3845b02a18dc00c8c87699c" SRC_URI = "https://www.kernel.org/pub/software/network/${BPN}/${BP}.tar.xz" -SRC_URI[sha256sum] = "8828c25a4ee25020044004f57374bb9deac852809fad70f8d3d01770bf9ac97f" +SRC_URI[sha256sum] = "884ba2e3c1e8b98762b6dc25ff60b5ec75c8d33a39e019b3ed4aa615491460d3" inherit bin_package allarch From patchwork Tue Apr 26 02:54:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Mittal, Anuj" X-Patchwork-Id: 7158 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 9A683C43217 for ; Tue, 26 Apr 2022 02:54:28 +0000 (UTC) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web12.1700.1650941656313754698 for ; Mon, 25 Apr 2022 19:54:21 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=S2D2l4wG; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: anuj.mittal@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650941660; x=1682477660; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=EL3fYsUJoNCIUOxRSX7pm0R6GVF2RxAwk4SP6ZI5wSo=; b=S2D2l4wGpbiTkAMsxjpXxQbAo2QwvvxVpbvhV6hLLrey4PcgEBno8ikk +9S+iedH7GLyJvfeyt0MlKMwwoVOIYPFnmIx8LE81wol0JrHc1SFnxoxE DIEpQABSU5j5zXdtal9vabxzHU5MzPNhzFL8xzI/PgfwfJ4ZfDAFlmNjq 94IUnaZ/ZWQS/gu4gJuQWxC4aBv9LlaZhDS6nUrCl/6uawm98iDnNUZyL Nq+CiS6U0GEoLq250zsNwGnVq/Pb4QBWZ9M1ro2z2NLSGRWopnQsDSRIm bMMSZTuslf5D1xnuatoA9RzRR0LnXCtftDaxvYrm+uT+BB0VyvJeJyFYe A==; X-IronPort-AV: E=McAfee;i="6400,9594,10328"; a="264950977" X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="264950977" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:20 -0700 X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="660439881" Received: from huiyingn-mobl2.gar.corp.intel.com (HELO anmitta2-mobl3.intel.com) ([10.213.47.238]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:19 -0700 From: Anuj Mittal To: openembedded-core@lists.openembedded.org Subject: [honister][PATCH 6/7] linux-firmware: correct license for ar3k firmware Date: Tue, 26 Apr 2022 10:54:04 +0800 Message-Id: X-Mailer: git-send-email 2.35.1 In-Reply-To: References: MIME-Version: 1.0 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 ; Tue, 26 Apr 2022 02:54:28 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/164853 From: Dmitry Baryshkov According to the WHENCE file, some a3k firmware files are licensed under the special ar3k license, while others are licensed under the more generic Atheros license. Document this by adding extending the LICENSE:${PN}-ar3k and depending on both of them. Signed-off-by: Dmitry Baryshkov Signed-off-by: Luca Ceresoli (cherry picked from commit 8e651814af706285d64b532095fcd6f5f02629ba) Signed-off-by: Anuj Mittal --- meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb index c7d9e1126e..4a443d14d1 100644 --- a/meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_20220411.bb @@ -352,7 +352,7 @@ FILES:${PN}-carl9170 = " \ RDEPENDS:${PN}-carl9170 += "${PN}-gplv2-license" # For QualCommAthos -LICENSE:${PN}-ar3k = "Firmware-qualcommAthos_ar3k" +LICENSE:${PN}-ar3k = "Firmware-qualcommAthos_ar3k & Firmware-atheros_firmware" LICENSE:${PN}-ar3k-license = "Firmware-qualcommAthos_ar3k" LICENSE:${PN}-ath10k = "Firmware-qualcommAthos_ath10k" LICENSE:${PN}-ath10k-license = "Firmware-qualcommAthos_ath10k" @@ -376,7 +376,7 @@ FILES:${PN}-qca = " \ ${nonarch_base_libdir}/firmware/qca \ " -RDEPENDS:${PN}-ar3k += "${PN}-ar3k-license" +RDEPENDS:${PN}-ar3k += "${PN}-ar3k-license ${PN}-atheros-license" RDEPENDS:${PN}-ath10k += "${PN}-ath10k-license" RDEPENDS:${PN}-ath11k += "${PN}-ath10k-license" RDEPENDS:${PN}-qca += "${PN}-ath10k-license" From patchwork Tue Apr 26 02:54:05 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Mittal, Anuj" X-Patchwork-Id: 7162 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 9A6CBC43219 for ; Tue, 26 Apr 2022 02:54:28 +0000 (UTC) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mx.groups.io with SMTP id smtpd.web12.1700.1650941656313754698 for ; Mon, 25 Apr 2022 19:54:22 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=IgkkR5wH; spf=pass (domain: intel.com, ip: 134.134.136.24, mailfrom: anuj.mittal@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650941662; x=1682477662; h=from:to:subject:date:message-id:in-reply-to:references: mime-version:content-transfer-encoding; bh=m+Wf6Ks6dNnAYfgph0M7xFRpr4TVueaXELbNgCMdjgA=; b=IgkkR5wHbu5vsUcQy3w0PiOmG7CZpoRKCu/PqVTsYMhcYTsVzQRqZCWQ lUEd4Ex/CiIe1knWqV9Ag8MtOonV+o6lxW23wMrbtoBH4lM/e+bZjlMiQ 2skM/WJvaWU5PaBxn9E8/lKpj9BL1mK9p//fF5Z5OnBmU9KVWpzP3cKFe bANRMo+qLA9wbUtN2LEzBJwntKBGFEkh3QKX5D9TbQjgyGN818R11Thgk Gs3McTkDkRkQ5q9Rzq9OnpT9St220Wc4yMnT60wEfJBa+QbsevUPadtjH ky/eI11O0qsG3f2qyT15J0tfAG5/Xj7ADpXq0AbqRAUb6dTuapHIiOw/z A==; X-IronPort-AV: E=McAfee;i="6400,9594,10328"; a="264950981" X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="264950981" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:22 -0700 X-IronPort-AV: E=Sophos;i="5.90,290,1643702400"; d="scan'208";a="660439898" Received: from huiyingn-mobl2.gar.corp.intel.com (HELO anmitta2-mobl3.intel.com) ([10.213.47.238]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2022 19:54:20 -0700 From: Anuj Mittal To: openembedded-core@lists.openembedded.org Subject: [honister][PATCH 7/7] shadow-native: Simplify and fix syslog disable patch Date: Tue, 26 Apr 2022 10:54:05 +0800 Message-Id: X-Mailer: git-send-email 2.35.1 In-Reply-To: References: MIME-Version: 1.0 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 ; Tue, 26 Apr 2022 02:54:28 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/164854 From: Richard Purdie Shadow is happily spamming the host syslog with messages and shouldn't be which suggests the patch isn't working. Redo it to work at the configure level which is simpler and hopefully more effective. This is a squashed cherry-pick of commit 8f181686 (shadow-native: Simplify and fix syslog disable patch) and commit e1f21d0d (shadow: Disable the use of syslog() for the native tools). Signed-off-by: Peter Kjellerstedt Signed-off-by: Richard Purdie Signed-off-by: Anuj Mittal --- ...01-Disable-use-of-syslog-for-sysroot.patch | 150 +++++------------- 1 file changed, 39 insertions(+), 111 deletions(-) diff --git a/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch b/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch index 95728bcd3f..628db42136 100644 --- a/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch +++ b/meta/recipes-extended/shadow/files/0001-Disable-use-of-syslog-for-sysroot.patch @@ -1,124 +1,52 @@ -From 30a3906a0a21120fa6bbc918b6258ab9303fbeaa Mon Sep 17 00:00:00 2001 -From: Scott Garman -Date: Thu, 14 Apr 2016 12:28:57 +0200 -Subject: [PATCH] Disable use of syslog for sysroot +From 8b845fff891798a03bdf21354b52e4487c2c0200 Mon Sep 17 00:00:00 2001 +From: Richard Purdie +Date: Thu, 14 Apr 2022 23:11:53 +0000 +Subject: [PATCH] Disable use of syslog for shadow-native tools Disable use of syslog to prevent sysroot user and group additions from writing entries to the host's syslog. This patch should only be used with the shadow-native recipe. -Upstream-Status: Inappropriate [disable feature] - -Signed-off-by: Scott Garman +Upstream-Status: Inappropriate [OE specific configuration] +Signed-off-by: Richard Purdie Signed-off-by: Peter Kjellerstedt -Signed-off-by: Chen Qi --- - src/groupadd.c | 3 +++ - src/groupdel.c | 3 +++ - src/groupmems.c | 3 +++ - src/groupmod.c | 3 +++ - src/useradd.c | 3 +++ - src/userdel.c | 4 ++++ - src/usermod.c | 3 +++ - 7 files changed, 22 insertions(+) + configure.ac | 2 +- + src/login_nopam.c | 3 ++- + 2 files changed, 3 insertions(+), 2 deletions(-) -diff --git a/src/groupadd.c b/src/groupadd.c -index d7f68b1..5fe5f43 100644 ---- a/src/groupadd.c -+++ b/src/groupadd.c -@@ -34,6 +34,9 @@ - - #ident "$Id$" - -+/* Disable use of syslog since we're running this command against a sysroot */ -+#undef USE_SYSLOG -+ - #include - #include - #include -diff --git a/src/groupdel.c b/src/groupdel.c -index 5c89312..2aefc5a 100644 ---- a/src/groupdel.c -+++ b/src/groupdel.c -@@ -34,6 +34,9 @@ - +diff --git a/configure.ac b/configure.ac +index 5dcae19..b2c58f5 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -204,7 +204,7 @@ AC_DEFINE_UNQUOTED(PASSWD_PROGRAM, "$shadow_cv_passwd_dir/passwd", + [Path to passwd program.]) + + dnl XXX - quick hack, should disappear before anyone notices :). +-AC_DEFINE(USE_SYSLOG, 1, [Define to use syslog().]) ++#AC_DEFINE(USE_SYSLOG, 1, [Define to use syslog().]) + if test "$ac_cv_func_ruserok" = "yes"; then + AC_DEFINE(RLOGIN, 1, [Define if login should support the -r flag for rlogind.]) + AC_DEFINE(RUSEROK, 0, [Define to the ruserok() "success" return value (0 or 1).]) +diff --git a/src/login_nopam.c b/src/login_nopam.c +index df6ba88..fc24e13 100644 +--- a/src/login_nopam.c ++++ b/src/login_nopam.c +@@ -29,7 +29,6 @@ + #ifndef USE_PAM #ident "$Id$" -+/* Disable use of syslog since we're running this command against a sysroot */ -+#undef USE_SYSLOG -+ - #include - #include - #include -diff --git a/src/groupmems.c b/src/groupmems.c -index 654a8f3..6b2026b 100644 ---- a/src/groupmems.c -+++ b/src/groupmems.c -@@ -32,6 +32,9 @@ - - #include - -+/* Disable use of syslog since we're running this command against a sysroot */ -+#undef USE_SYSLOG -+ - #include - #include - #include -diff --git a/src/groupmod.c b/src/groupmod.c -index acd6f35..a2c5247 100644 ---- a/src/groupmod.c -+++ b/src/groupmod.c -@@ -34,6 +34,9 @@ - - #ident "$Id$" - -+/* Disable use of syslog since we're running this command against a sysroot */ -+#undef USE_SYSLOG -+ - #include - #include - #include -diff --git a/src/useradd.c b/src/useradd.c -index 127177e..b80e505 100644 ---- a/src/useradd.c -+++ b/src/useradd.c -@@ -34,6 +34,9 @@ - - #ident "$Id$" - -+/* Disable use of syslog since we're running this command against a sysroot */ -+#undef USE_SYSLOG -+ - #include - #include - #include -diff --git a/src/userdel.c b/src/userdel.c -index 79a7c89..c1e010a 100644 ---- a/src/userdel.c -+++ b/src/userdel.c -@@ -31,6 +31,10 @@ - */ - - #include -+ -+/* Disable use of syslog since we're running this command against a sysroot */ -+#undef USE_SYSLOG -+ - #include - #include - #include -diff --git a/src/usermod.c b/src/usermod.c -index 03bb9b9..e15fdd4 100644 ---- a/src/usermod.c -+++ b/src/usermod.c -@@ -34,6 +34,9 @@ - - #ident "$Id$" +-#include "prototypes.h" + /* + * This module implements a simple but effective form of login access + * control based on login names and on host (or domain) names, internet +@@ -57,6 +56,8 @@ + #include + #include /* for inet_ntoa() */ -+/* Disable use of syslog since we're running this command against a sysroot */ -+#undef USE_SYSLOG ++#include "prototypes.h" + - #include - #include - #include + #if !defined(MAXHOSTNAMELEN) || (MAXHOSTNAMELEN < 64) + #undef MAXHOSTNAMELEN + #define MAXHOSTNAMELEN 256