blob: cc5dfe4ff7e3419b89b934d48f010c57e1931b40 (
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
28
29
30
31
32
|
# lmsensors-apps .bb build file
# Copyright (C) 2006, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see /COPYING)
HOMEPAGE="http://secure.netroedge.com/~lm78/"
DESCRIPTION="Hardware health monitoring applications"
MAINTAINER = "Raymond Danks <info-linux@geode.amd.com>"
LICENSE = "GPL"
SRC_URI="http://secure.netroedge.com/~lm78/archive/lm_sensors-${PV}.tar.gz"
S="${WORKDIR}/lm_sensors-${PV}"
PACKAGES="sensors-i2cdump sensors-i2cset sensors-i2cdetect"
FILES_sensors-i2cdump="${bindir}/i2cdump"
FILES_sensors-i2cset="${bindir}/i2cset"
FILES_sensors-i2cdetect="${bindir}/i2cdetect"
do_configure() {
}
do_compile() {
oe_runmake LINUX=${STAGING_KERNEL_DIR} user
}
APPS="${S}/prog/dump/i2cdump ${S}/prog/dump/i2cset ${S}/prog/detect/i2cdetect"
do_install() {
install -d ${D}${bindir}
install -m 0755 ${APPS} ${D}${bindir}
}
|