aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/cpusage/cpusage_0.1.bb
blob: 3f4ddfcdcc808aae99c2647463290d6472f3ae5b (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
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 \
           file://cpusage.patch"

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
}

SRC_URI[md5sum] = "f779140995280de32817ec4a133f4d60"
SRC_URI[sha256sum] = "feb0b8c73c771390a8771fc3a4ed01104c008bcd278a267eb00263794956778c"