diff options
author | Jason Kridner <jkridner@beagleboard.org> | 2010-07-21 19:38:11 -0500 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-07-24 15:11:29 +0200 |
commit | 2c1c5c78a37f8a43d5c73a03fbe083f82355072e (patch) | |
tree | 4b1d4ac45815286b5ddccae043410c100c92ef9f /recipes/beagleboard | |
parent | 3f76af10e9ef13cfec45d55f88281fc2a3a4770d (diff) |
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 '='.
Diffstat (limited to 'recipes/beagleboard')
-rw-r--r-- | recipes/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 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 +} + |