All of lore.kernel.org
 help / color / mirror / Atom feed
* [morty][PATCH v3 1/7] evse-hmi : add new demo
@ 2017-08-30 17:56 Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 2/7] matrix : add new EVSE HMI demo Manisha Agrawal
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Manisha Agrawal @ 2017-08-30 17:56 UTC (permalink / raw)
  To: meta-arago

EVSE stands for electronic vehicle supply station.  This demo is created as part
of TID on EVSE to demonsrate drawing the gui for EVSE application using QT
QWidget and rendering on LCD panel using  linuxfb QPA.

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 .../recipes-apps/evse-hmi/evse-hmi_git.bb            | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100755 meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb

diff --git a/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
new file mode 100755
index 00000000..27a58a96
--- /dev/null
+++ b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
@@ -0,0 +1,20 @@
+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"
+
+do_install() {
+    install -d ${D}${bindir}
+    install -m 755 evse_hmi ${D}${bindir}
+}
-- 
2.13.0



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

* [morty][PATCH v3 2/7] matrix : add new EVSE HMI demo
  2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
@ 2017-08-30 17:56 ` Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix Manisha Agrawal
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Manisha Agrawal @ 2017-08-30 17:56 UTC (permalink / raw)
  To: meta-arago

Create sub menu for HMI.
Update the matrix revision for matrix-gui-upadte-v2.

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc    | 4 ++--
 meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb | 3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
index b805f5e1..551416d9 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-apps-git.inc
@@ -4,9 +4,9 @@ LICENSE_CHECKSUM = "LICENSE;md5=6e0ae7214f6c74c149cb25f373057fa9"
 LIC_FILES_CHKSUM := "file://../${LICENSE_CHECKSUM}"
 
 SRC_URI = "git://git.ti.com/matrix-gui-v2/matrix-gui-v2-apps.git;protocol=git;branch=${BRANCH}"
-SRCREV = "38afccb5335216ececa874cf4cf72a67c4164fc3"
+SRCREV = "50a2f2ec7043e17bc7af72186e3d0a8d7773ec0a"
 BRANCH = "master"
-INC_PR = "r47"
+INC_PR = "r48"
 
 # Pull in the base package for installing matrix applications
 require matrix-gui-apps.inc
diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
index f592f7aa..b9973dd1 100644
--- a/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-submenus_2.0.bb
@@ -35,6 +35,7 @@ SUBMENUS = " arm_submenu \
              machinevision_submenu \
              touch_submenu \
              browser_submenu \
+	     hmi_submenu \
 "
 
 do_install(){
@@ -68,6 +69,7 @@ PACKAGES += " ${PN}-arm \
               ${PN}-machinevision \
               ${PN}-touch \
               ${PN}-browser \
+              ${PN}-hmi \
 "
 
 # Make sure app images has been installed
@@ -96,3 +98,4 @@ FILES_${PN}-videoanalytics = "${MATRIX_APP_DIR}/videoanalytics_submenu/*"
 FILES_${PN}-machinevision = "${MATRIX_APP_DIR}/machinevision_submenu/*"
 FILES_${PN}-touch = "${MATRIX_APP_DIR}/touch_submenu/*"
 FILES_${PN}-browser = "${MATRIX_APP_DIR}/browser_submenu/*"
+FILES_${PN}-hmi = "${MATRIX_APP_DIR}/hmi_submenu/*"
-- 
2.13.0



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

* [morty][PATCH v3 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix
  2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 2/7] matrix : add new EVSE HMI demo Manisha Agrawal
@ 2017-08-30 17:56 ` Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 4/7] packagegroup-arago-tisdk-matrix : add evse-hmi demo Manisha Agrawal
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Manisha Agrawal @ 2017-08-30 17:56 UTC (permalink / raw)
  To: meta-arago

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

