From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id F3A6CE00B76; Tue, 16 May 2017 07:18:24 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from kozue.soulik.info (kozue.soulik.info [108.61.200.231]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 6615AE00B45 for ; Tue, 16 May 2017 07:18:23 -0700 (PDT) Received: from misaki.sumomo.pri (unknown [IPv6:2001:470:b30d:2:3fe5:5e2:ef97:4abb]) by kozue.soulik.info (Postfix) with ESMTPA id 8C8331020E9; Tue, 16 May 2017 23:19:09 +0900 (JST) From: ayaka To: yocto@yoctoproject.org Date: Tue, 16 May 2017 22:18:08 +0800 Message-Id: <20170516141808.26629-4-ayaka@soulik.info> X-Mailer: git-send-email 2.9.4 In-Reply-To: <20170516141808.26629-1-ayaka@soulik.info> References: <20170516141808.26629-1-ayaka@soulik.info> Cc: ayaka Subject: [PATCH v3 3/3] recipes-multimedia: images: rockchip media image X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 May 2017 14:18:25 -0000 A image for debugging the hardware video encoder/decoder. I also use this image for developing the Gstreamer. Signed-off-by: ayaka --- recipes-multimedia/images/rockchip-media-image.bb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 recipes-multimedia/images/rockchip-media-image.bb diff --git a/recipes-multimedia/images/rockchip-media-image.bb b/recipes-multimedia/images/rockchip-media-image.bb new file mode 100644 index 0000000..ea993c1 --- /dev/null +++ b/recipes-multimedia/images/rockchip-media-image.bb @@ -0,0 +1,21 @@ +# Copyright (C) 2017 Randy Li +# Released under the MIT license (see COPYING.MIT for the terms) + +include recipes-core/images/core-image-minimal.bb + +LICENSE = "MIT" +DESCRIPTION = "Multimedia image for Rockchip devices." + +IMAGE_FEATURES_append = " package-management ssh-server-dropbear" +IMAGE_INSTALL_append = " gdbserver gstreamer1.0-rockchip \ + gstreamer1.0-meta-base gstreamer1.0-meta-video gstreamer1.0-meta-audio \ + gstreamer1.0-plugins-good-isomp4 gstreamer1.0-plugins-good-multifile \ + gstreamer1.0-plugins-good-imagefreeze \ + gstreamer1.0-plugins-bad-autoconvert gstreamer1.0-plugins-bad-camerabin2 \ + gstreamer1.0-plugins-bad-kmssink gstreamer1.0-plugins-bad-rawparse \ + gstreamer1.0-plugins-bad-videoparsersbad \ + gstreamer1.0-plugins-bad-mpegtsdemux \ + gstreamer1.0-meta-debug \ +" + +TOOLCHAIN_HOST_TASK += "nativesdk-cmake" -- 2.9.4