From patchwork Wed Dec 4 15:05:06 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chirag Shilwant X-Patchwork-Id: 53613 X-Patchwork-Delegate: reatmon@ti.com 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 77EA5E7716B for ; Wed, 4 Dec 2024 15:05:24 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web11.16444.1733324722992425977 for ; Wed, 04 Dec 2024 07:05:23 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17Q1 header.b=LrwxVYxv; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: c-shilwant@ti.com) Received: from fllv0034.itg.ti.com ([10.64.40.246]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 4B4F5G9i010132; Wed, 4 Dec 2024 09:05:16 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1733324716; bh=i+I+Jh+6EdIn7tOGbsFWDFNKxNmzd4B8A0imiiGangQ=; h=From:To:CC:Subject:Date; b=LrwxVYxvrVMvFxfYRbSr6ONiT187aKl17RskdBpna2yNWdv8nGfxM9i38Fi13a30d fKbhnaDSQddxV3gkovMzXipeuUmJjmdUcyTqCr6my9ljAmolLM/M5/R149zDjuEcSH 0iB9OqeF8i2f6F851Jh1wDPv3mUbqso2ovRr99Vw= Received: from DFLE100.ent.ti.com (dfle100.ent.ti.com [10.64.6.21]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 4B4F5GBe038694 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 4 Dec 2024 09:05:16 -0600 Received: from DFLE112.ent.ti.com (10.64.6.33) by DFLE100.ent.ti.com (10.64.6.21) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Wed, 4 Dec 2024 09:05:16 -0600 Received: from lelvsmtp6.itg.ti.com (10.180.75.249) by DFLE112.ent.ti.com (10.64.6.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Wed, 4 Dec 2024 09:05:16 -0600 Received: from localhost (chirag-hp-z2-tower-g5-workstation.dhcp.ti.com [172.24.227.238]) by lelvsmtp6.itg.ti.com (8.15.2/8.15.2) with ESMTP id 4B4F5FMF089883; Wed, 4 Dec 2024 09:05:16 -0600 From: Chirag Shilwant To: CC: Denys , Ryan Eatmon Subject: [meta-ti][master][PATCH] conf: layer.conf: Drop scarthgap from LAYERSERIES_COMPAT Date: Wed, 4 Dec 2024 20:35:06 +0530 Message-ID: <20241204150506.3419041-1-c-shilwant@ti.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-C2ProcessedOrg: 333ef613-75bf-4e12-a4b1-8e3623f5dcea 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 ; Wed, 04 Dec 2024 15:05:24 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-ti/message/18077 After scarthgap release, oe-core switched to use UNPACKDIR instead of WORKDIR [1]. Post this change, meta-ti updated all references of WORKDIR to UNPACKDIR in master branch. Since, UNPACKDIR changes aren't backported to oe-core:scarthgap, we need to drop it from LAYERSERIES_COMPAT in meta-ti. [1]: https://git.openembedded.org/openembedded-core/commit/?id=e022d62ba917790af2121da57646271ef17c03fa Signed-off-by: Chirag Shilwant Acked-by: Denys Dmytriyenko --- meta-ti-bsp/conf/layer.conf | 2 +- meta-ti-extras/conf/layer.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-ti-bsp/conf/layer.conf b/meta-ti-bsp/conf/layer.conf index 0d67c729..6d2b0a9a 100644 --- a/meta-ti-bsp/conf/layer.conf +++ b/meta-ti-bsp/conf/layer.conf @@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-ti-bsp" BBFILE_PATTERN_meta-ti-bsp := "^${LAYERDIR}/" BBFILE_PRIORITY_meta-ti-bsp = "6" -LAYERSERIES_COMPAT_meta-ti-bsp = "scarthgap styhead walnascar" +LAYERSERIES_COMPAT_meta-ti-bsp = "styhead walnascar" LICENSE_PATH += "${LAYERDIR}/licenses" diff --git a/meta-ti-extras/conf/layer.conf b/meta-ti-extras/conf/layer.conf index 5c493daa..bd139673 100644 --- a/meta-ti-extras/conf/layer.conf +++ b/meta-ti-extras/conf/layer.conf @@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-ti-extras" BBFILE_PATTERN_meta-ti-extras := "^${LAYERDIR}/" BBFILE_PRIORITY_meta-ti-extras = "6" -LAYERSERIES_COMPAT_meta-ti-extras = "scarthgap styhead walnascar" +LAYERSERIES_COMPAT_meta-ti-extras = "styhead walnascar" LICENSE_PATH += "${LAYERDIR}/licenses"