From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 56DE5E00596 for ; Mon, 9 Apr 2012 11:01:48 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 09 Apr 2012 11:01:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.71,315,1320652800"; d="scan'208";a="139556769" Received: from unknown (HELO [10.255.12.48]) ([10.255.12.48]) by fmsmga001.fm.intel.com with ESMTP; 09 Apr 2012 11:01:41 -0700 From: Tom Zanussi To: kishore.k.bodke@intel.com In-Reply-To: <48b65c9c2c2be50340ee316f9b740935e3a0e5d1.1333496206.git.kishore.k.bodke@intel.com> References: <48b65c9c2c2be50340ee316f9b740935e3a0e5d1.1333496206.git.kishore.k.bodke@intel.com> Date: Mon, 09 Apr 2012 13:00:54 -0500 Message-ID: <1333994454.2335.70.camel@elmorro> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Cc: yocto@yoctoproject.org Subject: Re: [PATCH 4/7] Cedartrail: Add bbappend files to install Audio and Video files. X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Apr 2012 18:01:48 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Tue, 2012-04-03 at 16:43 -0700, kishore.k.bodke@intel.com wrote: > From: Kishore Bodke > > These bbappend files pulls in the Audio, Video and Web Kit > into the Image with IMAGE_INSTALL. > > Signed-off-by: Kishore Bodke > --- > .../images/core-image-sato-dev.bbappend | 2 ++ > .../images/core-image-sato-sdk.bbappend | 2 ++ > .../recipes-sato/images/core-image-sato.bbappend | 1 + > 3 files changed, 5 insertions(+), 0 deletions(-) > create mode 100644 meta-cedartrail/recipes-sato/images/core-image-sato-dev.bbappend > create mode 100644 meta-cedartrail/recipes-sato/images/core-image-sato-sdk.bbappend > create mode 100644 meta-cedartrail/recipes-sato/images/core-image-sato.bbappend > > diff --git a/meta-cedartrail/recipes-sato/images/core-image-sato-dev.bbappend b/meta-cedartrail/recipes-sato/images/core-image-sato-dev.bbappend > new file mode 100644 > index 0000000..33283f4 > --- /dev/null > +++ b/meta-cedartrail/recipes-sato/images/core-image-sato-dev.bbappend > @@ -0,0 +1,2 @@ > +IMAGE_INSTALL += "web-webkit bigbuckbunny-ogg ogg-CC-BY-3.0-music-samples" > + > diff --git a/meta-cedartrail/recipes-sato/images/core-image-sato-sdk.bbappend b/meta-cedartrail/recipes-sato/images/core-image-sato-sdk.bbappend > new file mode 100644 > index 0000000..33283f4 > --- /dev/null > +++ b/meta-cedartrail/recipes-sato/images/core-image-sato-sdk.bbappend > @@ -0,0 +1,2 @@ > +IMAGE_INSTALL += "web-webkit bigbuckbunny-ogg ogg-CC-BY-3.0-music-samples" > + > diff --git a/meta-cedartrail/recipes-sato/images/core-image-sato.bbappend b/meta-cedartrail/recipes-sato/images/core-image-sato.bbappend > new file mode 100644 > index 0000000..4c1ccac > --- /dev/null > +++ b/meta-cedartrail/recipes-sato/images/core-image-sato.bbappend > @@ -0,0 +1 @@ > +IMAGE_INSTALL += "web-webkit bigbuckbunny-ogg ogg-CC-BY-3.0-music-samples" These will always add the media files etc whenever anyone builds any of these. Is that really what you want? Maybe creating separate test image recipes that do this would be more along the lines of what you wanted... Tom