aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/dt/dt_15.14.bb
blob: 5185af4f15b9313b0783acde46d0a6294d0d270a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
DESCRIPTION = "The Data Test Program (dt) is a generic data test program used to verify proper \
operation of peripherals, file systems, device drivers, or any data stream supported by the \
operating system."
SECTION = "console/tests"
HOMEPAGE = "http://home.comcast.net/~SCSIguy/SCSI_FAQ/RMiller_Tools/dt.html"
LICENSE = "Public domain"

SRC_URI = "http://home.comcast.net/~SCSIguy/SCSI_FAQ/RMiller_Tools/ftp/dt/dt-source.tar.gz"
S = "${WORKDIR}/${PN}.d-WIP"

do_compile() {
	${MAKE} -f Makefile.linux
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 dt ${D}${bindir}
}