blob: 4574e396dce9cedf563920b5732cde092e1506b4 (
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
|
LICENSE = "GPLv2"
DESCRIPTION = "To make access to the Linux kernel cpufreq subsystem easier for users and cpufreq userspace tools, a cpufrequtils package was created"
PR = "r1"
SRC_URI = "http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils-${PV}.tar.bz2 \
file://fix-proc-stat-reading.patch \
"
export CROSS = "${TARGET_PREFIX}"
export LIBTOOL = "${TARGET_PREFIX}libtool --tag cc"
TARGET_CC_ARCH += "${LDFLAGS}"
do_compile() {
oe_runmake -e
}
do_install() {
oe_runmake -e install DESTDIR=${D}
}
SRC_URI[md5sum] = "124b0de8f3a4d672539a85ce13eed869"
SRC_URI[sha256sum] = "b8e77854a1400b0cc73295f3ee5d0a0c3650438e677526a199e08f6680c15aa1"
|