blob: 7d4df4eccf2ccd86871db405967c7cc7e5ab4718 (
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 = "This tool read out the tics counter of the operating system and \
calculates the Percentages spend in each CPU_STATE."
SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPL"
SRC_URI = "http://www8.in.tum.de/~schneifa/group/sources/cpusage-${PV}.tar.gz"
S = "${WORKDIR}/cpusage-${PV}"
FILES_${PN} = "/sbin/cpusage"
CFLAGS_append =" -D_BSD_SOURCE=1"
CFLAGS_append = '${@base_conditional("KERNEL_MAJOR_VERSION", "2.6", " -D__Linux26__ ", " -D__Linux24__ ",d)}'
do_compile() {
${CC} ${CFLAGS} ${LDFLAGS} -o cpusage cpusage.c
}
do_install() {
install -d ${D}${base_sbindir}
install -m 0755 cpusage ${D}${base_sbindir}/cpusage
}
|