blob: 294af8fdfd972768c0b48faaa7f00fe41ca3da40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
DESCRIPTION = "Asynchronous I/O stress util"
SRC_URI = "http://www.codemonkey.org.uk/projects/fsx/fsx-linux.c"
S = "${WORKDIR}"
do_compile() {
cd ${S} && ${CC} fsx-linux.c -o fsx-linux -I${STAGING_INCDIR} -L${STAGING_LIBDIR}
}
do_install() {
install -d ${D}${bindir}
install -m 0755 fsx-linux ${D}${bindir}
}
|