blob: be0d059c98a7acd2bb8f32484a6124a964bd541f (
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
25
26
27
28
29
30
31
|
## Reminder: The correct spacing for a variable is FOO = "BAR" in : PR="r1"
DESCRIPTION = "BeagleBoard test scripts"
HOMEPAGE = "http://beagleboad.org/support"
PR = "r2"
SRC_URI = "git://gitorious.org/beagleboard-validation/scripts.git;protocol=git \
"
SRCREV = "473dd2ab20d866be6168c9f992c2c9e74e485c9d"
S = "${WORKDIR}/git"
do_install() {
TEST_FILES=" \
testaudio \
testcamera \
testdsp \
testedid \
testled \
testmem \
testneon \
testsvideo \
testuserbtn \
editbootscr \
edituserscr \
readgpio \
"
install -d ${D}/${bindir}
for i in ${TEST_FILES}; do
install -m 0755 ${S}/${i} ${D}/${bindir}
done
}
|