From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from fllv0016.ext.ti.com (fllv0016.ext.ti.com [198.47.19.142]) by arago-project.org (Postfix) with ESMTP id 83380520EA for ; Thu, 14 Jan 2021 16:47:48 +0000 (UTC) Received: from lelv0266.itg.ti.com ([10.180.67.225]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 10EGlpt3104927; Thu, 14 Jan 2021 10:47:51 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1610642871; bh=q81e6f2kcmrH7w8Gt2/vxjIbV8+cO7EF3uRHEfKunVE=; h=From:To:CC:Subject:Date; b=YaMnrAesecQoL2J6GNZjZI2fz81flCPv2tPlUOBd9j+++BPWobqQ2j5mZ5D56ZRCo Fy7oqLwHRXuI8+u5abeoZ1NSi8brL55RbdmJ06Vy89RLUUX+1OXSkAxMal74a6aib9 sBeoZGrHatCQwZc3fP9NjZHqlgVbMcLeKn6+l5R8= Received: from DFLE115.ent.ti.com (dfle115.ent.ti.com [10.64.6.36]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 10EGlpwW055611 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 14 Jan 2021 10:47:51 -0600 Received: from DFLE113.ent.ti.com (10.64.6.34) by DFLE115.ent.ti.com (10.64.6.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3; Thu, 14 Jan 2021 10:47:50 -0600 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE113.ent.ti.com (10.64.6.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3 via Frontend Transport; Thu, 14 Jan 2021 10:47:50 -0600 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 10EGloSG055039; Thu, 14 Jan 2021 10:47:50 -0600 From: Dan Murphy To: Date: Thu, 14 Jan 2021 10:47:43 -0600 Message-ID: <20210114164743.2340-1-dmurphy@ti.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Subject: [dunfell/master] [RFC PATCH] branding: Add branding-core-next to aid in migration X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jan 2021 16:47:48 -0000 Content-Transfer-Encoding: 8bit Content-Type: text/plain Add a core-next brand branding type to be able to re-direct the recipe preferred providers or versions to highest PV'd recipe. The branding-core should indicate the current version to build if not the highest version. For the purpose of an example the Arago distribution will be migrating from the 5.4 kernel to the 5.10 during the 2021 time frame. In order to assist with a smoother migration the distribution needs to be able to build the 5.4 kernel for the core brand and build the 5.10 kernel for the core-next. Once the transition from 5.4->5.10 kernel is done then the PREFERRED_VERSION in the branding-core.inc can be removed. From: Dan Murphy Signed-off-by: Dan Murphy --- .../conf/distro/include/branding-core-next.inc | 6 ++++++ meta-arago-distro/conf/distro/include/branding-core.inc | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 meta-arago-distro/conf/distro/include/branding-core-next.inc diff --git a/meta-arago-distro/conf/distro/include/branding-core-next.inc b/meta-arago-distro/conf/distro/include/branding-core-next.inc new file mode 100644 index 000000000000..d65c5db2f379 --- /dev/null +++ b/meta-arago-distro/conf/distro/include/branding-core-next.inc @@ -0,0 +1,6 @@ +# Special "migration" branding for testing components that are to be updated in LTS migration + +require branding-core.inc + +PREFERRED_VERSION_linux-ti-staging = "" +PREFERRED_VERSION_u-boot-ti-staging = "" diff --git a/meta-arago-distro/conf/distro/include/branding-core.inc b/meta-arago-distro/conf/distro/include/branding-core.inc index cab9831be9f9..a0abc6230780 100644 --- a/meta-arago-distro/conf/distro/include/branding-core.inc +++ b/meta-arago-distro/conf/distro/include/branding-core.inc @@ -11,3 +11,6 @@ ALTERNATIVE_PRIORITY_pn-opencl-monitor-ipu = "1" # Raise priority for sample IPC FW images ALTERNATIVE_PRIORITY_pn-ti-ipc-rtos = "15" + +PREFERRED_VERSION_linux-ti-staging = "5.4%" +PREFERRED_VERSION_u-boot-ti-staging = "2020.01%" -- 2.29.2