All of lore.kernel.org
 help / color / mirror / Atom feed
* Sam Nelson : ti-ipc: Add recipe for ti-ipc version 3.0.x
@ 2014-03-05  4:55 Arago Project git
  0 siblings, 0 replies; 3+ messages in thread
From: Arago Project git @ 2014-03-05  4:55 UTC (permalink / raw)
  To: meta-ti

Module: meta-ti
Branch: dora
Commit: 2c3d72b18162cbdedabcef6539c7879173f265b7
URL:    http://arago-project.org/git/meta-ti.git?a=commit;h=2c3d72b18162cbdedabcef6539c7879173f265b7

Author: Sam Nelson <sam.nelson@ti.com>
Date:   Wed Feb 12 05:41:49 2014 +0000

ti-ipc: Add recipe for ti-ipc version 3.0.x

- Supports communication between processors in TI keystone architecture

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>

---

 recipes-ti/ipc/files/tiipclad-daemon.sh |   24 ++++++++++++++
 recipes-ti/ipc/ti-ipc_3.00.00.bb        |   52 +++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/recipes-ti/ipc/files/tiipclad-daemon.sh b/recipes-ti/ipc/files/tiipclad-daemon.sh
new file mode 100755
index 0000000..54b3888
--- /dev/null
+++ b/recipes-ti/ipc/files/tiipclad-daemon.sh
@@ -0,0 +1,24 @@
+#! /bin/sh
+
+tiipclad_daemon=/usr/bin/lad_tci6638
+tiipclad_params=lad.txt
+
+test -x "$tiipclad_daemon" || exit 0
+
+case "$1" in
+  start)
+    echo -n "Starting tiipclad daemon"
+    start-stop-daemon --start --quiet --exec $tiipclad_daemon $tiipclad_params
+    echo "."
+    ;;
+  stop)
+    echo -n "Stopping tiipclad daemon"
+    start-stop-daemon --stop --quiet --pidfile /var/run/tiipclad.pid
+    echo "."
+    ;;
+  *)
+    echo "Usage: /etc/init.d/tiipclad-daemon.sh {start|stop}"
+    exit 1
+esac
+
+exit 0
diff --git a/recipes-ti/ipc/ti-ipc_3.00.00.bb b/recipes-ti/ipc/ti-ipc_3.00.00.bb
new file mode 100644
index 0000000..c07b7f9
--- /dev/null
+++ b/recipes-ti/ipc/ti-ipc_3.00.00.bb
@@ -0,0 +1,52 @@
+DESCRIPTION="This support the communication between processors \
+in a multi-processor environment and communication to peripherals. \
+This communication includes message passing, streams, and linked lists. \
+These modules work transparently in both uni-processor and multi-processor \
+configurations."
+
+HOMEPAGE="http://processors.wiki.ti.com/index.php/Category:IPC"
+
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://products.mak;beginline=2;endline=30;md5=195feadf798bb4165bcb1a23ffd50dbb"
+SECTION = "console"
+COMPATIBLE_MACHINE = "keystone"
+TARGET_PLATFORM = "tci6638"
+
+PR = "r0"
+
+BRANCH ?= "master"
+# The following commit corresponds to 3.00.04.29
+SRCREV = "12794ea33870b782bffe1fe4398e86e93fb64396"
+
+SRC_URI = " \
+    git://git.ti.com/ipc/ipcdev.git;protocol=git;branch=${BRANCH} \
+    file://tiipclad-daemon.sh"
+
+S = "${WORKDIR}/git"
+
+export PLATFORM = "${TARGET_PLATFORM}"
+
+export PARALLEL_MAKE = ""
+
+PACKAGES =+ "${PN}-test"
+
+FILES_${PN}-test = " \
+    ${bindir}/NameServerApp \
+    ${bindir}/MessageQApp \
+    ${bindir}/MessageQMulti \
+    ${bindir}/ping_rpmsg"
+
+DEPENDS += "virtual/kernel"
+
+EXTRA_OECONF += "KERNEL_INSTALL_DIR=${STAGING_KERNEL_DIR}"
+inherit autotools
+
+INITSCRIPT_NAME = "tiipclad-daemon.sh"
+INITSCRIPT_PARAMS = "defaults 10"
+
+inherit update-rc.d
+
+do_install_append() {
+	install -d ${D}${sysconfdir}/init.d/
+	install -c -m 755 ${WORKDIR}/tiipclad-daemon.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
+}



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

