* [PATCH 2/4] ti-tisdk-makefile: Add dual camera demo to Makefile
2014-01-24 18:21 [PATCH 1/4] dual-camera-demo: Dual Camera Demo App Franklin S. Cooper Jr
@ 2014-01-24 18:21 ` Franklin S. Cooper Jr
2014-01-24 18:21 ` [PATCH 3/4] arago-source-ipk.conf: Generate sourceipk for the dual-camera-demo Franklin S. Cooper Jr
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Franklin S. Cooper Jr @ 2014-01-24 18:21 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
---
.../ti-tisdk-makefile/Makefile_dual-camera-demo | 24 ++++++++++++++++++++
.../ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb | 4 ++-
2 files changed, 27 insertions(+), 1 deletions(-)
create mode 100644 meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo
new file mode 100644
index 0000000..a682d59
--- /dev/null
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile/Makefile_dual-camera-demo
@@ -0,0 +1,24 @@
+# QT Dual Camera build targets
+dual-camera:
+ @echo ================================
+ @echo Building Dual Camera Demo
+ @echo ================================
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build release
+
+dual-camera_clean:
+ @echo ================================
+ @echo Building Dual Camera Demo
+ @echo ================================
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build clean
+
+dual-camera_install:
+ @echo ===================================================
+ @echo Installing Dual Camera Demo - Release version
+ @echo ===================================================
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build install
+
+dual-camera_install_debug:
+ @echo =================================================
+ @echo Installing Dual Camera Demo - Debug version
+ @echo =================================================
+ @cd example-applications; cd `find . -name "*dual-camera-demo*"`; make -f Makefile.build install_debug
diff --git a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
index ada51b5..30c2901 100644
--- a/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
+++ b/meta-arago-distro/recipes-tisdk/ti-tisdk-makefile/ti-tisdk-makefile_1.0.bb
@@ -31,9 +31,10 @@ SRC_URI = "\
file://Makefile_wireless \
file://Makefile_omapconf \
file://Makefile_oprofile-example \
+ file://Makefile_dual-camera-demo \
"
-PR = "r24"
+PR = "r25"
MAKEFILES_COMMON = "linux \
matrix-gui \
@@ -71,6 +72,7 @@ MAKEFILES_append_ti43x = " u-boot-spl \
ti-crypto-examples \
linux-dtbs \
wireless \
+ dual-camera-demo \
"
MAKEFILES_append_omap-a15 = " u-boot-spl \
${QUICK_PLAYGROUND} \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 3/4] arago-source-ipk.conf: Generate sourceipk for the dual-camera-demo
2014-01-24 18:21 [PATCH 1/4] dual-camera-demo: Dual Camera Demo App Franklin S. Cooper Jr
2014-01-24 18:21 ` [PATCH 2/4] ti-tisdk-makefile: Add dual camera demo to Makefile Franklin S. Cooper Jr
@ 2014-01-24 18:21 ` Franklin S. Cooper Jr
2014-01-24 18:21 ` [PATCH 4/4] packagegroup-arago-tisdk-*: Add dual camera demo to AM437x SDK Franklin S. Cooper Jr
2014-01-24 21:27 ` [PATCH 1/4] dual-camera-demo: Dual Camera Demo App Denys Dmytriyenko
3 siblings, 0 replies; 6+ messages in thread
From: Franklin S. Cooper Jr @ 2014-01-24 18:21 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
---
.../conf/distro/arago-source-ipk.conf | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta-arago-distro/conf/distro/arago-source-ipk.conf b/meta-arago-distro/conf/distro/arago-source-ipk.conf
index 7e1d0f0..e3a90fc 100644
--- a/meta-arago-distro/conf/distro/arago-source-ipk.conf
+++ b/meta-arago-distro/conf/distro/arago-source-ipk.conf
@@ -64,6 +64,9 @@ SRCIPK_INSTALL_DIR_pn-qt-patientcare = "example-applications/${PN}-${PV}"
CREATE_SRCIPK_pn-qt-tstat = "1"
SRCIPK_INSTALL_DIR_pn-qt-tstat = "example-applications/${PN}-${PV}"
+CREATE_SRCIPK_pn-dual-camera-demo = "1"
+SRCIPK_INSTALL_DIR_pn-dual-camera-demo = "example-applications/${PN}-${PV}"
+
CREATE_SRCIPK_pn-matrix-gui-browser = "1"
SRCIPK_INSTALL_DIR_pn-matrix-gui-browser = "example-applications/${PN}-${PV}"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 4/4] packagegroup-arago-tisdk-*: Add dual camera demo to AM437x SDK
2014-01-24 18:21 [PATCH 1/4] dual-camera-demo: Dual Camera Demo App Franklin S. Cooper Jr
2014-01-24 18:21 ` [PATCH 2/4] ti-tisdk-makefile: Add dual camera demo to Makefile Franklin S. Cooper Jr
2014-01-24 18:21 ` [PATCH 3/4] arago-source-ipk.conf: Generate sourceipk for the dual-camera-demo Franklin S. Cooper Jr
@ 2014-01-24 18:21 ` Franklin S. Cooper Jr
2014-01-24 21:27 ` [PATCH 1/4] dual-camera-demo: Dual Camera Demo App Denys Dmytriyenko
3 siblings, 0 replies; 6+ messages in thread
From: Franklin S. Cooper Jr @ 2014-01-24 18:21 UTC (permalink / raw)
To: meta-arago; +Cc: Franklin S. Cooper Jr
* Include demo in the target filesystem.
* Include the sources in the host sdk.
* Add Matrix integration.
---
.../packagegroup-arago-tisdk-matrix.bb | 4 +++-
...packagegroup-arago-tisdk-multimedia-sdk-host.bb | 6 +++++-
.../packagegroup-arago-tisdk-multimedia.bb | 3 ++-
3 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
index 95ecb2a..9354624 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to include Matrix v2"
LICENSE = "MIT"
-PR = "r27"
+PR = "r28"
inherit packagegroup
@@ -77,6 +77,8 @@ MATRIX_APPS_append_ti43x = " \
matrix-multimedia-demo-mpeg4aacdec \
matrix-multimedia-demo-mpeg4dec \
\
+ matrix-gui-apps-dual-camera \
+ \
matrix-gui-generic-pm \
matrix-gui-pm-demos-suspend \
matrix-gui-clocks \
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb
index 333b017..38b52b6 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia-sdk-host.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to add multimedia related sources into the SDK"
LICENSE = "MIT"
-PR = "r2"
+PR = "r3"
inherit packagegroup
@@ -16,6 +16,10 @@ MULTIMEDIA_append_am3517-evm = " \
av-examples-src \
"
+MULTIMEDIA_append_ti43x = " \
+ dual-camera-demo-src \
+"
+
RDEPENDS_${PN} = "\
${MULTIMEDIA} \
"
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
index 62d059c..d9828b8 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-multimedia.bb
@@ -1,6 +1,6 @@
DESCRIPTION = "Task to add multimedia related packages"
LICENSE = "MIT"
-PR = "r5"
+PR = "r6"
inherit packagegroup
@@ -18,6 +18,7 @@ MULTIMEDIA_append_ti33x = " \
MULTIMEDIA_append_ti43x = " \
amsdk-av-files \
+ dual-camera-demo \
"
MULTIMEDIA_append_omap-a15 = " \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH 1/4] dual-camera-demo: Dual Camera Demo App
2014-01-24 18:21 [PATCH 1/4] dual-camera-demo: Dual Camera Demo App Franklin S. Cooper Jr
` (2 preceding siblings ...)
2014-01-24 18:21 ` [PATCH 4/4] packagegroup-arago-tisdk-*: Add dual camera demo to AM437x SDK Franklin S. Cooper Jr
@ 2014-01-24 21:27 ` Denys Dmytriyenko
2014-01-27 22:20 ` Denys Dmytriyenko
3 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-01-24 21:27 UTC (permalink / raw)
To: Franklin S. Cooper Jr; +Cc: meta-arago
On Fri, Jan 24, 2014 at 12:21:36PM -0600, Franklin S. Cooper Jr wrote:
> * Add Qt dual camera demo application.
> ---
> .../dual-camera-demo/dual-camera-demo_1.0.bb | 32 ++++++++++++++++++++
> 1 files changed, 32 insertions(+), 0 deletions(-)
> create mode 100644 meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
>
> diff --git a/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
> new file mode 100644
> index 0000000..4d6d00c
> --- /dev/null
> +++ b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
> @@ -0,0 +1,32 @@
> +DESCRIPTION = "Qt Dual Camera Demo"
> +HOMEPAGE = "https://gitorious.org/dual-camera-demo/"
> +SECTION = "multimedia"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://main.cpp;md5=424a1b7299bcd2c5fad3b05493dd8898"
Any code change to the main.cpp file will blow the license check - you may
want to limit it to the header with "beginline=;endline=" modifier...
> +
> +require recipes-core/matrix/matrix-gui-paths.inc
> +
> +PR = "r0"
> +
> +BRANCH = "master"
> +SRCREV = "af299a206482562ceae8aa690a8b6644a3e0a66e"
> +
> +SRC_URI = "git://gitorious.org/dual-camera-demo/dual-camera-demo.git;protocol=git;branch=${BRANCH}"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit qt-provider
> +
> +# use the make targets already created in the Makefile.build files
> +do_install() {
> + cd ${S} && make -f Makefile.build DESTDIR=${D} install_common
> +}
> +
> +PACKAGES += "matrix-gui-apps-dual-camera"
> +
> +RDEPENDS_matrix-gui-apps-dual-camera = "matrix-gui-apps-images matrix-gui-submenus-multimedia ${PN}"
> +
> +# Add the matrix directory to the FILES
> +FILES_${PN} = "/usr/bin/*"
Isn't this the default or is it getting overwritten some other place?
> +FILES_matrix-gui-apps-dual-camera = "${MATRIX_APP_DIR}/*"
> --
> 1.7.0.4
>
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 1/4] dual-camera-demo: Dual Camera Demo App
2014-01-24 21:27 ` [PATCH 1/4] dual-camera-demo: Dual Camera Demo App Denys Dmytriyenko
@ 2014-01-27 22:20 ` Denys Dmytriyenko
0 siblings, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2014-01-27 22:20 UTC (permalink / raw)
To: Franklin S. Cooper Jr; +Cc: meta-arago
On Fri, Jan 24, 2014 at 04:27:51PM -0500, Denys Dmytriyenko wrote:
> On Fri, Jan 24, 2014 at 12:21:36PM -0600, Franklin S. Cooper Jr wrote:
> > * Add Qt dual camera demo application.
> > ---
> > .../dual-camera-demo/dual-camera-demo_1.0.bb | 32 ++++++++++++++++++++
> > 1 files changed, 32 insertions(+), 0 deletions(-)
> > create mode 100644 meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
> >
> > diff --git a/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
> > new file mode 100644
> > index 0000000..4d6d00c
> > --- /dev/null
> > +++ b/meta-arago-extras/recipes-multimedia/dual-camera-demo/dual-camera-demo_1.0.bb
> > @@ -0,0 +1,32 @@
> > +DESCRIPTION = "Qt Dual Camera Demo"
> > +HOMEPAGE = "https://gitorious.org/dual-camera-demo/"
> > +SECTION = "multimedia"
> > +LICENSE = "BSD"
> > +LIC_FILES_CHKSUM = "file://main.cpp;md5=424a1b7299bcd2c5fad3b05493dd8898"
>
> Any code change to the main.cpp file will blow the license check - you may
> want to limit it to the header with "beginline=;endline=" modifier...
BTW, according to the file, the license is GPLv2...
> > +require recipes-core/matrix/matrix-gui-paths.inc
> > +
> > +PR = "r0"
> > +
> > +BRANCH = "master"
> > +SRCREV = "af299a206482562ceae8aa690a8b6644a3e0a66e"
> > +
> > +SRC_URI = "git://gitorious.org/dual-camera-demo/dual-camera-demo.git;protocol=git;branch=${BRANCH}"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +inherit qt-provider
> > +
> > +# use the make targets already created in the Makefile.build files
> > +do_install() {
> > + cd ${S} && make -f Makefile.build DESTDIR=${D} install_common
> > +}
> > +
> > +PACKAGES += "matrix-gui-apps-dual-camera"
> > +
> > +RDEPENDS_matrix-gui-apps-dual-camera = "matrix-gui-apps-images matrix-gui-submenus-multimedia ${PN}"
> > +
> > +# Add the matrix directory to the FILES
> > +FILES_${PN} = "/usr/bin/*"
>
> Isn't this the default or is it getting overwritten some other place?
>
>
> > +FILES_matrix-gui-apps-dual-camera = "${MATRIX_APP_DIR}/*"
> > --
> > 1.7.0.4
> >
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
^ permalink raw reply [flat|nested] 6+ messages in thread