From patchwork Thu Jun 2 15:49:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2] mcf-camera-app: Add new recipe for matrix camera streaming application Date: Thu, 02 Jun 2011 15:49:49 -0000 From: Punya Prakash X-Patchwork-Id: 5345 Message-Id: <1307029789-16236-1-git-send-email-pprakash@ti.com> To: * Removed platform dependancy in application * Added comments for QA over-ride * Support for media controller framework * Create and set-up link * Configuration of format for each pad * Streaming for specified duration Signed-off-by Punya Prakash --- recipes/ti/mcf-camera-app_1.0.bb | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) create mode 100644 recipes/ti/mcf-camera-app_1.0.bb diff --git a/recipes/ti/mcf-camera-app_1.0.bb b/recipes/ti/mcf-camera-app_1.0.bb new file mode 100644 index 0000000..9fd18df --- /dev/null +++ b/recipes/ti/mcf-camera-app_1.0.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "MCF Camera Application" +HOMEPAGE = "https://gforge.ti.com/gf/project/mcf_camera_app/" +LICENSE = "BSD" +SECTION = "system" +PRIORITY = "optional" + +SRCREV = "4" +PR = "r1" + +DEPENDS += "virtual/kernel" + +# Dude to CCSv5 limitation LDFLAGS cant be passed externally +# not providing INSANE_SKIP introduces GNU hash QA error +INSANE_SKIP_${PN} = "True" + +SRC_URI = "svn://gforge.ti.com/svn/mcf_camera_app/;module=trunk;proto=https;user=anonymous;pswd=''" + +S = "${WORKDIR}/trunk" + +do_compile() { + export CROSS_COMPILE=${TARGET_PREFIX} + oe_runmake LINUXKERNEL_INSTALL_DIR="${STAGING_KERNEL_DIR}" +} + +do_install() { + make DESTDIR=${D} install +}