| Submitter | Punya Prakash |
|---|---|
| Date | June 2, 2011, 3:49 p.m. |
| Message ID | <1307029789-16236-1-git-send-email-pprakash@ti.com> |
| Download | mbox | patch |
| Permalink | /patch/5345/ |
| State | Changes Requested |
| Delegated to: | Koen Kooi |
| Headers | show |
Comments
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 02-06-11 17:49, Punya Prakash wrote: > +# Dude to CCSv5 limitation LDFLAGS cant be passed externally > +# not providing INSANE_SKIP introduces GNU hash QA error > +INSANE_SKIP_${PN} = "True" That's a really, really poor excuse. If that were true all AMBU apps would suffer from this, which they don't. This recipe is not going in with either QA errors or INSANE_SKIP -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) iD8DBQFN5/OWMkyGM64RGpERAqzKAJ9gMErxk4sQKRfk2tQTORdTzv4umwCgvE69 Dq/4y3WQ7q4JH+bvuSIWDR8= =Xug7 -----END PGP SIGNATURE-----
Patch
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 +}