diff --git a/meta-arago-extras/recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb b/meta-arago-extras/recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb
new file mode 100755
index 00000000..f751f8f8
--- /dev/null
+++ b/meta-arago-extras/recipes-core/matrix/matrix-gui-hmi-demos_2.0.bb
@@ -0,0 +1,26 @@
+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
+
+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 \
+"
+
+RDEPENDS_matrix-hmi-demo-evse = " \
+    ${HMI_RDEPENDS} \
+    evse-hmi \
+"
+
+FILES_matrix-hmi-demo-evse    = "${MATRIX_APP_DIR}/hmi_evse/*"
+FILES_matrix-hmi-demo-evse  += "${bindir}/runHmiEvse.sh"
-- 
2.13.0



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

* [morty][PATCH v3 4/7] packagegroup-arago-tisdk-matrix : add evse-hmi demo
  2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 2/7] matrix : add new EVSE HMI demo Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix Manisha Agrawal
@ 2017-08-30 17:56 ` Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups Manisha Agrawal
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Manisha Agrawal @ 2017-08-30 17:56 UTC (permalink / raw)
  To: meta-arago

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

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 02d46c49..0fa50f85 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
@@ -95,6 +95,8 @@ MATRIX_APPS_append_ti33x = "        \
                                     \
     matrix-gui-ethernet-demos       \
                                     \
+    matrix-hmi-demo-evse            \
+                                    \
     ${MATRIX_OPENCV_ARM_ONLY_APPS}  \
 "
 
@@ -112,12 +114,16 @@ MATRIX_APPS_append_ti43x = "        \
     matrix-gui-apps-dual-camera     \
     matrix-gui-apps-image-gallery   \
                                     \
+    matrix-hmi-demo-evse            \
+                                    \
     ${MATRIX_OPENCV_ARM_ONLY_APPS}  \
 "
 
 MATRIX_APPS_append_omap-a15 = "     \
     matrix-multimedia-demo-aac      \
     matrix-multimedia-demo-h265dec  \
+    matrix-hmi-demo-evse            \
+                                    \
     ${@bb.utils.contains('MACHINE_FEATURES','mmip','matrix-multimedia-demo-ivahdh264dec','matrix-multimedia-demo-h264dec',d)} \
     ${@bb.utils.contains('MACHINE_FEATURES','mmip','matrix-multimedia-demo-ivahdh264enc','',d)} \
     ${@bb.utils.contains('MACHINE_FEATURES','mmip','matrix-multimedia-demo-ivahdmjpegenc','',d)} \
-- 
2.13.0



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

* [morty][PATCH v3 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups
  2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
                   ` (2 preceding siblings ...)
  2017-08-30 17:56 ` [morty][PATCH v3 4/7] packagegroup-arago-tisdk-matrix : add evse-hmi demo Manisha Agrawal
@ 2017-08-30 17:56 ` Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 6/7] arago-source-ipk : Add evse-hmi source ipk Manisha Agrawal
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Manisha Agrawal @ 2017-08-30 17:56 UTC (permalink / raw)
  To: meta-arago

Create packagegroup for HMI related demos. HMI is one of the focus
growth area for Sitara platform and demos planned for individual target end
equipments. Add evse-hmi demo to the packagegroup.

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

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
new file mode 100755
index 00000000..735dda8e
--- /dev/null
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi-sdk-host.bb
@@ -0,0 +1,26 @@
+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 \
+"
+
+
+HMI_append_omap-a15 = " \
+    evse-hmi-src \
+"
+
+RDEPENDS_${PN} = "\
+    ${HMI} \
+"
diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb
new file mode 100755
index 00000000..38ff06b4
--- /dev/null
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-hmi.bb
@@ -0,0 +1,28 @@
+SUMMARY = "Task to add HMI related packages"
+LICENSE = "MIT"
+PR = "r0"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+inherit packagegroup
+
+HMI = " \
+"
+
+
+HMI_append_ti33x = " \
+    evse-hmi \
+"
+
+HMI_append_ti43x = " \
+    evse-hmi \
+"
+
+HMI_append_omap-a15 = " \
+    evse-hmi \
+"
+
+
+RDEPENDS_${PN} = "\
+	${HMI} \
+"
-- 
2.13.0



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

