From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qc0-f171.google.com (mail-qc0-f171.google.com [209.85.216.171]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 7BB06E008C7 for ; Wed, 26 Feb 2014 23:54:30 -0800 (PST) Received: by mail-qc0-f171.google.com with SMTP id x3so2849602qcv.2 for ; Wed, 26 Feb 2014 23:54:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=tfuGUY0fR/N11VWssUX4Q9bdjg9YCUtKYMiLXyhI+Is=; b=ES0SYlZrIGg3MtLQQJp5EB4p/6OY35F8oqdtaCgmAD3iUpw9JZwTUwCTMrBquRkrf4 c8ioYurhyG6taDOn/29I0uwpfRToWmQ1W9wca/ujWl8lHgC5aVQxKiBKGlUTR/26+r/h WkqqPsAZPBzIDkUSireJ0ekxr3K2vx9LJo64PEpzSYDKzVOrDyyu7zZXG9SjOagbehIi cl77AU9OkP/OVioMn2LTyi2hynIMQ7hp8CRy/0WFnW5XUnavdniWyS+pkSGomwdfspK9 Nqk8uXMmwZtaab0yRswJ0PwyQg1j8+hiRXC71Rroau+8GPRSNYc0h0ishvMQwSz238rk z5YQ== X-Received: by 10.140.48.165 with SMTP id o34mr5328893qga.16.1393487670336; Wed, 26 Feb 2014 23:54:30 -0800 (PST) Received: from b35650.home (pool-173-48-171-215.bstnma.fios.verizon.net. [173.48.171.215]) by mx.google.com with ESMTPSA id m14sm11204494qax.9.2014.02.26.23.54.29 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 26 Feb 2014 23:54:29 -0800 (PST) From: ronunes@gmail.com To: meta-freescale@yoctoproject.org Date: Thu, 27 Feb 2014 02:53:56 -0500 Message-Id: <1393487638-5096-5-git-send-email-ronunes@gmail.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1393487638-5096-1-git-send-email-ronunes@gmail.com> References: <1393487638-5096-1-git-send-email-ronunes@gmail.com> Cc: Rogerio Nunes Subject: [meta-fsl-demos][PATCH v2 5/7] fsl-image-multimedia: Add X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 07:54:31 -0000 From: Rogerio Nunes A console-only image that includes gstreamer packages and Freescale's multimedia packages (VPU and GPU) when available for the specific machine. Multimedia packages usually contain user space tools that are not necessary in a product image, so this image recipe is a convenient start point for multimedia application development (fast to build), but not necessarily for a product image (fat rootfs). Signed-off-by: Rogerio Nunes --- recipes-fsl/images/fsl-image-multimedia.bb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 recipes-fsl/images/fsl-image-multimedia.bb diff --git a/recipes-fsl/images/fsl-image-multimedia.bb b/recipes-fsl/images/fsl-image-multimedia.bb new file mode 100644 index 0000000..3cf77e0 --- /dev/null +++ b/recipes-fsl/images/fsl-image-multimedia.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "A console-only image that includes gstreamer packages and \ +Freescale's multimedia packages (VPU and GPU) when available for the specific \ +machine." + +IMAGE_FEATURES += "\ + ${@base_contains('DISTRO_FEATURES', 'x11', 'x11-base', '', d)} \ +" + +LICENSE = "MIT" + +inherit core-image + +CORE_IMAGE_EXTRA_INSTALL += " \ + packagegroup-fsl-gstreamer \ + packagegroup-fsl-tools-gpu \ +" -- 1.8.3.2