From: Jason Kridner Date: Thu, 22 Jul 2010 00:38:11 +0000 (-0500) Subject: beagleboard-test-scripts: created X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c1c5c78a37f8a43d5c73a03fbe083f82355072e;p=openembedded.git 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 '='. --- diff --git a/recipes/beagleboard/beagleboard-test-scripts_git.bb b/recipes/beagleboard/beagleboard-test-scripts_git.bb new file mode 100644 index 0000000000..d3d5fde9a0 --- /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 +} +