* [morty][PATCH v3 6/7] arago-source-ipk : Add evse-hmi source ipk
  2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
                   ` (3 preceding siblings ...)
  2017-08-30 17:56 ` [morty][PATCH v3 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups Manisha Agrawal
@ 2017-08-30 17:56 ` Manisha Agrawal
  2017-08-30 17:56 ` [morty][PATCH v3 7/7] arago-core-tisdk-image : add hmi specific packagegroup Manisha Agrawal
  2017-08-31 19:02 ` [morty][PATCH v3 1/7] evse-hmi : add new demo Denys Dmytriyenko
  6 siblings, 0 replies; 9+ messages in thread
From: Manisha Agrawal @ 2017-08-30 17:56 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
---
 meta-arago-distro/conf/distro/include/arago-source-ipk.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-arago-distro/conf/distro/include/arago-source-ipk.inc b/meta-arago-distro/conf/distro/include/arago-source-ipk.inc
index c598d5d5..5dd1ca64 100644
--- a/meta-arago-distro/conf/distro/include/arago-source-ipk.inc
+++ b/meta-arago-distro/conf/distro/include/arago-source-ipk.inc
@@ -67,6 +67,9 @@ 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-evse-hmi = "1"
+SRCIPK_INSTALL_DIR_pn-evse-hmi = "example-applications/${PN}-${PV}"
+
 CREATE_SRCIPK_pn-image-gallery = "1"
 SRCIPK_INSTALL_DIR_pn-image-gallery = "example-applications/${PN}"
 
-- 
2.13.0



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

* [morty][PATCH v3 7/7] arago-core-tisdk-image : add hmi specific packagegroup
  2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
                   ` (4 preceding siblings ...)
  2017-08-30 17:56 ` [morty][PATCH v3 6/7] arago-source-ipk : Add evse-hmi source ipk Manisha Agrawal
@ 2017-08-30 17:56 ` Manisha Agrawal
  2017-08-31 19:02 ` [morty][PATCH v3 1/7] evse-hmi : add new demo Denys Dmytriyenko
  6 siblings, 0 replies; 9+ messages in thread
From: Manisha Agrawal @ 2017-08-30 17:56 UTC (permalink / raw)
  To: meta-arago

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

diff --git a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
index fbc31617..63f97a55 100644
--- a/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
+++ b/meta-arago-distro/recipes-core/images/arago-core-tisdk-image.inc
@@ -59,6 +59,7 @@ IMAGE_INSTALL = "\
     ${@bb.utils.contains('MACHINE_FEATURES','sgx','packagegroup-arago-tisdk-graphics-sdk-host','',d)} \
     packagegroup-arago-tisdk-matrix-sdk-host \
     packagegroup-arago-tisdk-multimedia-sdk-host \
+    packagegroup-arago-tisdk-hmi-sdk-host \
     packagegroup-arago-tisdk-amsdk-sdk-host${ARAGO_KERNEL_SUFFIX} \
     ${IMAGE_INSTALL_QT} \
 "
-- 
2.13.0



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

* Re: [morty][PATCH v3 1/7] evse-hmi : add new demo
  2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
                   ` (5 preceding siblings ...)
  2017-08-30 17:56 ` [morty][PATCH v3 7/7] arago-core-tisdk-image : add hmi specific packagegroup Manisha Agrawal
@ 2017-08-31 19:02 ` Denys Dmytriyenko
  2017-08-31 19:04   ` Agrawal, Manisha
  6 siblings, 1 reply; 9+ messages in thread
From: Denys Dmytriyenko @ 2017-08-31 19:02 UTC (permalink / raw)
  To: Manisha Agrawal; +Cc: meta-arago

Thanks. The entire series now looks good. Though your separate patch for 
tisdk-rootfs-image should have been part of this series as well, somewhere 
between patch #6 and #7...

-- 
Denys


On Wed, Aug 30, 2017 at 12:56:41PM -0500, Manisha Agrawal wrote:
> EVSE stands for electronic vehicle supply station.  This demo is created as part
> of TID on EVSE to demonsrate drawing the gui for EVSE application using QT
> QWidget and rendering on LCD panel using  linuxfb QPA.
> 
> Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
> ---
>  .../recipes-apps/evse-hmi/evse-hmi_git.bb            | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>  create mode 100755 meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
> 
> diff --git a/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
> new file mode 100755
> index 00000000..27a58a96
> --- /dev/null
> +++ b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
> @@ -0,0 +1,20 @@
> +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"
> +
> +do_install() {
> +    install -d ${D}${bindir}
> +    install -m 755 evse_hmi ${D}${bindir}
> +}
> -- 
> 2.13.0
> 


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

* Re: [morty][PATCH v3 1/7] evse-hmi : add new demo
  2017-08-31 19:02 ` [morty][PATCH v3 1/7] evse-hmi : add new demo Denys Dmytriyenko
@ 2017-08-31 19:04   ` Agrawal, Manisha
  0 siblings, 0 replies; 9+ messages in thread
From: Agrawal, Manisha @ 2017-08-31 19:04 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

Thanks Denys for the feedback. 

Somehow my git send-email was not letting me send the more than 7 patches in one email, so I had to split the patches in two emails. 

Regards,
Manisha


-----Original Message-----
From: Dmytriyenko, Denys 
Sent: Thursday, August 31, 2017 2:03 PM
To: Agrawal, Manisha
Cc: meta-arago@arago-project.org; Stiffler, Jacob
Subject: Re: [meta-arago][morty][PATCH v3 1/7] evse-hmi : add new demo

Thanks. The entire series now looks good. Though your separate patch for tisdk-rootfs-image should have been part of this series as well, somewhere between patch #6 and #7...

--
Denys


On Wed, Aug 30, 2017 at 12:56:41PM -0500, Manisha Agrawal wrote:
> EVSE stands for electronic vehicle supply station.  This demo is created as part
> of TID on EVSE to demonsrate drawing the gui for EVSE application using QT
> QWidget and rendering on LCD panel using  linuxfb QPA.
> 
> Signed-off-by: Manisha Agrawal <manisha.agrawal@ti.com>
> ---
>  .../recipes-apps/evse-hmi/evse-hmi_git.bb            | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>  create mode 100755 meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
> 
> diff --git a/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
> new file mode 100755
> index 00000000..27a58a96
> --- /dev/null
> +++ b/meta-arago-extras/recipes-apps/evse-hmi/evse-hmi_git.bb
> @@ -0,0 +1,20 @@
> +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"
> +
> +do_install() {
> +    install -d ${D}${bindir}
> +    install -m 755 evse_hmi ${D}${bindir}
> +}
> -- 
> 2.13.0
> 


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

end of thread, other threads:[~2017-08-31 19:04 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-30 17:56 [morty][PATCH v3 1/7] evse-hmi : add new demo Manisha Agrawal
2017-08-30 17:56 ` [morty][PATCH v3 2/7] matrix : add new EVSE HMI demo Manisha Agrawal
2017-08-30 17:56 ` [morty][PATCH v3 3/7] matrix-gui-hmi-demos : hmi demo descriptions for matrix Manisha Agrawal
2017-08-30 17:56 ` [morty][PATCH v3 4/7] packagegroup-arago-tisdk-matrix : add evse-hmi demo Manisha Agrawal
2017-08-30 17:56 ` [morty][PATCH v3 5/7] packagegroup-arago-tisdk-hmi: add hmi specific packagegroups Manisha Agrawal
2017-08-30 17:56 ` [morty][PATCH v3 6/7] arago-source-ipk : Add evse-hmi source ipk Manisha Agrawal
2017-08-30 17:56 ` [morty][PATCH v3 7/7] arago-core-tisdk-image : add hmi specific packagegroup Manisha Agrawal
2017-08-31 19:02 ` [morty][PATCH v3 1/7] evse-hmi : add new demo Denys Dmytriyenko
2017-08-31 19:04   ` Agrawal, Manisha

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.