All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe
@ 2017-09-01 20:28 Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 2/7] matrix-gui-submenus : create hmi sub menu Manisha Agrawal
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Manisha Agrawal @ 2017-09-01 20:28 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 recipes-apps/evse-hmi/evse-hmi_git.bb              | 23 ++++++++++++++++++++++
 .../protection-relays-hmi_git.bb                   | 23 ++++++++++++++++++++++
 2 files changed, 46 insertions(+)
 create mode 100755 recipes-apps/evse-hmi/evse-hmi_git.bb
 create mode 100755 recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb

diff --git a/recipes-apps/evse-hmi/evse-hmi_git.bb b/recipes-apps/evse-hmi/evse-hmi_git.bb
new file mode 100755
index 0000000..abd4e90
--- /dev/null
+++ b/recipes-apps/evse-hmi/evse-hmi_git.bb
@@ -0,0 +1,23 @@
+SUMMARY = "HMI demo for electronic vehicle charging station (EVSE) using QT QWidget tools"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://main.cpp;beginline=1;endline=33;md5=a9cde3921a8be42ed79ab74661799104"
+
+inherit qt-provider
+
+PV = "1.0"
+PR = "r0"
+
+BRANCH = "master"
+SRC_URI = "git://git.ti.com/sitara-linux/evse-hmi.git;protocol=git;branch=${BRANCH}"
+
+SRCREV = "a257dfc05db311c74cb50838ff5b9e2cfb87dbfe"
+
+S = "${WORKDIR}/git"
+
+CREATE_SRCIPK_evse-hmi = "1"                                                                               
+SRCIPK_INSTALL_DIR_evse-hmi = "example-applications/${PN}-${PV}"
+
+do_install() {
+    install -d ${D}${bindir}
+    install -m 755 evse_hmi ${D}${bindir}
+}
diff --git a/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb b/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb
new file mode 100755
index 0000000..a6ece91
--- /dev/null
+++ b/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb
@@ -0,0 +1,23 @@
+SUMMARY = "HMI demo for Prectection Relays using QT QWidget tools"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://main.cpp;beginline=1;endline=33;md5=a9cde3921a8be42ed79ab74661799104"
+
+inherit qt-provider
+
+PV = "1.0"
+PR = "r0"
+
+BRANCH = "master"
+SRC_URI = "git://git.ti.com/sitara-linux/protection-relays-hmi.git;protocol=git;branch=${BRANCH}"
+
+SRCREV = "c8764aaba365302090179b6720cbfc994e169842"
+
+S = "${WORKDIR}/git"
+
+CREATE_SRCIPK_protection-relays-hmi = "1"
+SRCIPK_INSTALL_DIR_protection-relays-hmi = "example-applications/${PN}-${PV}"
+
+do_install() {
+    install -d ${D}${bindir}
+    install -m 755 protection_relays_hmi ${D}${bindir}
+}
-- 
2.13.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-processor-sdk][PATCH v1 2/7] matrix-gui-submenus : create hmi sub menu
  2017-09-01 20:28 [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe Manisha Agrawal
@ 2017-09-01 20:28 ` Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix Manisha Agrawal
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Manisha Agrawal @ 2017-09-01 20:28 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 recipes-core/matrix/matrix-gui-submenus.bbappend | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 recipes-core/matrix/matrix-gui-submenus.bbappend

diff --git a/recipes-core/matrix/matrix-gui-submenus.bbappend b/recipes-core/matrix/matrix-gui-submenus.bbappend
new file mode 100644
index 0000000..e30848a
--- /dev/null
+++ b/recipes-core/matrix/matrix-gui-submenus.bbappend
@@ -0,0 +1,14 @@
+PR_append = ".tisdk2"
+
+SUBMENUS_append = " \
+    hmi_submenu \
+"
+
+PACKAGES_append = " \
+    ${PN}-hmi \
+"
+
+FILES_${PN}-hmi = "${MATRIX_APP_DIR}/hmi_submenu/*"   
+
+
+
-- 
2.13.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-processor-sdk][PATCH v1 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix
  2017-09-01 20:28 [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 2/7] matrix-gui-submenus : create hmi sub menu Manisha Agrawal
@ 2017-09-01 20:28 ` Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 4/7] packagegroup-arago-tisdk-matrix : add hmi demos Manisha Agrawal
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Manisha Agrawal @ 2017-09-01 20:28 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb | 36 +++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100755 recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb

