From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bear.ext.ti.com (bear.ext.ti.com [192.94.94.41]) by arago-project.org (Postfix) with ESMTPS id 5B66452A50 for ; Fri, 18 Jul 2014 17:55:26 +0000 (UTC) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id s6IHtOe4001099 for ; Fri, 18 Jul 2014 12:55:24 -0500 Received: from DLEE70.ent.ti.com (dlee70.ent.ti.com [157.170.170.113]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s6IHtObi021059 for ; Fri, 18 Jul 2014 12:55:24 -0500 Received: from dflp33.itg.ti.com (10.64.6.16) by DLEE70.ent.ti.com (157.170.170.113) with Microsoft SMTP Server id 14.3.174.1; Fri, 18 Jul 2014 12:55:24 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id s6IHtOLx022667; Fri, 18 Jul 2014 12:55:24 -0500 Date: Fri, 18 Jul 2014 13:55:23 -0400 From: Denys Dmytriyenko To: "Maupin, Chase" Message-ID: <20140718175523.GL15788@edge> References: <1405423715-21885-1-git-send-email-Chase.Maupin@ti.com> <1405423715-21885-4-git-send-email-Chase.Maupin@ti.com> <20140715172820.GF15788@edge> <20140717170547.GR15788@edge> <7D46E86EC0A8354091174257B2FED1015D1543E0@DLEE11.ent.ti.com> MIME-Version: 1.0 In-Reply-To: <7D46E86EC0A8354091174257B2FED1015D1543E0@DLEE11.ent.ti.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: "meta-arago@arago-project.org" Subject: Re: [PATCH 3/4] arago: unset ASSUME_PROVIDED for git-native 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: Fri, 18 Jul 2014 17:55:26 -0000 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline On Fri, Jul 18, 2014 at 11:52:37AM -0400, Maupin, Chase wrote: > >-----Original Message----- > >From: Dmytriyenko, Denys > >Sent: Thursday, July 17, 2014 12:06 PM > >To: Maupin, Chase > >Cc: meta-arago@arago-project.org > >Subject: Re: [meta-arago] [PATCH 3/4] arago: unset ASSUME_PROVIDED > >for git-native > > > >On Tue, Jul 15, 2014 at 01:28:22PM -0400, Denys Dmytriyenko wrote: > >> On Tue, Jul 15, 2014 at 06:28:34AM -0500, Chase Maupin wrote: > >> > * To get maximum size reduction use the later version of git > >> > that is provided by git-native. This reduces the kernel > >sources > >> > size from 1002MB to 762MB. > >> > * Older versions of git work but they provide a depth of 1 for > >> > all branches and tags instead of just for the branch > >requested. > >> > * This was tested with git version 1.7.9.5 and 1.9 as > >comparison > >> > points. > >> > > >> > Signed-off-by: Chase Maupin > >> > --- > >> > meta-arago-distro/conf/distro/arago.conf | 5 +++++ > >> > 1 file changed, 5 insertions(+) > >> > > >> > diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta- > >arago-distro/conf/distro/arago.conf > >> > index b9af13f..1470f22 100644 > >> > --- a/meta-arago-distro/conf/distro/arago.conf > >> > +++ b/meta-arago-distro/conf/distro/arago.conf > >> > @@ -50,6 +50,11 @@ require conf/distro/include/arago-prefs.inc > >> > # Hack out sgx flag for now, as breaking on kernels >= 3.14 > >> > MACHINE_FEATURES := > >"${@filter_out('sgx','${MACHINE_FEATURES}',d)}" > >> > > >> > +# Remove the ASSUME_PROVIDED setting for git-native so that > >we can > >> > +# use the latest version for the sourceipk which leads to a > >smaller > >> > +# git history. > >> > +ASSUME_PROVIDED := "${@filter_out('git- > >native','${ASSUME_PROVIDED}',d)}" > >> > >> This now should work: > >> > >> ASSUME_PROVIDED -= "git-native" > > > >Correction: > > > >ASSUME_PROVIDED_remove = "git-native" > > This does not seem to have worked. I don't see git-native being built when I use this. Well, darn it, looks like bitbake processes ASSUME_PROVIDED list before resolving all the overrides... :( > >> > # Allow branding on top of Arago Distro and Core TI-SDK > >> > # If ARAGO_BRAND is not set in local.conf, default to core > >> > ARAGO_BRAND ??= "core" > >> > -- > >> > 1.7.9.5 > >> > > >> > _______________________________________________ > >> > meta-arago mailing list > >> > meta-arago@arago-project.org > >> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago > >> _______________________________________________ > >> meta-arago mailing list > >> meta-arago@arago-project.org > >> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago