aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/beagleboard/beagleboard-test-scripts_git.bb
blob: d3d5fde9a0be481dcfce7d5668884bdbbe69945f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
}