From mboxrd@z Thu Jan 1 00:00:00 1970 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 36788C4332F for ; Tue, 26 Apr 2022 20:02:57 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web08.2291.1651003375402935254 for ; Tue, 26 Apr 2022 13:02:55 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=ornZf7VW; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: afd@ti.com) Received: from fllv0035.itg.ti.com ([10.64.41.0]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 23QK2scs042625; Tue, 26 Apr 2022 15:02:54 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1651003374; bh=2DFtQQtmiBmYqPQw1i4vsGg+Y+erQtZWxeWYRC0UDt8=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=ornZf7VW/24k5iJG5NYBdHZnmixacacS01T38kaatOXeyTIWNOxAqOU6t0voR3fqB 1qI0AUmvAtxMgPJh/hi4wR8wNnLoPw7A5ErX7mb4hV2QAgyud0khkIEErimOP3o0uw TCVOkghXn6xGg0Mj1gUolhSN2xhlVMcwDweUbMJ4= Received: from DLEE102.ent.ti.com (dlee102.ent.ti.com [157.170.170.32]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 23QK2s4Y085914 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 26 Apr 2022 15:02:54 -0500 Received: from DLEE113.ent.ti.com (157.170.170.24) by DLEE102.ent.ti.com (157.170.170.32) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Tue, 26 Apr 2022 15:02:53 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DLEE113.ent.ti.com (157.170.170.24) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Tue, 26 Apr 2022 15:02:53 -0500 Received: from ula0226330.dal.design.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 23QK2pgc099348; Tue, 26 Apr 2022 15:02:53 -0500 From: Andrew Davis To: Denys Dmytriyenko , Ryan Eatmon , CC: Andrew Davis Subject: [meta-arago][oe-layersetup PATCH 6/6] Build Poky using meta-yocto instead of combined poky repo Date: Tue, 26 Apr 2022 15:02:51 -0500 Message-ID: <20220426200251.19417-6-afd@ti.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20220426200251.19417-1-afd@ti.com> References: <20220426200251.19417-1-afd@ti.com> MIME-Version: 1.0 Content-Type: text/plain X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 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 20:02:57 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/13796 The Poky repo contains meta-yocto plus extra bits needed for an all-in-one build, but since we already pull in tools with this script like bitbake and oe-core, lets use those and save some space/bandwidth. Signed-off-by: Andrew Davis --- configs/poky-master-config.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configs/poky-master-config.txt b/configs/poky-master-config.txt index b395ff8..a541501 100644 --- a/configs/poky-master-config.txt +++ b/configs/poky-master-config.txt @@ -1,8 +1,10 @@ # This file takes repo entries in the format # repo name,repo uri,repo branch,repo commit[,layers=layer1:layer2...:layern] + bitbake,git://git.openembedded.org/bitbake,master,HEAD -poky,git://git.yoctoproject.org/poky,master,HEAD,layers=meta:meta-poky:meta-yocto-bsp +meta-yocto,git://git.yoctoproject.org/meta-yocto,master,HEAD,layers=meta-poky:meta-yocto-bsp meta-ti,git://git.yoctoproject.org/meta-ti,master,HEAD,layers=meta-ti-extras:meta-ti-bsp meta-arm,git://git.yoctoproject.org/meta-arm,master,HEAD,layers=meta-arm:meta-arm-toolchain +oe-core,git://git.openembedded.org/openembedded-core,master,HEAD,layers=meta OECORELAYERCONF=./sample-files/bblayers.conf.sample OECORELOCALCONF=./sample-files/local-poky-v2.conf.sample -- 2.17.1