diff --git a/recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb b/recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb
new file mode 100755
index 0000000..1ed5a5e
--- /dev/null
+++ b/recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb
@@ -0,0 +1,36 @@
+SUMMARY = "HMI demo descriptions for Matrix v2"
+HOMEPAGE = "https://gitorious.org/matrix-gui-v2/matrix-gui-v2-apps"
+
+require recipes-core/matrix/matrix-gui-apps-git.inc
+SRCREV = "094736065e1a15a49da19ef4c5a100aa763c41d1"
+
+PR = "${INC_PR}.0"
+
+inherit allarch
+
+S = "${WORKDIR}/git/hmi_apps"
+
+# Make sure machinevision submenu and app images has been installed
+HMI_RDEPENDS += "matrix-gui-apps-images matrix-gui-submenus-hmi"
+
+FILES_${PN} += "${MATRIX_BASE_DIR}/*"
+
+PACKAGES = "matrix-hmi-demo-evse \
+	    matrix-hmi-demo-protection-relays\
+"
+
+RDEPENDS_matrix-hmi-demo-evse = " \
+    ${HMI_RDEPENDS} \
+    evse-hmi \
+"
+
+RDEPENDS_matrix-hmi-demo-protection-relays = " \
+    ${HMI_RDEPENDS} \
+    protection-relays-hmi \
+"
+
+FILES_matrix-hmi-demo-evse    = "${MATRIX_APP_DIR}/hmi_evse/*"
+FILES_matrix-hmi-demo-evse  += "${bindir}/runHmiEvse.sh"
+
+FILES_matrix-hmi-demo-protection-relays   = "${MATRIX_APP_DIR}/hmi_protection_relays/*"
+FILES_matrix-hmi-demo-protection-relays  += "${bindir}/runHmiProtectionRelays.sh"
-- 
2.13.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-processor-sdk][PATCH v1 4/7] packagegroup-arago-tisdk-matrix : add hmi demos
  2017-09-01 20:28 [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 2/7] matrix-gui-submenus : create hmi sub menu Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix Manisha Agrawal
