blob: ce4bed0b4a404211f8fba182187fdf0689b07b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
DESCRIPTION = "A fan control script for the Thecus n1200 or n2100"
SECTION = "console/network"
PR = "r0"
LICENSE = "GPL"
COMPATIBLE_MACHINE = "(n1200|n2100)"
RDEPENDS = "hddtemp"
SRC_URI = "file://temper"
do_install() {
install -d ${D}/usr/sbin
install -D -m 0755 ${WORKDIR}/temper ${D}/usr/sbin/temper
}
|