On Wed, Apr 29, 2020 at 12:31:44PM +0530, Nikhil Devshatwar wrote: > > > On 28/04/20 4:07 am, Denys Dmytriyenko wrote: > >On Sun, Apr 26, 2020 at 11:12:22PM +0530, [email protected] wrote: > >>From: Nikhil Devshatwar <[email protected]> > >> > >>websocketd is a userspace application which allows to send > >>data over web sockets. This is used in SDK for visualizing > >>statistics parameters. > >> > >>Signed-off-by: Nikhil Devshatwar <[email protected]> > >>--- > >> ...packagegroup-arago-tisdk-addons-sdk-target.bb | 4 +++- > >> .../recipes-devtools/websocketd/websocketd.bb | 16 ++++++++++++++++ > >> 2 files changed, 19 insertions(+), 1 deletion(-) > >> create mode 100644 > >> meta-arago-extras/recipes-devtools/websocketd/websocketd.bb > >> > >>diff --git > >>a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb > >> > >>b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb > >>index 26925f2f..54a59022 100644 > >>--- > >>a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb > >>+++ > >>b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-addons-sdk-target.bb > >>@@ -133,7 +133,9 @@ UTILS_append_dra7xx = " can-utils-dev \ > >> elfutils-staticdev \ > >> " > >> UTILS_append_k2g = " can-utils-dev" > >>-UTILS_append_k3 = " can-utils-dev" > >>+UTILS_append_k3 = " can-utils-dev \ > >>+ websocketd \ > >Why are you adding it to the devkit? > This is an on target utility. > Please suggest the best place for including this.
Sorry, missed answering your questions earlier - looks like you already figured it out in v2... > Regards, > Nikhil D > > > >>+" > >> EXTRA_LIBS = "" > >> EXTRA_LIBS_append_ti43x = "\ > >>diff --git a/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb > >>b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb > >>new file mode 100644 > >>index 00000000..44f549ee > >>--- /dev/null > >>+++ b/meta-arago-extras/recipes-devtools/websocketd/websocketd.bb > >>@@ -0,0 +1,16 @@ > >>+SUMMARY = "Application for routing native applications via websockets" > >>+HOMEPAGE = "http://websocketd.com/" > >>+ > >>+LICENSE = "BSD-2-Clause" > >>+LIC_FILES_CHKSUM = "file://LICENSE;md5=a14d7befdbee1290ac5c472cd85d66f2" > >>+ > >>+PV = "0.3.0" > >>+SRC_URI = > >>"https://github.com/joewalnes/websocketd/releases/download/v${PV}/websocketd-${PV}-linux_arm64.zip" > >>+SRC_URI[md5sum] = "968c1ce4ed4fe5f86817f2533f5d3004" > >>+ > >>+S = "${WORKDIR}" > >>+ > >>+do_install() { > >>+ install -d ${D}/${bindir} > >>+ install -m 0755 ${S}/websocketd ${D}${bindir}/ > >>+} > >>-- > >>2.17.1 > >> > _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
