blob: 24822cdefae678de32326da251895f0ec16b1a4b (
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
|
# lmsensors-apps .bb build file
# Copyright (C) 2006, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see /COPYING)
DESCRIPTION = "Hardware health monitoring applications"
HOMEPAGE = "http://secure.netroedge.com/~lm78/"
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}"
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}
}
PACKAGES="sensors-i2cdump sensors-i2cset sensors-i2cdetect"
FILES_sensors-i2cdump="${bindir}/i2cdump"
FILES_sensors-i2cset="${bindir}/i2cset"
FILES_sensors-i2cdetect="${bindir}/i2cdetect"
|