[oe-commits] Jason Kridner : beagleboard-test-scripts: created

git version control git at git.openembedded.org
Sat Jul 24 13:12:20 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 2c1c5c78a37f8a43d5c73a03fbe083f82355072e
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=2c1c5c78a37f8a43d5c73a03fbe083f82355072e

Author: Jason Kridner <jkridner at beagleboard.org>
Date:   Wed Jul 21 19:38:11 2010 -0500

beagleboard-test-scripts: created

These are scripts from the validation repository used to test various
functions on the board.

Updated by Koen's feedback

fixed shell script error: Setting variables in shell script (do_install) need to not have spaces
between the variable and the '='.

---

 .../beagleboard/beagleboard-test-scripts_git.bb    |   24 ++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/recipes/beagleboard/beagleboard-test-scripts_git.bb b/recipes/beagleboard/beagleboard-test-scripts_git.bb
new file mode 100644
index 0000000..d3d5fde
--- /dev/null
+++ b/recipes/beagleboard/beagleboard-test-scripts_git.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "BeagleBoard test scripts"
+HOMEPAGE = "http://beagleboad.org/support"
+
+SRC_URI = "git://gitorious.org/beagleboard-validation/scripts.git;protocol=git \
+"
+
+SRCREV = "4f4578e7423c5fb1f3364e1056d53dd3b792dc2a"
+S = "${WORKDIR}/git"
+
+do_install() {
+  TEST_FILES=" \
+    testled \
+    testuserbtn \
+    testaudio \
+    testsvideo \
+    readgpio \
+    editbootscr \
+  "
+  install -d ${D}/${bindir}
+  for i in ${TEST_FILES}; do
+    install -m 0755 ${S}/${i} ${D}/${bindir}
+  done
+}
+





More information about the Openembedded-commits mailing list