@ 2017-09-01 20:28 ` Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups Manisha Agrawal
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Manisha Agrawal @ 2017-09-01 20:28 UTC (permalink / raw)
  To: meta-arago

Add evse-hmi and protection-relays-hmi demo

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 .../packagegroups/packagegroup-arago-tisdk-matrix.bbappend         | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bbappend b/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bbappend
index b7c6816..abef996 100644
--- a/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bbappend
+++ b/recipes-core/packagegroups/packagegroup-arago-tisdk-matrix.bbappend
@@ -7,15 +7,22 @@ MATRIX_SGX_DEMOS_remove_omap-a15 = " \
 MATRIX_COMMON_APPS_remove = " \
     matrix-gui-oprofile-demos \
 "
+MATRIX_APPS_append_ti33x += " \
+    matrix-hmi-demo-evse            \
+    matrix-hmi-demo-protection-relays \
+"
+
 
 MATRIX_APPS_append_omap-a15 += " \
     matrix-gui-apps-dual-camera \
     matrix-gui-apps-image-gallery \
     matrix-multimedia-demo-audiocapture \
+    matrix-hmi-demo-evse            \
 "
 
 MATRIX_APPS_append_ti43x = " \
     matrix-multimedia-demo-audiocapture \
+    matrix-hmi-demo-evse            \
 "
 
 MATRIX_TOUCH_APPS_keystone = ""
-- 
2.13.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-processor-sdk][PATCH v1 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups
  2017-09-01 20:28 [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe Manisha Agrawal
                   ` (2 preceding siblings ...)
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 4/7] packagegroup-arago-tisdk-matrix : add hmi demos Manisha Agrawal
@ 2017-09-01 20:28 ` Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 6/7] tisdk-rootfs-image: add evse-hmi packagegroup Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 7/7] arago-core-tisdk-image : add hmi specific packagegroup Manisha Agrawal
  5 siblings, 0 replies; 7+ messages in thread
From: Manisha Agrawal @ 2017-09-01 20:28 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 .../packagegroup-arago-tisdk-hmi-sdk-host.bb       | 27 ++++++++++++++++++++
 .../packagegroups/packagegroup-arago-tisdk-hmi.bb  | 29 ++++++++++++++++++++++
 2 files changed, 56 insertions(+)
 create mode 100755 recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
 create mode 100755 recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb

diff --git a/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb b/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
new file mode 100755
index 0000000..2aafcd3
--- /dev/null
+++ b/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
@@ -0,0 +1,27 @@
+SUMMARY = "Task to add HMI related sources into the SDK"
+LICENSE = "MIT"
+PR = "r0"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+inherit packagegroup
+
+HMI = ""
+
+HMI_append_ti43x = " \
+    evse-hmi-src \
+"
+
+HMI_append_ti33x = " \
+    evse-hmi-src \ 
+    protection-relays-hmi-src \
+"
+
+
+HMI_append_omap-a15 = " \
+    evse-hmi-src \
+"
+
+RDEPENDS_${PN} = "\
+    ${HMI} \
+"
diff --git a/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb b/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb
new file mode 100755
index 0000000..125443a
--- /dev/null
+++ b/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb
@@ -0,0 +1,29 @@
+SUMMARY = "Task to add HMI related packages"
+LICENSE = "MIT"
+PR = "r0"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+inherit packagegroup
+
+HMI = " \
+"
+
+
+HMI_append_ti33x = " \
+    evse-hmi \
+    protection-relays-hmi \
+"
+
+HMI_append_ti43x = " \
+    evse-hmi \
+"
+
+HMI_append_omap-a15 = " \
+    evse-hmi \
+"
+
+
+RDEPENDS_${PN} = "\
+	${HMI} \
+"
-- 
2.13.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-processor-sdk][PATCH v1 6/7] tisdk-rootfs-image: add evse-hmi packagegroup
  2017-09-01 20:28 [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe Manisha Agrawal
                   ` (3 preceding siblings ...)
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups Manisha Agrawal
@ 2017-09-01 20:28 ` Manisha Agrawal
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 7/7] arago-core-tisdk-image : add hmi specific packagegroup Manisha Agrawal
  5 siblings, 0 replies; 7+ messages in thread
From: Manisha Agrawal @ 2017-09-01 20:28 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 recipes-core/images/tisdk-rootfs-image.bbappend | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/recipes-core/images/tisdk-rootfs-image.bbappend b/recipes-core/images/tisdk-rootfs-image.bbappend
index d4b08cc..e97ce61 100644
--- a/recipes-core/images/tisdk-rootfs-image.bbappend
+++ b/recipes-core/images/tisdk-rootfs-image.bbappend
@@ -1,4 +1,15 @@
 PR_append = ".tisdk4"
 
-IMAGE_INSTALL_append_ti43x = " packagegroup-arago-tisdk-graphics"
-IMAGE_INSTALL_append_ti33x = " packagegroup-arago-tisdk-graphics"
+IMAGE_INSTALL_append_ti43x = " 
+	packagegroup-arago-tisdk-graphics \
+        packagegroup-arago-tisdk-hmi \
+"
+IMAGE_INSTALL_append_ti33x = " 
+  	packagegroup-arago-tisdk-graphics \
+        packagegroup-arago-tisdk-hmi \
+"
+
+
+IMAGE_INSTALL_append_omap-a15 = " 
+  	packagegroup-arago-tisdk-hmi \
+"
-- 
2.13.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [meta-processor-sdk][PATCH v1 7/7] arago-core-tisdk-image : add hmi specific packagegroup
  2017-09-01 20:28 [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe Manisha Agrawal
                   ` (4 preceding siblings ...)
  2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 6/7] tisdk-rootfs-image: add evse-hmi packagegroup Manisha Agrawal
@ 2017-09-01 20:28 ` Manisha Agrawal
  5 siblings, 0 replies; 7+ messages in thread
From: Manisha Agrawal @ 2017-09-01 20:28 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 recipes-core/images/arago-core-tisdk-image.bbappend | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/recipes-core/images/arago-core-tisdk-image.bbappend b/recipes-core/images/arago-core-tisdk-image.bbappend
index 2857178..b97da07 100644
--- a/recipes-core/images/arago-core-tisdk-image.bbappend
+++ b/recipes-core/images/arago-core-tisdk-image.bbappend
@@ -1,5 +1,9 @@
 PR_append = ".tisdk13"
 
+IMAGE_INSTALL_append = " \                                                                                                                   
+      packagegroup-arago-tisdk-hmi-sdk-host 
+ "
+
 # The following FITIMAGE vars are copied from kernel-fitimage.bbclass.
 #
 # We need to get these into the prebuilt-images. We don't want to inherit the
-- 
2.13.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-09-01 20:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-01 20:28 [meta-processor-sdk][PATCH v1 1/7] recipe-apps : add evse and protection-relays hmi demo recipe Manisha Agrawal
2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 2/7] matrix-gui-submenus : create hmi sub menu Manisha Agrawal
2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix Manisha Agrawal
2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 4/7] packagegroup-arago-tisdk-matrix : add hmi demos Manisha Agrawal
2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups Manisha Agrawal
2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 6/7] tisdk-rootfs-image: add evse-hmi packagegroup Manisha Agrawal
2017-09-01 20:28 ` [meta-processor-sdk][PATCH v1 7/7] arago-core-tisdk-image : add hmi specific packagegroup Manisha Agrawal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.