* Sam Nelson : ti-ipc: Add recipe for ti-ipc version 3.0.x
@ 2014-03-05  4:55 Arago Project git
  0 siblings, 0 replies; 3+ messages in thread
From: Arago Project git @ 2014-03-05  4:55 UTC (permalink / raw)
  To: meta-ti

Module: meta-ti
Branch: dylan
Commit: 625b43736f6476701e41de0eb3209f01ab801ae0
URL:    http://arago-project.org/git/meta-ti.git?a=commit;h=625b43736f6476701e41de0eb3209f01ab801ae0

Author: Sam Nelson <sam.nelson@ti.com>
Date:   Wed Feb 12 05:41:49 2014 +0000

ti-ipc: Add recipe for ti-ipc version 3.0.x

- Supports communication between processors in TI keystone architecture

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>

---

 recipes-ti/ipc/files/tiipclad-daemon.sh |   24 ++++++++++++++
 recipes-ti/ipc/ti-ipc_3.00.00.bb        |   52 +++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/recipes-ti/ipc/files/tiipclad-daemon.sh b/recipes-ti/ipc/files/tiipclad-daemon.sh
new file mode 100755
index 0000000..54b3888
--- /dev/null
+++ b/recipes-ti/ipc/files/tiipclad-daemon.sh
@@ -0,0 +1,24 @@
+#! /bin/sh
+
+tiipclad_daemon=/usr/bin/lad_tci6638
+tiipclad_params=lad.txt
+
+test -x "$tiipclad_daemon" || exit 0
+
+case "$1" in
+  start)
+    echo -n "Starting tiipclad daemon"
+    start-stop-daemon --start --quiet --exec $tiipclad_daemon $tiipclad_params
+    echo "."
+    ;;
+  stop)
+    echo -n "Stopping tiipclad daemon"
+    start-stop-daemon --stop --quiet --pidfile /var/run/tiipclad.pid
+    echo "."
+    ;;
+  *)
+    echo "Usage: /etc/init.d/tiipclad-daemon.sh {start|stop}"
+    exit 1
+esac
+
+exit 0
diff --git a/recipes-ti/ipc/ti-ipc_3.00.00.bb b/recipes-ti/ipc/ti-ipc_3.00.00.bb
new file mode 100644
index 0000000..c07b7f9
--- /dev/null
+++ b/recipes-ti/ipc/ti-ipc_3.00.00.bb
@@ -0,0 +1,52 @@
+DESCRIPTION="This support the communication between processors \
+in a multi-processor environment and communication to peripherals. \
+This communication includes message passing, streams, and linked lists. \
+These modules work transparently in both uni-processor and multi-processor \
+configurations."
+
+HOMEPAGE="http://processors.wiki.ti.com/index.php/Category:IPC"
+
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://products.mak;beginline=2;endline=30;md5=195feadf798bb4165bcb1a23ffd50dbb"
+SECTION = "console"
+COMPATIBLE_MACHINE = "keystone"
+TARGET_PLATFORM = "tci6638"
+
+PR = "r0"
+
+BRANCH ?= "master"
+# The following commit corresponds to 3.00.04.29
+SRCREV = "12794ea33870b782bffe1fe4398e86e93fb64396"
+
+SRC_URI = " \
+    git://git.ti.com/ipc/ipcdev.git;protocol=git;branch=${BRANCH} \
+    file://tiipclad-daemon.sh"
+
+S = "${WORKDIR}/git"
+
+export PLATFORM = "${TARGET_PLATFORM}"
+
+export PARALLEL_MAKE = ""
+
+PACKAGES =+ "${PN}-test"
+
+FILES_${PN}-test = " \
+    ${bindir}/NameServerApp \
+    ${bindir}/MessageQApp \
+    ${bindir}/MessageQMulti \
+    ${bindir}/ping_rpmsg"
+
+DEPENDS += "virtual/kernel"
+
+EXTRA_OECONF += "KERNEL_INSTALL_DIR=${STAGING_KERNEL_DIR}"
+inherit autotools
+
+INITSCRIPT_NAME = "tiipclad-daemon.sh"
+INITSCRIPT_PARAMS = "defaults 10"
+
+inherit update-rc.d
+
+do_install_append() {
+	install -d ${D}${sysconfdir}/init.d/
+	install -c -m 755 ${WORKDIR}/tiipclad-daemon.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
+}



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

* Sam Nelson : ti-ipc: Add recipe for ti-ipc version 3.0.x
@ 2014-03-05  4:55 Arago Project git
  0 siblings, 0 replies; 3+ messages in thread
From: Arago Project git @ 2014-03-05  4:55 UTC (permalink / raw)
  To: meta-ti

Module: meta-ti
Branch: master
Commit: d2c9c3b981fc900b0e78fb98ff45d0fa7661910e
URL:    http://arago-project.org/git/meta-ti.git?a=commit;h=d2c9c3b981fc900b0e78fb98ff45d0fa7661910e

Author: Sam Nelson <sam.nelson@ti.com>
Date:   Wed Feb 12 05:41:49 2014 +0000

ti-ipc: Add recipe for ti-ipc version 3.0.x

- Supports communication between processors in TI keystone architecture

Signed-off-by: Sam Nelson <sam.nelson@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>

---

 recipes-ti/ipc/files/tiipclad-daemon.sh |   24 ++++++++++++++
 recipes-ti/ipc/ti-ipc_3.00.00.bb        |   52 +++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/recipes-ti/ipc/files/tiipclad-daemon.sh b/recipes-ti/ipc/files/tiipclad-daemon.sh
new file mode 100755
index 0000000..54b3888
--- /dev/null
+++ b/recipes-ti/ipc/files/tiipclad-daemon.sh
@@ -0,0 +1,24 @@
+#! /bin/sh
+
+tiipclad_daemon=/usr/bin/lad_tci6638
+tiipclad_params=lad.txt
+
+test -x "$tiipclad_daemon" || exit 0
+
+case "$1" in
+  start)
+    echo -n "Starting tiipclad daemon"
+    start-stop-daemon --start --quiet --exec $tiipclad_daemon $tiipclad_params
+    echo "."
+    ;;
+  stop)
+    echo -n "Stopping tiipclad daemon"
+    start-stop-daemon --stop --quiet --pidfile /var/run/tiipclad.pid
+    echo "."
+    ;;
+  *)
+    echo "Usage: /etc/init.d/tiipclad-daemon.sh {start|stop}"
+    exit 1
+esac
+
+exit 0
diff --git a/recipes-ti/ipc/ti-ipc_3.00.00.bb b/recipes-ti/ipc/ti-ipc_3.00.00.bb
new file mode 100644
index 0000000..c07b7f9
--- /dev/null
+++ b/recipes-ti/ipc/ti-ipc_3.00.00.bb
@@ -0,0 +1,52 @@
+DESCRIPTION="This support the communication between processors \
+in a multi-processor environment and communication to peripherals. \
+This communication includes message passing, streams, and linked lists. \
+These modules work transparently in both uni-processor and multi-processor \
+configurations."
+
+HOMEPAGE="http://processors.wiki.ti.com/index.php/Category:IPC"
+
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://products.mak;beginline=2;endline=30;md5=195feadf798bb4165bcb1a23ffd50dbb"
+SECTION = "console"
+COMPATIBLE_MACHINE = "keystone"
+TARGET_PLATFORM = "tci6638"
+
+PR = "r0"
+
+BRANCH ?= "master"
+# The following commit corresponds to 3.00.04.29
+SRCREV = "12794ea33870b782bffe1fe4398e86e93fb64396"
+
+SRC_URI = " \
+    git://git.ti.com/ipc/ipcdev.git;protocol=git;branch=${BRANCH} \
+    file://tiipclad-daemon.sh"
+
+S = "${WORKDIR}/git"
+
+export PLATFORM = "${TARGET_PLATFORM}"
+
+export PARALLEL_MAKE = ""
+
+PACKAGES =+ "${PN}-test"
+
+FILES_${PN}-test = " \
+    ${bindir}/NameServerApp \
+    ${bindir}/MessageQApp \
+    ${bindir}/MessageQMulti \
+    ${bindir}/ping_rpmsg"
+
+DEPENDS += "virtual/kernel"
+
+EXTRA_OECONF += "KERNEL_INSTALL_DIR=${STAGING_KERNEL_DIR}"
+inherit autotools
+
+INITSCRIPT_NAME = "tiipclad-daemon.sh"
+INITSCRIPT_PARAMS = "defaults 10"
+
+inherit update-rc.d
+
+do_install_append() {
+	install -d ${D}${sysconfdir}/init.d/
+	install -c -m 755 ${WORKDIR}/tiipclad-daemon.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME}
+}



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

end of thread, other threads:[~2014-03-05  4:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-05  4:55 Sam Nelson : ti-ipc: Add recipe for ti-ipc version 3.0.x Arago Project git
  -- strict thread matches above, loose matches on Subject: below --
2014-03-05  4:55 Arago Project git
2014-03-05  4:55 Arago Project git

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.